diff options
| author | elvis <elvis@claros.ar> | 2026-09-26 20:20:19 -0300 |
|---|---|---|
| committer | elvis <elvis@claros.ar> | 2026-09-26 20:20:19 -0300 |
| commit | 8518a63f55153e7f45fd49ad6caff5555f4e374f (patch) | |
| tree | 636684eea3fa6f35d78282ab95eb687ef49154af /crates/asist-llm/src/lib.rs | |
| parent | 69de76dc9cbedc6092d1e5ce84094a8030de1470 (diff) | |
| download | asist-p-main.tar.gz asist-p-main.zip | |
Translate code, comments, logs and terminal UI to English; add English README; rename scriptsHEADmain
Diffstat (limited to 'crates/asist-llm/src/lib.rs')
| -rw-r--r-- | crates/asist-llm/src/lib.rs | 10 |
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; |