(id: string)
| 29 | export interface ConversationAPI { |
| 30 | list(options?: ListOptions): Promise<Conversation[]>; |
| 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>; |
no outgoing calls
no test coverage detected