(id: string, updates: Partial<Pick<Conversation, "title" | "model">>)
| 31 | get(id: string): Promise<Conversation>; |
| 32 | create(options?: CreateOptions): Promise<Conversation>; |
| 33 | update(id: string, updates: Partial<Pick<Conversation, "title" | "model">>): Promise<Conversation>; |
| 34 | delete(id: string): Promise<void>; |
| 35 | export(id: string, format: "json" | "markdown"): Promise<Blob>; |
| 36 | } |
no outgoing calls
no test coverage detected