aboutsummaryrefslogtreecommitdiffstats
path: root/crates/asist-llm/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/asist-llm/src/lib.rs')
-rw-r--r--crates/asist-llm/src/lib.rs10
1 files changed, 5 insertions, 5 deletions
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;