@amigo-ai/platform-sdk 0.71.0 → 0.73.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.
@@ -6515,7 +6515,7 @@ export interface paths {
6515
6515
  * @description Record a real delivery handoff for a surface.
6516
6516
  *
6517
6517
  * Email targets are delivered through channel-manager's
6518
- * ``POST /v1/email/send`` (CM owns SES sender identity, IP pool, DKIM,
6518
+ * ``POST /v1/email/`` (CM owns SES sender identity, IP pool, DKIM,
6519
6519
  * suppression — keyed on the surface row's ``use_case_id``). Phone-shaped
6520
6520
  * addresses return 422 — SMS surface delivery was removed in PR #2783.
6521
6521
  * Other targets record an external handoff that was completed outside
@@ -10999,6 +10999,11 @@ export interface components {
10999
10999
  /** Static Tools */
11000
11000
  static_tools?: components["schemas"]["StaticToolDef-Input"][];
11001
11001
  system_prompt?: components["schemas"]["BackgroundString"] | null;
11002
+ /**
11003
+ * Temperature
11004
+ * @description Anthropic sampling temperature (0-1). Ignored on models that reject sampling params (Opus 4.7+/Fable, which 400 otherwise). Set at most one of temperature/top_p -- Claude 4+ rejects both; the runtime keeps temperature and drops top_p.
11005
+ */
11006
+ temperature?: number | null;
11002
11007
  /** Thinking Effort */
11003
11008
  thinking_effort?: ("low" | "medium" | "high") | null;
11004
11009
  /**
@@ -11006,6 +11011,11 @@ export interface components {
11006
11011
  * @default 60
11007
11012
  */
11008
11013
  timeout_s?: number;
11014
+ /**
11015
+ * Top P
11016
+ * @description Anthropic nucleus sampling (0-1). Ignored on sampling-param-rejecting models; see temperature.
11017
+ */
11018
+ top_p?: number | null;
11009
11019
  /**
11010
11020
  * Use Structured Output
11011
11021
  * @default false
@@ -11212,14 +11222,14 @@ export interface components {
11212
11222
  exchange_url: string;
11213
11223
  /**
11214
11224
  * Identity Bindings
11215
- * @description Maps a declared ``param_name`` to the verified session-principal attribute that supplies it
11225
+ * @description Maps a declared ``param_name`` to the verified identity attribute that supplies it
11216
11226
  * at dispatch. A bound param is dropped from the LLM-facing tool schema and injected from the
11217
- * ``SessionPrincipal`` (never model-supplied), closing the per-user-identity impersonation hole.
11227
+ * verified session context (never model-supplied), closing the per-user-identity impersonation hole.
11218
11228
  * Keys MUST reference a ``param_name`` declared on ``param_headers`` / ``param_body_fields``.
11219
11229
  * @default {}
11220
11230
  */
11221
11231
  identity_bindings?: {
11222
- [key: string]: "principal.subject_key" | "principal.subject_id";
11232
+ [key: string]: "principal.subject_key" | "principal.subject_id" | "external_user.subject_key";
11223
11233
  };
11224
11234
  /**
11225
11235
  * Param Body Fields
@@ -15458,6 +15468,8 @@ export interface components {
15458
15468
  * @default
15459
15469
  */
15460
15470
  system_prompt?: string;
15471
+ /** Temperature */
15472
+ temperature?: number | null;
15461
15473
  /** Thinking Effort */
15462
15474
  thinking_effort?: ("low" | "medium" | "high") | null;
15463
15475
  /**
@@ -15465,6 +15477,8 @@ export interface components {
15465
15477
  * @default 60
15466
15478
  */
15467
15479
  timeout_s?: number;
15480
+ /** Top P */
15481
+ top_p?: number | null;
15468
15482
  /**
15469
15483
  * Use Structured Output
15470
15484
  * @default false
@@ -19935,7 +19949,7 @@ export interface components {
19935
19949
  * Channel
19936
19950
  * @enum {string}
19937
19951
  */
19938
- channel: "inbound_voice" | "outbound_voice" | "ringless_voicemail" | "email";
19952
+ channel: "inbound_voice" | "outbound_voice" | "ringless_voicemail" | "email" | "sms" | "imessage";
19939
19953
  /**
19940
19954
  * Created At
19941
19955
  * Format: date-time
@@ -21450,10 +21464,14 @@ export interface components {
21450
21464
  static_tools: components["schemas"]["src__models__StaticToolDef"][];
21451
21465
  /** System Prompt */
21452
21466
  system_prompt: string;
21467
+ /** Temperature */
21468
+ temperature: number | null;
21453
21469
  /** Thinking Effort */
21454
21470
  thinking_effort: ("low" | "medium" | "high") | null;
21455
21471
  /** Timeout S */
21456
21472
  timeout_s: number;
21473
+ /** Top P */
21474
+ top_p: number | null;
21457
21475
  /**
21458
21476
  * Updated At
21459
21477
  * Format: date-time
@@ -24428,10 +24446,20 @@ export interface components {
24428
24446
  /** Static Tools */
24429
24447
  static_tools?: components["schemas"]["StaticToolDef-Input"][] | null;
24430
24448
  system_prompt?: components["schemas"]["BackgroundString"] | null;
24449
+ /**
24450
+ * Temperature
24451
+ * @description Anthropic sampling temperature (0-1); see CreateSkillRequest. null/absent leaves it unchanged.
24452
+ */
24453
+ temperature?: number | null;
24431
24454
  /** Thinking Effort */
24432
24455
  thinking_effort?: ("low" | "medium" | "high") | null;
24433
24456
  /** Timeout S */
24434
24457
  timeout_s?: number | null;
24458
+ /**
24459
+ * Top P
24460
+ * @description Anthropic nucleus sampling (0-1); see CreateSkillRequest. null/absent leaves it unchanged.
24461
+ */
24462
+ top_p?: number | null;
24435
24463
  /** Use Structured Output */
24436
24464
  use_structured_output?: boolean | null;
24437
24465
  };
@@ -43467,7 +43495,7 @@ export interface operations {
43467
43495
  parameters: {
43468
43496
  query?: {
43469
43497
  entity_name?: string | null;
43470
- channel?: ("outbound_voice" | "inbound_voice" | "ringless_voicemail" | "email") | null;
43498
+ channel?: ("outbound_voice" | "inbound_voice" | "ringless_voicemail" | "email" | "sms" | "imessage") | null;
43471
43499
  setup_id?: string | null;
43472
43500
  };
43473
43501
  header?: never;