aboutsummaryrefslogtreecommitdiffstats
path: root/crates/asist-llm/src/client.rs
blob: 7282947f7e5b82a34eb3bf7db84a33f5acbf80f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
//! Transporte hacia llama-server.

use std::time::{Duration, Instant};

use serde_json::{json, Value};

use asist_core::config::LlmConfig;
use asist_core::error::{Error, Result};
use asist_core::http::{Cancel, HttpClient};
use asist_core::tools::{ToolCall, ToolRegistry};

use crate::chat::Conversation;

/// Un trozo de respuesta según sale del modelo.
#[derive(Debug, Clone)]
pub enum Delta {
    /// Texto para el usuario.
    Text(String),
    /// El modelo ha decidido llamar a herramientas; no habrá más texto.
    ToolCalls(Vec<ToolCall>),
}

/// Cómo terminó una respuesta en streaming.
#[derive(Debug, Clone, Default)]
pub struct StreamOutcome {
    pub text: String,
    pub tool_calls: Vec<ToolCall>,
    /// Tiempo hasta el primer fragmento con contenido.
    pub ttft: Option<Duration>,
    pub stopped_early: bool,
}

pub struct LlmClient {
    http: HttpClient,
    config: LlmConfig,
}

impl LlmClient {
    pub fn new(authority: String, config: &LlmConfig) -> Self {
        Self {
            http: HttpClient::new(authority)
                .with_read_timeout(Duration::from_secs(config.request_timeout_secs)),
            config: config.clone(),
        }
    }

    pub fn healthy(&self) -> bool {
        self.http.healthy("/health")
    }

    /// Espera a que el servidor termine de cargar el modelo.
    pub fn wait_ready(&self, timeout: Duration) -> Result<()> {
        let deadline = Instant::now() + timeout;
        while Instant::now() < deadline {
            if self.healthy() {
                return Ok(());
            }
            std::thread::sleep(Duration::from_millis(500));
        }
        Err(Error::Llm(format!(
            "{} no respondió a /health en {} s",
            self.http.authority,
            timeout.as_secs()
        )))
    }

    /// Comprueba que la plantilla de chat no arranca un bloque de
    /// razonamiento sin cerrar.
    ///
    /// Merece la pena avisar: con la plantilla original de Qwen3.5 el modelo
    /// se pasa entre 7 y 9 segundos «pensando» antes de la primera palabra
    /// audible, y desde fuera parece que el asistente se ha colgado.
    pub fn warn_if_thinking_template(&self) {
        let Ok(body) = self.http.get("/props") else {
            return;
        };
        let Ok(props) = serde_json::from_slice::<Value>(&body) else {
            return;
        };
        let Some(template) = props.get("chat_template").and_then(Value::as_str) else {
            return;
        };

        let opens = template.matches("<think>").count();
        let closes = template.matches("</think>").count();
        if opens > closes {
            tracing::warn!(
                target: "llm",
                "la plantilla de chat abre <think> sin cerrarlo: el modelo razonará \
                 varios segundos antes de contestar. Arranca llama-server con \
                 --chat-template-file config/qwen35-no-think.jinja"
            );
        }
    }

    /// Pregunta al modelo por una imagen, en una petición aparte de la
    /// conversación.
    ///
    /// El servidor tiene cargado el proyector multimodal (`--mmproj`), así que
    /// acepta partes `image_url` con la imagen en base64. Se hace fuera del
    /// historial a propósito: una imagen ocupa cientos de tokens de contexto y
    /// arrastrarla turno tras turno saldría carísimo para lo poco que aporta
    /// una vez descrita. Lo que vuelve a la conversación es el texto.
    ///
    /// Medido en esta máquina, el coste depende mucho del tamaño: 1,3 s a
    /// 320x240, 2,9 s a 640x480 y 7,8 s a 1280x720.
    pub fn look(&self, image_jpeg: &[u8], question: &str, cancel: &Cancel) -> Result<String> {
        use base64::Engine;
        let encoded = base64::engine::general_purpose::STANDARD.encode(image_jpeg);

        let mut body = json!({
            "messages": [{
                "role": "user",
                "content": [
                    { "type": "text", "text": question },
                    {
                        "type": "image_url",
                        "image_url": { "url": format!("data:image/jpeg;base64,{encoded}") }
                    }
                ]
            }],
            "stream": true,
            "temperature": self.config.temperature,
            "max_tokens": self.config.max_tokens,
        });
        if !self.config.model.is_empty() {
            body["model"] = json!(self.config.model);
        }

        // En streaming aunque no se use el texto parcial: una petición de
        // visión tarda segundos y sin flujo el socket puede quedarse callado
        // hasta pasado el plazo de lectura.
        let started = Instant::now();
        let mut text = String::new();
        let mut finished = false;
        let result = self
            .http
            .post_json_lines("/v1/chat/completions", &body, cancel, |line| {
                let Some(payload) = line.strip_prefix("data: ") else {
                    return true;
                };
                if payload.trim() == "[DONE]" {
                    finished = true;
                    return false;
                }
                let Ok(event) = serde_json::from_str::<Value>(payload) else {
                    return true;
                };
                let Some(choice) = event.get("choices").and_then(|c| c.get(0)) else {
                    return true;
                };
                if let Some(chunk) = choice
                    .get("delta")
                    .and_then(|d| d.get("content"))
                    .and_then(Value::as_str)
                {
                    text.push_str(chunk);
                }
                if choice.get("finish_reason").is_some_and(|r| !r.is_null()) {
                    finished = true;
                    return false;
                }
                true
            });
        match result {
            Ok(()) => {}
            Err(Error::Cancelled) if finished || cancel.is_cancelled() => {}
            Err(err) => return Err(err),
        }

        tracing::debug!(
            target: "llm",
            bytes = image_jpeg.len(),
            ms = started.elapsed().as_millis(),
            "visión"
        );
        let text = text.trim().to_string();
        if text.is_empty() {
            return Err(Error::Llm("el modelo no describió la imagen".into()));
        }
        Ok(text)
    }

    fn request_body(&self, chat: &Conversation, tools: Option<&ToolRegistry>) -> Value {
        let mut body = json!({
            "messages": chat.to_json(),
            "stream": true,
            "temperature": self.config.temperature,
            "top_p": self.config.top_p,
            "top_k": self.config.top_k,
            "min_p": self.config.min_p,
            "repeat_penalty": self.config.repeat_penalty,
            "max_tokens": self.config.max_tokens,
        });
        if !self.config.model.is_empty() {
            body["model"] = json!(self.config.model);
        }
        if let Some(tools) = tools.filter(|t| !t.is_empty()) {
            body["tools"] = tools.schema();
            body["tool_choice"] = json!("auto");
        }
        body
    }

    /// Envía la conversación y entrega la respuesta a trozos.
    ///
    /// `on_delta` devuelve `false` para cortar —lo que hace el orquestador
    /// cuando el usuario interrumpe—; `cancel` hace lo mismo desde otro hilo.
    pub fn stream(
        &self,
        chat: &Conversation,
        tools: Option<&ToolRegistry>,
        cancel: &Cancel,
        mut on_delta: impl FnMut(&Delta) -> bool,
    ) -> Result<StreamOutcome> {
        let body = self.request_body(chat, tools);
        let started = Instant::now();
        let mut outcome = StreamOutcome::default();
        let mut assembler = ToolCallAssembler::default();
        let mut finished = false;

        let result = self
            .http
            .post_json_lines("/v1/chat/completions", &body, cancel, |line| {
                let Some(payload) = line.strip_prefix("data: ") else {
                    return true;
                };
                if payload.trim() == "[DONE]" {
                    finished = true;
                    return false;
                }
                let Ok(event) = serde_json::from_str::<Value>(payload) else {
                    tracing::debug!(target: "llm"