File tree Expand file tree Collapse file tree 1 file changed +10
-10
lines changed
Expand file tree Collapse file tree 1 file changed +10
-10
lines changed Original file line number Diff line number Diff 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 */
547547export 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.
You can’t perform that action at this time.
0 commit comments