From d486bc869101e9ca87dfc60f9aa6b6ad12f073de Mon Sep 17 00:00:00 2001 From: Stevan Freeborn <65925598+StevanFreeborn@users.noreply.github.com> Date: Wed, 10 Jul 2024 14:00:35 +0000 Subject: [PATCH] docs: documentation for v0.0.2 [skip ci] --- ...ropicClient.Models.BaseMessageRequest.html | 13 +++-- ...AnthropicClient.Models.MessageRequest.html | 11 ++-- ...picClient.Models.StreamMessageRequest.html | 11 ++-- docs/index.json | 6 +-- docs/manifest.json | 12 ++--- docs/xrefmap.yml | 54 +++++++++---------- 6 files changed, 58 insertions(+), 49 deletions(-) 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.