@amigo-ai/sdk 0.40.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
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@amigo-ai/sdk",
3
- "version": "0.40.0",
3
+ "version": "0.41.0",
4
4
  "description": "Amigo TypeScript SDK",
5
5
  "publishConfig": {
6
6
  "access": "public"