-
Notifications
You must be signed in to change notification settings - Fork 111
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Conversation actions scafolding + initial list_files action (#8646)
* jit actions scafolding * list_files types * more * simplify * simplify * clean * simplify * one way of doing it * fix imports * typing work * fixes * rename * emulated actions injection/scrub * reintroduce step * fix imports * clean-up visualiation * fix steps * rebase and comments * rename jitFiles * assert message * stepByIndex * remove comments
- Loading branch information
Showing
10 changed files
with
271 additions
and
152 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
105 changes: 105 additions & 0 deletions
105
front/lib/api/assistant/actions/conversation/list_files.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,105 @@ | ||
import type { | ||
AgentMessageType, | ||
ConversationFileType, | ||
ConversationListFilesActionType, | ||
ConversationType, | ||
FunctionCallType, | ||
FunctionMessageTypeModel, | ||
ModelId, | ||
} from "@dust-tt/types"; | ||
import { | ||
BaseAction, | ||
getTablesQueryResultsFileTitle, | ||
isAgentMessageType, | ||
isContentFragmentType, | ||
isTablesQueryActionType, | ||
} from "@dust-tt/types"; | ||
|
||
interface ConversationListFilesActionBlob { | ||
agentMessageId: ModelId; | ||
functionCallId: string | null; | ||
functionCallName: string | null; | ||
files: ConversationFileType[]; | ||
} | ||
|
||
export class ConversationListFilesAction extends BaseAction { | ||
readonly agentMessageId: ModelId; | ||
readonly files: ConversationFileType[]; | ||
readonly functionCallId: string | null; | ||
readonly functionCallName: string | null; | ||
readonly step: number = -1; | ||
readonly type = "conversation_list_files_action"; | ||
|
||
constructor(blob: ConversationListFilesActionBlob) { | ||
super(-1, "conversation_list_files_action"); | ||
|
||
this.agentMessageId = blob.agentMessageId; | ||
this.files = blob.files; | ||
this.functionCallId = blob.functionCallId; | ||
this.functionCallName = blob.functionCallName; | ||
} | ||
|
||
renderForFunctionCall(): FunctionCallType { | ||
return { | ||
id: this.functionCallId ?? `call_${this.id.toString()}`, | ||
name: this.functionCallName ?? "list_conversation_files", | ||
arguments: JSON.stringify({}), | ||
}; | ||
} | ||
|
||
renderForMultiActionsModel(): FunctionMessageTypeModel { | ||
let content = "CONVERSATION FILES:\n"; | ||
for (const f of this.files) { | ||
content += `<file id="${f.fileId}" name="${f.title}" type="${f.contentType}" />\n`; | ||
} | ||
|
||
return { | ||
role: "function" as const, | ||
name: this.functionCallName ?? "list_conversation_files", | ||
function_call_id: this.functionCallId ?? `call_${this.id.toString()}`, | ||
content, | ||
}; | ||
} | ||
} | ||
|
||
export function makeConversationListFilesAction( | ||
agentMessage: AgentMessageType, | ||
conversation: ConversationType | ||
): ConversationListFilesActionType | null { | ||
const files: ConversationFileType[] = []; | ||
|
||
for (const m of conversation.content.flat(1)) { | ||
if (isContentFragmentType(m)) { | ||
if (m.fileId) { | ||
files.push({ | ||
fileId: m.fileId, | ||
title: m.title, | ||
contentType: m.contentType, | ||
}); | ||
} | ||
} else if (isAgentMessageType(m)) { | ||
for (const a of m.actions) { | ||
if (isTablesQueryActionType(a)) { | ||
if (a.resultsFileId && a.resultsFileSnippet) { | ||
files.push({ | ||
fileId: a.resultsFileId, | ||
contentType: "text/csv", | ||
title: getTablesQueryResultsFileTitle({ output: a.output }), | ||
}); | ||
} | ||
} | ||
} | ||
} | ||
} | ||
|
||
if (files.length === 0) { | ||
return null; | ||
} | ||
|
||
return new ConversationListFilesAction({ | ||
functionCallId: "call_" + Math.random().toString(36).substring(7), | ||
functionCallName: "list_conversation_files", | ||
files, | ||
agentMessageId: agentMessage.agentMessageId, | ||
}); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.