Skip to content

Commit 4fc71b5

Browse files
committed
gemini pr
1 parent b87a6ad commit 4fc71b5

File tree

6 files changed

+51
-169112
lines changed

6 files changed

+51
-169112
lines changed

dist/components/Bot.d.ts

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,22 @@ export type AgentFlowExecutedData = {
5959
previousNodeIds: string[];
6060
status?: ExecutionState;
6161
};
62+
export type MessageResponseVersion = {
63+
message?: string;
64+
messageId?: string;
65+
id?: string;
66+
sourceDocuments?: any;
67+
fileAnnotations?: any;
68+
agentReasoning?: IAgentReasoning[];
69+
agentFlowExecutedData?: any;
70+
usedTools?: any[];
71+
action?: IAction | null;
72+
artifacts?: Partial<FileUpload>[];
73+
thinking?: string;
74+
thinkingDuration?: number;
75+
rating?: FeedbackRatingType;
76+
dateTime?: string;
77+
};
6278
export type MessageType = {
6379
messageId?: string;
6480
message: string;
@@ -80,6 +96,8 @@ export type MessageType = {
8096
thinking?: string;
8197
thinkingDuration?: number;
8298
isThinking?: boolean;
99+
responseVersions?: MessageResponseVersion[];
100+
responseVersionIndex?: number;
83101
};
84102
type observerConfigType = (accessor: string | boolean | object | MessageType[]) => void;
85103
export type observersConfigType = Record<'observeUserInput' | 'observeLoading' | 'observeMessages', observerConfigType>;

dist/components/Bot.d.ts.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)