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
26 changes: 26 additions & 0 deletions src/libs/Speechify/Generated/Speechify.Models.AgentSnapshot.g.cs
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,20 @@ public sealed partial class AgentSnapshot
[global::System.Text.Json.Serialization.JsonConverter(typeof(global::Speechify.JsonConverters.AgentSnapshotReasoningEffortJsonConverter))]
public global::Speechify.AgentSnapshotReasoningEffort? ReasoningEffort { get; set; }

/// <summary>
/// The full-duplex model the agent was set to speak through at call<br/>
/// start, or empty for an ordinary agent. When set, the caller heard<br/>
/// this model's voice and the LLM pair above was the brain behind it.
/// </summary>
[global::System.Text.Json.Serialization.JsonPropertyName("duplex_model")]
public string? DuplexModel { get; set; }

/// <summary>
/// The duplex model's voice the call opened with; empty when no duplex model was set.
/// </summary>
[global::System.Text.Json.Serialization.JsonPropertyName("duplex_voice")]
public string? DuplexVoice { get; set; }

/// <summary>
///
/// </summary>
Expand Down Expand Up @@ -276,6 +290,14 @@ public sealed partial class AgentSnapshot
/// when off. Records what was configured, not what dispatch served:<br/>
/// a spoken turn runs without reasoning regardless.
/// </param>
/// <param name="duplexModel">
/// The full-duplex model the agent was set to speak through at call<br/>
/// start, or empty for an ordinary agent. When set, the caller heard<br/>
/// this model's voice and the LLM pair above was the brain behind it.
/// </param>
/// <param name="duplexVoice">
/// The duplex model's voice the call opened with; empty when no duplex model was set.
/// </param>
/// <param name="voiceId"></param>
/// <param name="ttsModel">
/// The TTS model pinned at call start; null means the call ran on<br/>
Expand Down Expand Up @@ -343,6 +365,8 @@ public AgentSnapshot(
string? llmBaseUrl,
object? llmExtraBody,
global::Speechify.AgentSnapshotReasoningEffort? reasoningEffort,
string? duplexModel,
string? duplexVoice,
string? voiceId,
string? ttsModel,
string? temperature,
Expand Down Expand Up @@ -376,6 +400,8 @@ public AgentSnapshot(
this.LlmBaseUrl = llmBaseUrl;
this.LlmExtraBody = llmExtraBody;
this.ReasoningEffort = reasoningEffort;
this.DuplexModel = duplexModel;
this.DuplexVoice = duplexVoice;
this.VoiceId = voiceId;
this.TtsModel = ttsModel;
this.Temperature = temperature;
Expand Down
2 changes: 1 addition & 1 deletion src/libs/Speechify/openapi.yaml

Large diffs are not rendered by default.