@amigo-ai/sdk 0.39.0 → 0.41.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.
@@ -2780,8 +2780,16 @@ export interface components {
2780
2780
  objective: components["schemas"]["amigo_lib__pydantic__base_model__StrippedNonemptyString__1"];
2781
2781
  /** Tool Call Specs */
2782
2782
  tool_call_specs: components["schemas"]["ToolCallSpec-Input"][];
2783
- /** Audio Fillers */
2783
+ /**
2784
+ * Audio Fillers
2785
+ * @description A list of audio fillers to play in audio mode if the `select-next-state-for-decision-state` prompt is taking too long to process.
2786
+ */
2784
2787
  audio_fillers: components["schemas"]["StrippedNonemptyString_________"][];
2788
+ /**
2789
+ * Audio Filler Triggered After
2790
+ * @description The number of seconds to wait before playing an audio filler.
2791
+ */
2792
+ audio_filler_triggered_after: number;
2785
2793
  };
2786
2794
  /**
2787
2795
  * DecisionState
@@ -2825,6 +2833,11 @@ export interface components {
2825
2833
  * @description A list of audio fillers to play in the audio mode if the `select-next-state-for-decision-state` prompt is taking too long to process.
2826
2834
  */
2827
2835
  audio_fillers: string[];
2836
+ /**
2837
+ * Audio Filler Triggered After
2838
+ * @description The number of seconds to wait before playing an audio filler.
2839
+ */
2840
+ audio_filler_triggered_after: number;
2828
2841
  };
2829
2842
  /** DecisionStateTransitionLog */
2830
2843
  DecisionStateTransitionLog: {
@@ -4295,8 +4308,16 @@ export interface components {
4295
4308
  ];
4296
4309
  /** Tool Call Specs */
4297
4310
  tool_call_specs: components["schemas"]["ToolCallSpec-Input"][];
4298
- /** Audio Fillers */
4311
+ /**
4312
+ * Audio Fillers
4313
+ * @description A list of audio fillers to play in audio mode if the reflection is taking too long to be generated.
4314
+ */
4299
4315
  audio_fillers: components["schemas"]["StrippedNonemptyString_________"][];
4316
+ /**
4317
+ * Audio Filler Triggered After
4318
+ * @description The number of seconds to wait before playing an audio filler.
4319
+ */
4320
+ audio_filler_triggered_after: number;
4300
4321
  };
4301
4322
  /**
4302
4323
  * ReflectionState
@@ -4343,6 +4364,11 @@ export interface components {
4343
4364
  * @description A list of audio fillers to play in audio mode if the reflection is taking too long to be generated.
4344
4365
  */
4345
4366
  audio_fillers: string[];
4367
+ /**
4368
+ * Audio Filler Triggered After
4369
+ * @description The number of seconds to wait before playing an audio filler.
4370
+ */
4371
+ audio_filler_triggered_after: number;
4346
4372
  };
4347
4373
  /** ReflectionStateTransitionLog */
4348
4374
  ReflectionStateTransitionLog: {
@@ -5361,8 +5387,16 @@ export interface components {
5361
5387
  version_constraint: string;
5362
5388
  /** @description Additional instruction to be supplied to the LLM in addition to the tool's description. */
5363
5389
  additional_instruction: components["schemas"]["amigo_lib__pydantic__base_model__StrippedNonemptyString__1"];
5364
- /** Audio Fillers */
5390
+ /**
5391
+ * Audio Fillers
5392
+ * @description A list of audio fillers to play in audio mode if the tool is taking a long time.
5393
+ */
5365
5394
  audio_fillers: components["schemas"]["StrippedNonemptyString_________"][];
5395
+ /**
5396
+ * Audio Filler Triggered After
5397
+ * @description The number of seconds to wait before playing an audio filler.
5398
+ */
5399
+ audio_filler_triggered_after: number;
5366
5400
  };
5367
5401
  /**
5368
5402
  * ToolCallSpec
@@ -5389,6 +5423,11 @@ export interface components {
5389
5423
  * @description A list of audio fillers to play in audio mode if the tool is taking a long time.
5390
5424
  */
5391
5425
  audio_fillers: string[];
5426
+ /**
5427
+ * Audio Filler Triggered After
5428
+ * @description The number of seconds to wait before playing an audio filler.
5429
+ */
5430
+ audio_filler_triggered_after: number;
5392
5431
  };
5393
5432
  /**
5394
5433
  * ToolCallStartedEvent
@@ -6456,6 +6495,16 @@ export interface components {
6456
6495
  string,
6457
6496
  number
6458
6497
  ] | null;
6498
+ /**
6499
+ * Select Next Action Tool Call Logs
6500
+ * @description A list of tool call logs that were performed during the final `SelectNextAction` LLM call during this interaction where an action was selected.
6501
+ */
6502
+ select_next_action_tool_call_logs: components["schemas"]["ToolCallLog"][][];
6503
+ /**
6504
+ * Engage User Tool Call Logs
6505
+ * @description A list of tool call logs that were performed during the `EngageUser` LLM call during this interaction.
6506
+ */
6507
+ engage_user_tool_call_logs: components["schemas"]["ToolCallLog"][][];
6459
6508
  };
6460
6509
  conversation__interact_with_conversation__Response: components["schemas"]["ConversationEvent"] | components["schemas"]["UserMessageAvailableEvent"] | components["schemas"]["ErrorEvent"];
6461
6510
  /** 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<{
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@amigo-ai/sdk",
3
- "version": "0.39.0",
3
+ "version": "0.41.0",
4
4
  "description": "Amigo TypeScript SDK",
5
5
  "publishConfig": {
6
6
  "access": "public"