(body: unknown)
| 605 | } |
| 606 | |
| 607 | function isTitleRequest(body: unknown): boolean { |
| 608 | if (!body || typeof body !== "object") return false |
| 609 | return JSON.stringify(body).includes("Generate a title for this conversation") |
| 610 | } |
| 611 | |
| 612 | namespace TestLLMServer { |
| 613 | export interface Service { |