Skip to content

Commit efc3c2b

Browse files
committed
fix
1 parent ae708f8 commit efc3c2b

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

src/modules/agents.types.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ export interface AgentsModule {
229229
* @see {@linkcode listConversations | listConversations()} for filtering and sorting conversations
230230
*/
231231
getConversation(
232-
conversationId: string
232+
conversationId: string,
233233
): Promise<AgentConversation | undefined>;
234234

235235
/**
@@ -266,7 +266,7 @@ export interface AgentsModule {
266266
* @see {@linkcode getConversation | getConversation()} for retrieving a specific conversation by ID
267267
*/
268268
listConversations(
269-
filterParams: ModelFilterParams
269+
filterParams: ModelFilterParams,
270270
): Promise<AgentConversation[]>;
271271

272272
/**
@@ -290,7 +290,7 @@ export interface AgentsModule {
290290
* ```
291291
*/
292292
createConversation(
293-
conversation: CreateConversationParams
293+
conversation: CreateConversationParams,
294294
): Promise<AgentConversation>;
295295

296296
/**
@@ -315,7 +315,7 @@ export interface AgentsModule {
315315
*/
316316
addMessage(
317317
conversation: AgentConversation,
318-
message: Partial<AgentMessage>
318+
message: Partial<AgentMessage>,
319319
): Promise<AgentMessage>;
320320

321321
/**
@@ -326,7 +326,7 @@ export interface AgentsModule {
326326
* to clean up the connection.
327327
*
328328
* <Note>
329-
When receiving messages through this function, tool call data is truncated for efficiency `arguments_string` is limited to 500 characters and `results` to 50 characters. The complete tool call data is always saved in storage and can be retrieved by calling {@linkcode getConversation | getConversation()} after the message completes.
329+
When receiving messages through this function, tool call data is truncated for efficiency. The `arguments_string` is limited to 500 characters and `results` to 50 characters. The complete tool call data is always saved in storage and can be retrieved by calling {@linkcode getConversation | getConversation()} after the message completes.
330330
</Note>
331331
*
332332
* @param conversationId - The conversation ID to subscribe to.
@@ -356,7 +356,7 @@ When receiving messages through this function, tool call data is truncated for e
356356
*/
357357
subscribeToConversation(
358358
conversationId: string,
359-
onUpdate?: (conversation: AgentConversation) => void
359+
onUpdate?: (conversation: AgentConversation) => void,
360360
): () => void;
361361

362362
/**

0 commit comments

Comments
 (0)