From 8518a63f55153e7f45fd49ad6caff5555f4e374f Mon Sep 17 00:00:00 2001 From: elvis Date: Sat, 26 Sep 2026 20:20:19 -0300 Subject: Translate code, comments, logs and terminal UI to English; add English README; rename scripts --- crates/asist-llm/src/lib.rs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'crates/asist-llm/src/lib.rs') diff --git a/crates/asist-llm/src/lib.rs b/crates/asist-llm/src/lib.rs index 4c860df..d4dc4e9 100644 --- a/crates/asist-llm/src/lib.rs +++ b/crates/asist-llm/src/lib.rs @@ -1,9 +1,9 @@ -//! Cliente de llama-server. +//! llama-server client. //! -//! Habla la API de chat de OpenAI en modo streaming, porque en un asistente de -//! voz la respuesta no se espera: se trocea en frases y se va sintetizando -//! mientras el modelo sigue escribiendo. Esperar a la respuesta entera sumarĂ­a -//! el tiempo del modelo al del sintetizador en lugar de solaparlos. +//! It speaks the OpenAI chat API in streaming mode, because in a voice +//! assistant the answer is not waited for: it is split into sentences and +//! synthesized while the model keeps writing. Waiting for the whole answer +//! would add the model time to the synthesizer time instead of overlapping them. pub mod chat; pub mod client; -- cgit v1.2.3