(
conversationKey: string,
replyTarget: ReplyTarget,
makeAgent: (threadId: string) => AbstractAgent,
)
| 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, |
no outgoing calls
no test coverage detected