@amigo-ai/sdk 0.39.0 → 0.40.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -6456,6 +6456,16 @@ export interface components {
|
|
|
6456
6456
|
string,
|
|
6457
6457
|
number
|
|
6458
6458
|
] | null;
|
|
6459
|
+
/**
|
|
6460
|
+
* Select Next Action Tool Call Logs
|
|
6461
|
+
* @description A list of tool call logs that were performed during the final `SelectNextAction` LLM call during this interaction where an action was selected.
|
|
6462
|
+
*/
|
|
6463
|
+
select_next_action_tool_call_logs: components["schemas"]["ToolCallLog"][][];
|
|
6464
|
+
/**
|
|
6465
|
+
* Engage User Tool Call Logs
|
|
6466
|
+
* @description A list of tool call logs that were performed during the `EngageUser` LLM call during this interaction.
|
|
6467
|
+
*/
|
|
6468
|
+
engage_user_tool_call_logs: components["schemas"]["ToolCallLog"][][];
|
|
6459
6469
|
};
|
|
6460
6470
|
conversation__interact_with_conversation__Response: components["schemas"]["ConversationEvent"] | components["schemas"]["UserMessageAvailableEvent"] | components["schemas"]["ErrorEvent"];
|
|
6461
6471
|
/** Response */
|
|
@@ -83,6 +83,8 @@ export declare class ConversationResource {
|
|
|
83
83
|
working_memory: components["schemas"]["WorkingMemory"][];
|
|
84
84
|
reflections: string[];
|
|
85
85
|
triggered_dynamic_behavior_set_version_info: [string, number] | null;
|
|
86
|
+
select_next_action_tool_call_logs: components["schemas"]["ToolCallLog"][][];
|
|
87
|
+
engage_user_tool_call_logs: components["schemas"]["ToolCallLog"][][];
|
|
86
88
|
}>;
|
|
87
89
|
getMessageSource(conversationId: string, messageId: string, headers?: operations['retrieve-message-source']['parameters']['header']): Promise<{}>;
|
|
88
90
|
generateConversationStarters(body: components['schemas']['conversation__generate_conversation_starter__Request'], headers?: operations['generate-conversation-starter']['parameters']['header']): Promise<{
|