Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,9 @@ public sealed partial class AgentErrorResult

/// <summary>
/// Model reported for this job: the canonical id for an explicit model or<br/>
/// alias, or `auto` for an `auto` request. Present on jobs submitted via the<br/>
/// public API after the model-aliases launch; older jobs may omit it.<br/>
/// alias, `auto` for an `auto` request, or `inherited` when a resume keeps<br/>
/// the conversation's model. Present on jobs submitted via the public API<br/>
/// after the model-aliases launch; older jobs may omit it.<br/>
/// Example: claude-opus-4.8
/// </summary>
/// <example>claude-opus-4.8</example>
Expand Down Expand Up @@ -75,8 +76,9 @@ public sealed partial class AgentErrorResult
/// </param>
/// <param name="resolvedModel">
/// Model reported for this job: the canonical id for an explicit model or<br/>
/// alias, or `auto` for an `auto` request. Present on jobs submitted via the<br/>
/// public API after the model-aliases launch; older jobs may omit it.<br/>
/// alias, `auto` for an `auto` request, or `inherited` when a resume keeps<br/>
/// the conversation's model. Present on jobs submitted via the public API<br/>
/// after the model-aliases launch; older jobs may omit it.<br/>
/// Example: claude-opus-4.8
/// </param>
/// <param name="conversationId">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,10 @@ public sealed partial class AgentSuccessResult

/// <summary>
/// Model reported for this job: the canonical id for an explicit model or<br/>
/// alias (e.g. `claude-opus-4.8` for `claude-opus`), or `auto` for an<br/>
/// `auto` request. Present on jobs submitted via the public API after the<br/>
/// model-aliases launch; older jobs may omit it.<br/>
/// alias (e.g. `claude-opus-4.8` for `claude-opus`), `auto` for an `auto`<br/>
/// request, or `inherited` when a resume keeps the conversation's model.<br/>
/// Present on jobs submitted via the public API after the model-aliases<br/>
/// launch; older jobs may omit it.<br/>
/// Example: claude-opus-4.8
/// </summary>
/// <example>claude-opus-4.8</example>
Expand Down Expand Up @@ -102,9 +103,10 @@ public sealed partial class AgentSuccessResult
/// </param>
/// <param name="resolvedModel">
/// Model reported for this job: the canonical id for an explicit model or<br/>
/// alias (e.g. `claude-opus-4.8` for `claude-opus`), or `auto` for an<br/>
/// `auto` request. Present on jobs submitted via the public API after the<br/>
/// model-aliases launch; older jobs may omit it.<br/>
/// alias (e.g. `claude-opus-4.8` for `claude-opus`), `auto` for an `auto`<br/>
/// request, or `inherited` when a resume keeps the conversation's model.<br/>
/// Present on jobs submitted via the public API after the model-aliases<br/>
/// launch; older jobs may omit it.<br/>
/// Example: claude-opus-4.8
/// </param>
/// <param name="conversationId">
Expand Down
12 changes: 7 additions & 5 deletions src/libs/Descript/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3012,9 +3012,10 @@ components:
type: string
description: |
Model reported for this job: the canonical id for an explicit model or
alias (e.g. `claude-opus-4.8` for `claude-opus`), or `auto` for an
`auto` request. Present on jobs submitted via the public API after the
model-aliases launch; older jobs may omit it.
alias (e.g. `claude-opus-4.8` for `claude-opus`), `auto` for an `auto`
request, or `inherited` when a resume keeps the conversation's model.
Present on jobs submitted via the public API after the model-aliases
launch; older jobs may omit it.
example: claude-opus-4.8
conversation_id:
type: string
Expand Down Expand Up @@ -3050,8 +3051,9 @@ components:
type: string
description: |
Model reported for this job: the canonical id for an explicit model or
alias, or `auto` for an `auto` request. Present on jobs submitted via the
public API after the model-aliases launch; older jobs may omit it.
alias, `auto` for an `auto` request, or `inherited` when a resume keeps
the conversation's model. Present on jobs submitted via the public API
after the model-aliases launch; older jobs may omit it.
example: claude-opus-4.8
conversation_id:
type: string
Expand Down
Loading