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
11 changes: 0 additions & 11 deletions src/libs/Vapi/Generated/Vapi.Models.VapiModel.g.cs
Original file line number Diff line number Diff line change
Expand Up @@ -80,12 +80,6 @@ public sealed partial class VapiModel
[global::System.Text.Json.Serialization.JsonPropertyName("temperature")]
public double? Temperature { get; set; }

/// <summary>
/// This is the max number of tokens that the assistant will be allowed to generate in each turn of the conversation. Default is 250.
/// </summary>
[global::System.Text.Json.Serialization.JsonPropertyName("maxTokens")]
public double? MaxTokens { get; set; }

/// <summary>
/// This determines whether we detect user's emotion while they speak and send it as an additional info to model.<br/>
/// Default `false` because the model is usually are good at understanding the user's emotion from text.<br/>
Expand Down Expand Up @@ -149,9 +143,6 @@ public sealed partial class VapiModel
/// <param name="temperature">
/// This is the temperature that will be used for calls. Default is 0.5.
/// </param>
/// <param name="maxTokens">
/// This is the max number of tokens that the assistant will be allowed to generate in each turn of the conversation. Default is 250.
/// </param>
/// <param name="emotionRecognitionEnabled">
/// This determines whether we detect user's emotion while they speak and send it as an additional info to model.<br/>
/// Default `false` because the model is usually are good at understanding the user's emotion from text.<br/>
Expand All @@ -176,7 +167,6 @@ public VapiModel(
string? workflowId,
global::Vapi.WorkflowUserEditable? workflow,
double? temperature,
double? maxTokens,
bool? emotionRecognitionEnabled,
double? numFastTurns)
{
Expand All @@ -190,7 +180,6 @@ public VapiModel(
this.WorkflowId = workflowId;
this.Workflow = workflow;
this.Temperature = temperature;
this.MaxTokens = maxTokens;
this.EmotionRecognitionEnabled = emotionRecognitionEnabled;
this.NumFastTurns = numFastTurns;
}
Expand Down
6 changes: 0 additions & 6 deletions src/libs/Vapi/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22664,12 +22664,6 @@
"minimum": 0,
"maximum": 2
},
"maxTokens": {
"type": "number",
"description": "This is the max number of tokens that the assistant will be allowed to generate in each turn of the conversation. Default is 250.",
"minimum": 50,
"maximum": 10000
},
"emotionRecognitionEnabled": {
"type": "boolean",
"description": "This determines whether we detect user's emotion while they speak and send it as an additional info to model.\n\nDefault `false` because the model is usually are good at understanding the user's emotion from text.\n\n@default false"
Expand Down