| 202 | |
| 203 | /** Adapter-owned conversation state; the adapter resolves (or creates) the agent session for a conversation. */ |
| 204 | export interface ConversationStore { |
| 205 | getOrCreate( |
| 206 | conversationKey: string, |
| 207 | replyTarget: ReplyTarget, |
| 208 | makeAgent: (threadId: string) => AbstractAgent, |
| 209 | ): Promise<AgentSession>; |
| 210 | } |
| 211 | |
| 212 | export interface PlatformAdapter { |
| 213 | readonly platform: string; |
no outgoing calls
no test coverage detected
searching dependent graphs…