diff --git a/docs/api/AnthropicClient.Models.BaseMessageRequest.html b/docs/api/AnthropicClient.Models.BaseMessageRequest.html index 4fdc731..e1a65be 100644 --- a/docs/api/AnthropicClient.Models.BaseMessageRequest.html +++ b/docs/api/AnthropicClient.Models.BaseMessageRequest.html @@ -162,9 +162,9 @@ Class BaseMessageRequest -
Initializes a new instance of the BaseMessageRequest class.
@@ -172,7 +172,7 @@ Class BaseMessageRequestprotected BaseMessageRequest(string model, List<Message> messages, int maxTokens = 1024, string? system = null, Dictionary<string, object>? metadata = null, decimal temperature = 0.0, int? topK = null, decimal? topP = null, ToolChoice? toolChoice = null, List<Tool>? tools = null, bool stream = false)
+ protected BaseMessageRequest(string model, List<Message> messages, int maxTokens = 1024, string? system = null, Dictionary<string, object>? metadata = null, decimal temperature = 0.0, int? topK = null, decimal? topP = null, ToolChoice? toolChoice = null, List<Tool>? tools = null, bool stream = false, List<string>? stopSequences = null)
A value indicating whether the message should be streamed.
+stopSequences List<string>The prompt stop sequences.
Gets the system ID to use for the request.
+Gets the system prompt to use for the request.
Initializes a new instance of the MessageRequest class.
@@ -202,7 +202,7 @@ Class MessageRequestpublic MessageRequest(string model, List<Message> messages, int maxTokens = 1024, string? system = null, Dictionary<string, object>? metadata = null, decimal temperature = 0.0, int? topK = null, decimal? topP = null, ToolChoice? toolChoice = null, List<Tool>? tools = null)
+ public MessageRequest(string model, List<Message> messages, int maxTokens = 1024, string? system = null, Dictionary<string, object>? metadata = null, decimal temperature = 0.0, int? topK = null, decimal? topP = null, ToolChoice? toolChoice = null, List<Tool>? tools = null, List<string>? stopSequences = null)
The tools to use for the request.
+stopSequences List<string>The prompt stop sequences.
Initializes a new instance of the StreamMessageRequest class.
@@ -202,7 +202,7 @@ Class StreamMessageRequestpublic StreamMessageRequest(string model, List<Message> messages, int maxTokens = 1024, string? system = null, Dictionary<string, object>? metadata = null, decimal temperature = 0.0, int? topK = null, decimal? topP = null, ToolChoice? toolChoice = null, List<Tool>? tools = null)
+ public StreamMessageRequest(string model, List<Message> messages, int maxTokens = 1024, string? system = null, Dictionary<string, object>? metadata = null, decimal temperature = 0.0, int? topK = null, decimal? topP = null, ToolChoice? toolChoice = null, List<Tool>? tools = null, List<string>? stopSequences = null)
The tools to use for the request.
+stopSequences List<string>The prompt stop sequences.