Skip to content

Commit 77d07ef

Browse files
committed
format
1 parent 5e3b795 commit 77d07ef

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

packages/chatkit/types/index.d.ts

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -538,25 +538,25 @@ export type Entity = {
538538
* Identifies the tool that should run for a single message submission.
539539
* Mirrors the `ToolChoice` shape exposed by the chatkit-python SDK.
540540
*/
541-
export type ToolChoice = { id: string }
541+
export type ToolChoice = { id: string };
542542

543543
/**
544544
* Structured user input segments for sending rich content (text or tags).
545545
* Mirrors the `UserMessageContent` union from the chatkit-python SDK.
546546
*/
547547
export type UserMessageContent =
548548
| {
549-
type: "input_text"
550-
text: string
549+
type: 'input_text';
550+
text: string;
551551
}
552552
| {
553-
type: "input_tag"
554-
text: string
555-
id: string
556-
group?: string
557-
data?: Record<string, unknown>
558-
interactive?: boolean
559-
}
553+
type: 'input_tag';
554+
text: string;
555+
id: string;
556+
group?: string;
557+
data?: Record<string, unknown>;
558+
interactive?: boolean;
559+
};
560560

561561
/**
562562
* A webfont source used by ChatKit typography.

0 commit comments

Comments
 (0)