We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f69bc46 commit acf1f63Copy full SHA for acf1f63
packages/react/src/hooks/useConversationWith.ts
@@ -112,7 +112,11 @@ type ConversationActions = {
112
waitUntilDisconnected: (signal?: AbortSignal) => void;
113
114
prepareConnection: () => Promise<void>,
115
+
116
+ /** Connect to the underlying room and dispatch any agents */
117
begin: (options?: AgentSessionConnectOptions) => Promise<void>;
118
119
+ /** Disconnect from the underlying room */
120
end: () => Promise<void>;
121
};
122
0 commit comments