@amigo-ai/platform-sdk 0.17.0 → 0.17.1

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.
@@ -11215,6 +11215,27 @@ export interface components {
11215
11215
  */
11216
11216
  workspace_id: string;
11217
11217
  };
11218
+ /** ConversationToolCallDetail */
11219
+ ConversationToolCallDetail: {
11220
+ /** Call Id */
11221
+ call_id: string;
11222
+ /** Input */
11223
+ input?: {
11224
+ [key: string]: unknown;
11225
+ };
11226
+ /**
11227
+ * Result
11228
+ * @default
11229
+ */
11230
+ result?: string;
11231
+ /**
11232
+ * Succeeded
11233
+ * @default true
11234
+ */
11235
+ succeeded?: boolean;
11236
+ /** Tool Name */
11237
+ tool_name: string;
11238
+ };
11218
11239
  /** ConversationTurn */
11219
11240
  ConversationTurn: {
11220
11241
  /**
@@ -23853,6 +23874,11 @@ export interface components {
23853
23874
  input: components["schemas"]["ConversationTurn"];
23854
23875
  /** Output */
23855
23876
  output: components["schemas"]["ConversationTurn"][];
23877
+ /**
23878
+ * Tool Calls
23879
+ * @default []
23880
+ */
23881
+ tool_calls?: components["schemas"]["ConversationToolCallDetail"][];
23856
23882
  /** Turn Id */
23857
23883
  turn_id: string;
23858
23884
  };
@@ -30631,7 +30657,10 @@ export interface operations {
30631
30657
  };
30632
30658
  create_turn_v1__workspace_id__conversations__conversation_id__turns_post: {
30633
30659
  parameters: {
30634
- query?: never;
30660
+ query?: {
30661
+ /** @description Include tool call details in response */
30662
+ include_tool_calls?: boolean;
30663
+ };
30635
30664
  header?: never;
30636
30665
  path: {
30637
30666
  conversation_id: string;
@@ -34764,8 +34793,8 @@ export interface operations {
34764
34793
  };
34765
34794
  header?: never;
34766
34795
  path: {
34767
- /** @description Metric key */
34768
- metric_key: components["schemas"]["SlugString"];
34796
+ /** @description Metric key (lowercase alphanumeric + underscores) */
34797
+ metric_key: string;
34769
34798
  workspace_id: string;
34770
34799
  };
34771
34800
  cookie?: never;
@@ -34804,8 +34833,8 @@ export interface operations {
34804
34833
  query?: never;
34805
34834
  header?: never;
34806
34835
  path: {
34807
- /** @description Metric key */
34808
- metric_key: components["schemas"]["SlugString"];
34836
+ /** @description Metric key (lowercase alphanumeric + underscores) */
34837
+ metric_key: string;
34809
34838
  workspace_id: string;
34810
34839
  };
34811
34840
  cookie?: never;
@@ -34876,8 +34905,8 @@ export interface operations {
34876
34905
  };
34877
34906
  header?: never;
34878
34907
  path: {
34879
- /** @description Metric key */
34880
- metric_key: components["schemas"]["SlugString"];
34908
+ /** @description Metric key (lowercase alphanumeric + underscores) */
34909
+ metric_key: string;
34881
34910
  workspace_id: string;
34882
34911
  };
34883
34912
  cookie?: never;