diff --git a/Doxyfile b/Doxyfile index 035b6760..ee198a50 100644 --- a/Doxyfile +++ b/Doxyfile @@ -48,7 +48,7 @@ PROJECT_NAME = UGemini # could be handy for archiving the generated documentation or if some version # control system is used. -PROJECT_NUMBER = 2.0.0 +PROJECT_NUMBER = 2.0.1 # Using the PROJECT_BRIEF tag one can provide an optional one line description # for a project that appears at the top of each page and should give viewer a diff --git a/UGemini/Packages/com.uralstech.ugemini/Documentation~/MainPage.md b/UGemini/Packages/com.uralstech.ugemini/Documentation~/MainPage.md index 45fa30a1..f3e39b6e 100644 --- a/UGemini/Packages/com.uralstech.ugemini/Documentation~/MainPage.md +++ b/UGemini/Packages/com.uralstech.ugemini/Documentation~/MainPage.md @@ -2,6 +2,8 @@ [TOC] +Please note that the code provided in this page is *purely* for learning purposes and is far from perfect. Remember to null-check all responses! + ## Basics ### Setup diff --git a/UGemini/Packages/com.uralstech.ugemini/Documentation~/refman.pdf b/UGemini/Packages/com.uralstech.ugemini/Documentation~/refman.pdf index 13ea5316..9d392952 100644 Binary files a/UGemini/Packages/com.uralstech.ugemini/Documentation~/refman.pdf and b/UGemini/Packages/com.uralstech.ugemini/Documentation~/refman.pdf differ diff --git a/UGemini/Packages/com.uralstech.ugemini/Runtime/Scripts/Data/Models/Generation/Chat/GeminiChatResponse.cs b/UGemini/Packages/com.uralstech.ugemini/Runtime/Scripts/Data/Models/Generation/Chat/GeminiChatResponse.cs index 983a9e84..22497c1b 100644 --- a/UGemini/Packages/com.uralstech.ugemini/Runtime/Scripts/Data/Models/Generation/Chat/GeminiChatResponse.cs +++ b/UGemini/Packages/com.uralstech.ugemini/Runtime/Scripts/Data/Models/Generation/Chat/GeminiChatResponse.cs @@ -39,7 +39,7 @@ public class GeminiChatResponse : IAppendableData /// The parts of the message. /// [JsonIgnore] - public GeminiContentPart[] Parts => Candidates.Length > 0 ? Candidates[0]?.Content?.Parts : null; + public GeminiContentPart[] Parts => Candidates?.Length > 0 ? Candidates[0]?.Content?.Parts : null; /// public void Append(GeminiChatResponse data) diff --git a/UGemini/Packages/com.uralstech.ugemini/Samples~/QuestionAnsweringSample/Scripts/QuestionAnsweringManager.cs b/UGemini/Packages/com.uralstech.ugemini/Samples~/QuestionAnsweringSample/Scripts/QuestionAnsweringManager.cs index d6b94486..40f3888d 100644 --- a/UGemini/Packages/com.uralstech.ugemini/Samples~/QuestionAnsweringSample/Scripts/QuestionAnsweringManager.cs +++ b/UGemini/Packages/com.uralstech.ugemini/Samples~/QuestionAnsweringSample/Scripts/QuestionAnsweringManager.cs @@ -59,8 +59,8 @@ public async void OnChat() }); #pragma warning restore IDE0090 // Use 'new(...)' - if (response.Answer.Content != null) - _answerText.text = response.Answer.Content.Parts[0].Text; + if (response?.Answer?.Content?.Parts != null && response.Answer.Content.Parts.Length > 0) + _answerText.text = response.Answer.Content.Parts[0]?.Text; } } } diff --git a/UGemini/Packages/com.uralstech.ugemini/Samples~/SimpleMultiTurnChatSample/Scripts/UIChatMessage.cs b/UGemini/Packages/com.uralstech.ugemini/Samples~/SimpleMultiTurnChatSample/Scripts/UIChatMessage.cs index 93104023..2a95829a 100644 --- a/UGemini/Packages/com.uralstech.ugemini/Samples~/SimpleMultiTurnChatSample/Scripts/UIChatMessage.cs +++ b/UGemini/Packages/com.uralstech.ugemini/Samples~/SimpleMultiTurnChatSample/Scripts/UIChatMessage.cs @@ -13,6 +13,12 @@ public class UIChatMessage : MonoBehaviour public void Setup(GeminiContent content, bool isSystemPrompt) { + if (content.Parts == null) + { + Debug.LogError("Content does not contain any parts!"); + return; + } + Texture2D image = new(1, 1); foreach (GeminiContentPart part in content.Parts) { diff --git a/UGemini/Packages/com.uralstech.ugemini/Samples~/StreamedFunctionCallingSample/Scripts/StreamingFunctionCallingChatManager.cs b/UGemini/Packages/com.uralstech.ugemini/Samples~/StreamedFunctionCallingSample/Scripts/StreamingFunctionCallingChatManager.cs index 129dbfdf..92a9f0c0 100644 --- a/UGemini/Packages/com.uralstech.ugemini/Samples~/StreamedFunctionCallingSample/Scripts/StreamingFunctionCallingChatManager.cs +++ b/UGemini/Packages/com.uralstech.ugemini/Samples~/StreamedFunctionCallingSample/Scripts/StreamingFunctionCallingChatManager.cs @@ -73,7 +73,8 @@ public async void OnChat() OnPartialResponseReceived = streamedResponse => { - _chatResponse.text = Array.Find(streamedResponse.Parts, part => !string.IsNullOrEmpty(part.Text))?.Text; + if (streamedResponse.Parts != null) + _chatResponse.text = Array.Find(streamedResponse.Parts, part => !string.IsNullOrEmpty(part.Text))?.Text; return Task.CompletedTask; } }); diff --git a/UGemini/Packages/com.uralstech.ugemini/package.json b/UGemini/Packages/com.uralstech.ugemini/package.json index de2e1579..2accbfe1 100644 --- a/UGemini/Packages/com.uralstech.ugemini/package.json +++ b/UGemini/Packages/com.uralstech.ugemini/package.json @@ -9,7 +9,7 @@ "AI", "Integration" ], - "version": "2.0.0", + "version": "2.0.1", "unity": "2022.3", "hideInEditor": false, "documentationUrl": "/~https://github.com/Uralstech/UGemini/blob/master/UGemini/Packages/com.uralstech.ugemini/Documentation~/README.md", diff --git a/docs/annotated.html b/docs/annotated.html index 11c92596..80b43ff2 100644 --- a/docs/annotated.html +++ b/docs/annotated.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_exceptions_1_1_gemini_request_exception-members.html b/docs/class_uralstech_1_1_u_gemini_1_1_exceptions_1_1_gemini_request_exception-members.html index 3c6eb897..746a936d 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_exceptions_1_1_gemini_request_exception-members.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_exceptions_1_1_gemini_request_exception-members.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_exceptions_1_1_gemini_request_exception.html b/docs/class_uralstech_1_1_u_gemini_1_1_exceptions_1_1_gemini_request_exception.html index 78f7a2c6..3820cd24 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_exceptions_1_1_gemini_request_exception.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_exceptions_1_1_gemini_request_exception.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_file_a_p_i_1_1_gemini_file-members.html b/docs/class_uralstech_1_1_u_gemini_1_1_file_a_p_i_1_1_gemini_file-members.html index f9df106b..954189b0 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_file_a_p_i_1_1_gemini_file-members.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_file_a_p_i_1_1_gemini_file-members.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_file_a_p_i_1_1_gemini_file.html b/docs/class_uralstech_1_1_u_gemini_1_1_file_a_p_i_1_1_gemini_file.html index 9f0fc142..3c32bc71 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_file_a_p_i_1_1_gemini_file.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_file_a_p_i_1_1_gemini_file.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_file_a_p_i_1_1_gemini_file_delete_request-members.html b/docs/class_uralstech_1_1_u_gemini_1_1_file_a_p_i_1_1_gemini_file_delete_request-members.html index 53f8556e..33347da7 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_file_a_p_i_1_1_gemini_file_delete_request-members.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_file_a_p_i_1_1_gemini_file_delete_request-members.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_file_a_p_i_1_1_gemini_file_delete_request.html b/docs/class_uralstech_1_1_u_gemini_1_1_file_a_p_i_1_1_gemini_file_delete_request.html index b371a955..d1c9c3be 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_file_a_p_i_1_1_gemini_file_delete_request.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_file_a_p_i_1_1_gemini_file_delete_request.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_file_a_p_i_1_1_gemini_file_get_request-members.html b/docs/class_uralstech_1_1_u_gemini_1_1_file_a_p_i_1_1_gemini_file_get_request-members.html index 6fe3a0dc..6baca2f0 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_file_a_p_i_1_1_gemini_file_get_request-members.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_file_a_p_i_1_1_gemini_file_get_request-members.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_file_a_p_i_1_1_gemini_file_get_request.html b/docs/class_uralstech_1_1_u_gemini_1_1_file_a_p_i_1_1_gemini_file_get_request.html index 02b6e6c5..96bd2af2 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_file_a_p_i_1_1_gemini_file_get_request.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_file_a_p_i_1_1_gemini_file_get_request.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_file_a_p_i_1_1_gemini_file_list_request-members.html b/docs/class_uralstech_1_1_u_gemini_1_1_file_a_p_i_1_1_gemini_file_list_request-members.html index b2990f3e..bd4ed7ff 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_file_a_p_i_1_1_gemini_file_list_request-members.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_file_a_p_i_1_1_gemini_file_list_request-members.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_file_a_p_i_1_1_gemini_file_list_request.html b/docs/class_uralstech_1_1_u_gemini_1_1_file_a_p_i_1_1_gemini_file_list_request.html index 72599943..b3ec7be1 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_file_a_p_i_1_1_gemini_file_list_request.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_file_a_p_i_1_1_gemini_file_list_request.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_file_a_p_i_1_1_gemini_file_list_response-members.html b/docs/class_uralstech_1_1_u_gemini_1_1_file_a_p_i_1_1_gemini_file_list_response-members.html index abecef97..c7fab7f9 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_file_a_p_i_1_1_gemini_file_list_response-members.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_file_a_p_i_1_1_gemini_file_list_response-members.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_file_a_p_i_1_1_gemini_file_list_response.html b/docs/class_uralstech_1_1_u_gemini_1_1_file_a_p_i_1_1_gemini_file_list_response.html index b6de97bd..05e66e6e 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_file_a_p_i_1_1_gemini_file_list_response.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_file_a_p_i_1_1_gemini_file_list_response.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_file_a_p_i_1_1_gemini_file_upload_meta_data-members.html b/docs/class_uralstech_1_1_u_gemini_1_1_file_a_p_i_1_1_gemini_file_upload_meta_data-members.html index 64985605..2c5e37ea 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_file_a_p_i_1_1_gemini_file_upload_meta_data-members.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_file_a_p_i_1_1_gemini_file_upload_meta_data-members.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_file_a_p_i_1_1_gemini_file_upload_meta_data.html b/docs/class_uralstech_1_1_u_gemini_1_1_file_a_p_i_1_1_gemini_file_upload_meta_data.html index 85484797..6d938d3e 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_file_a_p_i_1_1_gemini_file_upload_meta_data.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_file_a_p_i_1_1_gemini_file_upload_meta_data.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_file_a_p_i_1_1_gemini_file_upload_request-members.html b/docs/class_uralstech_1_1_u_gemini_1_1_file_a_p_i_1_1_gemini_file_upload_request-members.html index eb8d213b..10d1aa2c 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_file_a_p_i_1_1_gemini_file_upload_request-members.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_file_a_p_i_1_1_gemini_file_upload_request-members.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_file_a_p_i_1_1_gemini_file_upload_request.html b/docs/class_uralstech_1_1_u_gemini_1_1_file_a_p_i_1_1_gemini_file_upload_request.html index 0f8cbd43..f1f932a0 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_file_a_p_i_1_1_gemini_file_upload_request.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_file_a_p_i_1_1_gemini_file_upload_request.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_file_a_p_i_1_1_gemini_file_upload_response-members.html b/docs/class_uralstech_1_1_u_gemini_1_1_file_a_p_i_1_1_gemini_file_upload_response-members.html index 496dc397..f6c94768 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_file_a_p_i_1_1_gemini_file_upload_response-members.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_file_a_p_i_1_1_gemini_file_upload_response-members.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_file_a_p_i_1_1_gemini_file_upload_response.html b/docs/class_uralstech_1_1_u_gemini_1_1_file_a_p_i_1_1_gemini_file_upload_response.html index 6e08fb28..e04fbf23 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_file_a_p_i_1_1_gemini_file_upload_response.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_file_a_p_i_1_1_gemini_file_upload_response.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_file_a_p_i_1_1_gemini_file_video_meta_data-members.html b/docs/class_uralstech_1_1_u_gemini_1_1_file_a_p_i_1_1_gemini_file_video_meta_data-members.html index 222bdf4d..39249ca0 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_file_a_p_i_1_1_gemini_file_video_meta_data-members.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_file_a_p_i_1_1_gemini_file_video_meta_data-members.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_file_a_p_i_1_1_gemini_file_video_meta_data.html b/docs/class_uralstech_1_1_u_gemini_1_1_file_a_p_i_1_1_gemini_file_video_meta_data.html index 1044f020..19f417ed 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_file_a_p_i_1_1_gemini_file_video_meta_data.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_file_a_p_i_1_1_gemini_file_video_meta_data.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_gemini_content_type_extensions-members.html b/docs/class_uralstech_1_1_u_gemini_1_1_gemini_content_type_extensions-members.html index b49f0d47..111dcecf 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_gemini_content_type_extensions-members.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_gemini_content_type_extensions-members.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_gemini_content_type_extensions.html b/docs/class_uralstech_1_1_u_gemini_1_1_gemini_content_type_extensions.html index 3ec1e802..56b8fe70 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_gemini_content_type_extensions.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_gemini_content_type_extensions.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_gemini_manager-members.html b/docs/class_uralstech_1_1_u_gemini_1_1_gemini_manager-members.html index 81deede8..d8087f53 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_gemini_manager-members.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_gemini_manager-members.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_gemini_manager.html b/docs/class_uralstech_1_1_u_gemini_1_1_gemini_manager.html index cd3a66f8..67831f50 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_gemini_manager.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_gemini_manager.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_gemini_request_metadata-members.html b/docs/class_uralstech_1_1_u_gemini_1_1_gemini_request_metadata-members.html index fd956fff..7de39b47 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_gemini_request_metadata-members.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_gemini_request_metadata-members.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_gemini_request_metadata.html b/docs/class_uralstech_1_1_u_gemini_1_1_gemini_request_metadata.html index 11e5f757..9f1dc001 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_gemini_request_metadata.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_gemini_request_metadata.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_gemini_seconds_to_time_span_json_converter-members.html b/docs/class_uralstech_1_1_u_gemini_1_1_gemini_seconds_to_time_span_json_converter-members.html index fbfb73bc..505c7617 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_gemini_seconds_to_time_span_json_converter-members.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_gemini_seconds_to_time_span_json_converter-members.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_gemini_seconds_to_time_span_json_converter.html b/docs/class_uralstech_1_1_u_gemini_1_1_gemini_seconds_to_time_span_json_converter.html index b5c4d84c..8fb8ca8a 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_gemini_seconds_to_time_span_json_converter.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_gemini_seconds_to_time_span_json_converter.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_caching_1_1_gemini_cached_content-members.html b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_caching_1_1_gemini_cached_content-members.html index 0b5e6ab7..f52577b9 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_caching_1_1_gemini_cached_content-members.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_caching_1_1_gemini_cached_content-members.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_caching_1_1_gemini_cached_content.html b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_caching_1_1_gemini_cached_content.html index 659dd824..37602e38 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_caching_1_1_gemini_cached_content.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_caching_1_1_gemini_cached_content.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_caching_1_1_gemini_cached_content_create_request-members.html b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_caching_1_1_gemini_cached_content_create_request-members.html index c7d7a308..1e5a3ede 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_caching_1_1_gemini_cached_content_create_request-members.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_caching_1_1_gemini_cached_content_create_request-members.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_caching_1_1_gemini_cached_content_create_request.html b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_caching_1_1_gemini_cached_content_create_request.html index 03253601..72876c22 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_caching_1_1_gemini_cached_content_create_request.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_caching_1_1_gemini_cached_content_create_request.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_caching_1_1_gemini_cached_content_creation_data-members.html b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_caching_1_1_gemini_cached_content_creation_data-members.html index b94108ef..10dd6389 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_caching_1_1_gemini_cached_content_creation_data-members.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_caching_1_1_gemini_cached_content_creation_data-members.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_caching_1_1_gemini_cached_content_creation_data.html b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_caching_1_1_gemini_cached_content_creation_data.html index 5d087af4..0eda3193 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_caching_1_1_gemini_cached_content_creation_data.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_caching_1_1_gemini_cached_content_creation_data.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_caching_1_1_gemini_cached_content_delete_request-members.html b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_caching_1_1_gemini_cached_content_delete_request-members.html index 58b13d1b..e0739f1f 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_caching_1_1_gemini_cached_content_delete_request-members.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_caching_1_1_gemini_cached_content_delete_request-members.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_caching_1_1_gemini_cached_content_delete_request.html b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_caching_1_1_gemini_cached_content_delete_request.html index c40e61b9..00204cf5 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_caching_1_1_gemini_cached_content_delete_request.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_caching_1_1_gemini_cached_content_delete_request.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_caching_1_1_gemini_cached_content_get_request-members.html b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_caching_1_1_gemini_cached_content_get_request-members.html index 35373438..36ff4a0f 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_caching_1_1_gemini_cached_content_get_request-members.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_caching_1_1_gemini_cached_content_get_request-members.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_caching_1_1_gemini_cached_content_get_request.html b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_caching_1_1_gemini_cached_content_get_request.html index 0babb6d8..4aff27cc 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_caching_1_1_gemini_cached_content_get_request.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_caching_1_1_gemini_cached_content_get_request.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_caching_1_1_gemini_cached_content_list_request-members.html b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_caching_1_1_gemini_cached_content_list_request-members.html index b6cf953d..0e4960dd 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_caching_1_1_gemini_cached_content_list_request-members.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_caching_1_1_gemini_cached_content_list_request-members.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_caching_1_1_gemini_cached_content_list_request.html b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_caching_1_1_gemini_cached_content_list_request.html index c66bcffc..47d079f4 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_caching_1_1_gemini_cached_content_list_request.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_caching_1_1_gemini_cached_content_list_request.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_caching_1_1_gemini_cached_content_list_response-members.html b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_caching_1_1_gemini_cached_content_list_response-members.html index ebd6be13..29be600b 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_caching_1_1_gemini_cached_content_list_response-members.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_caching_1_1_gemini_cached_content_list_response-members.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_caching_1_1_gemini_cached_content_list_response.html b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_caching_1_1_gemini_cached_content_list_response.html index 24a0b2fe..df3029c1 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_caching_1_1_gemini_cached_content_list_response.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_caching_1_1_gemini_cached_content_list_response.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_caching_1_1_gemini_cached_content_patch_data-members.html b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_caching_1_1_gemini_cached_content_patch_data-members.html index f0250d53..6ed09432 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_caching_1_1_gemini_cached_content_patch_data-members.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_caching_1_1_gemini_cached_content_patch_data-members.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_caching_1_1_gemini_cached_content_patch_data.html b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_caching_1_1_gemini_cached_content_patch_data.html index ccca3311..4680dfdd 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_caching_1_1_gemini_cached_content_patch_data.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_caching_1_1_gemini_cached_content_patch_data.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_caching_1_1_gemini_cached_content_patch_request-members.html b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_caching_1_1_gemini_cached_content_patch_request-members.html index b0df4349..8813d028 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_caching_1_1_gemini_cached_content_patch_request-members.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_caching_1_1_gemini_cached_content_patch_request-members.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_caching_1_1_gemini_cached_content_patch_request.html b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_caching_1_1_gemini_cached_content_patch_request.html index 960ae688..08504a77 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_caching_1_1_gemini_cached_content_patch_request.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_caching_1_1_gemini_cached_content_patch_request.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_caching_1_1_gemini_cached_content_usage_metadata-members.html b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_caching_1_1_gemini_cached_content_usage_metadata-members.html index b115c315..a2f350bb 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_caching_1_1_gemini_cached_content_usage_metadata-members.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_caching_1_1_gemini_cached_content_usage_metadata-members.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_caching_1_1_gemini_cached_content_usage_metadata.html b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_caching_1_1_gemini_cached_content_usage_metadata.html index 516ecfc8..cd7cc904 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_caching_1_1_gemini_cached_content_usage_metadata.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_caching_1_1_gemini_cached_content_usage_metadata.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_content_1_1_attribution_1_1_gemini_attribution_source_id-members.html b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_content_1_1_attribution_1_1_gemini_attribution_source_id-members.html index 56428e4c..e3f3d292 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_content_1_1_attribution_1_1_gemini_attribution_source_id-members.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_content_1_1_attribution_1_1_gemini_attribution_source_id-members.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_content_1_1_attribution_1_1_gemini_attribution_source_id.html b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_content_1_1_attribution_1_1_gemini_attribution_source_id.html index 77d4cff9..c607613a 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_content_1_1_attribution_1_1_gemini_attribution_source_id.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_content_1_1_attribution_1_1_gemini_attribution_source_id.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_content_1_1_attribution_1_1_gemini_grounding_attribution-members.html b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_content_1_1_attribution_1_1_gemini_grounding_attribution-members.html index c6a9c9f8..0acb6c7f 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_content_1_1_attribution_1_1_gemini_grounding_attribution-members.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_content_1_1_attribution_1_1_gemini_grounding_attribution-members.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_content_1_1_attribution_1_1_gemini_grounding_attribution.html b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_content_1_1_attribution_1_1_gemini_grounding_attribution.html index 5418301d..df922a21 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_content_1_1_attribution_1_1_gemini_grounding_attribution.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_content_1_1_attribution_1_1_gemini_grounding_attribution.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_content_1_1_attribution_1_1_gemini_grounding_passage_id-members.html b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_content_1_1_attribution_1_1_gemini_grounding_passage_id-members.html index e9ac27d7..fab6637e 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_content_1_1_attribution_1_1_gemini_grounding_passage_id-members.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_content_1_1_attribution_1_1_gemini_grounding_passage_id-members.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_content_1_1_attribution_1_1_gemini_grounding_passage_id.html b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_content_1_1_attribution_1_1_gemini_grounding_passage_id.html index dbafe82e..64da287c 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_content_1_1_attribution_1_1_gemini_grounding_passage_id.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_content_1_1_attribution_1_1_gemini_grounding_passage_id.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_content_1_1_attribution_1_1_gemini_semantic_retriever_chunk-members.html b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_content_1_1_attribution_1_1_gemini_semantic_retriever_chunk-members.html index bdda91f5..d6e1330d 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_content_1_1_attribution_1_1_gemini_semantic_retriever_chunk-members.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_content_1_1_attribution_1_1_gemini_semantic_retriever_chunk-members.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_content_1_1_attribution_1_1_gemini_semantic_retriever_chunk.html b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_content_1_1_attribution_1_1_gemini_semantic_retriever_chunk.html index 649703af..00137d2d 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_content_1_1_attribution_1_1_gemini_semantic_retriever_chunk.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_content_1_1_attribution_1_1_gemini_semantic_retriever_chunk.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_content_1_1_citation_1_1_gemini_citation_metadata-members.html b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_content_1_1_citation_1_1_gemini_citation_metadata-members.html index 18250c79..640ddebf 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_content_1_1_citation_1_1_gemini_citation_metadata-members.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_content_1_1_citation_1_1_gemini_citation_metadata-members.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_content_1_1_citation_1_1_gemini_citation_metadata.html b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_content_1_1_citation_1_1_gemini_citation_metadata.html index 8d4620c0..d53641be 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_content_1_1_citation_1_1_gemini_citation_metadata.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_content_1_1_citation_1_1_gemini_citation_metadata.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_content_1_1_citation_1_1_gemini_citation_source-members.html b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_content_1_1_citation_1_1_gemini_citation_source-members.html index 29f9bcd7..fdb3cd9a 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_content_1_1_citation_1_1_gemini_citation_source-members.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_content_1_1_citation_1_1_gemini_citation_source-members.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_content_1_1_citation_1_1_gemini_citation_source.html b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_content_1_1_citation_1_1_gemini_citation_source.html index 43bfb38b..bad1172f 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_content_1_1_citation_1_1_gemini_citation_source.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_content_1_1_citation_1_1_gemini_citation_source.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_content_1_1_gemini_content-members.html b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_content_1_1_gemini_content-members.html index bc1c42d4..2aa03c7a 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_content_1_1_gemini_content-members.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_content_1_1_gemini_content-members.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_content_1_1_gemini_content.html b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_content_1_1_gemini_content.html index 652f7a2f..b1c334b5 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_content_1_1_gemini_content.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_content_1_1_gemini_content.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_content_1_1_gemini_content_blob-members.html b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_content_1_1_gemini_content_blob-members.html index f986f8e9..dcb6c360 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_content_1_1_gemini_content_blob-members.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_content_1_1_gemini_content_blob-members.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_content_1_1_gemini_content_blob.html b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_content_1_1_gemini_content_blob.html index 852d61ed..0b706996 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_content_1_1_gemini_content_blob.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_content_1_1_gemini_content_blob.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_content_1_1_gemini_content_part-members.html b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_content_1_1_gemini_content_part-members.html index 5e3b0553..22e3867f 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_content_1_1_gemini_content_part-members.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_content_1_1_gemini_content_part-members.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_content_1_1_gemini_content_part.html b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_content_1_1_gemini_content_part.html index 8a40d915..3d69134f 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_content_1_1_gemini_content_part.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_content_1_1_gemini_content_part.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_content_1_1_gemini_file_data-members.html b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_content_1_1_gemini_file_data-members.html index 07dd2aae..d4626d7e 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_content_1_1_gemini_file_data-members.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_content_1_1_gemini_file_data-members.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_content_1_1_gemini_file_data.html b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_content_1_1_gemini_file_data.html index 603cce1e..0ce1bb1a 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_content_1_1_gemini_file_data.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_content_1_1_gemini_file_data.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_content_1_1_unity_extensions-members.html b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_content_1_1_unity_extensions-members.html index 80c05058..50f6dd55 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_content_1_1_unity_extensions-members.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_content_1_1_unity_extensions-members.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_content_1_1_unity_extensions.html b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_content_1_1_unity_extensions.html index 8ad39b6a..124b26ad 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_content_1_1_unity_extensions.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_content_1_1_unity_extensions.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_count_tokens_1_1_gemini_token_count_request-members.html b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_count_tokens_1_1_gemini_token_count_request-members.html index 085f741a..c382c32c 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_count_tokens_1_1_gemini_token_count_request-members.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_count_tokens_1_1_gemini_token_count_request-members.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_count_tokens_1_1_gemini_token_count_request.html b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_count_tokens_1_1_gemini_token_count_request.html index f1b5466d..c5b76597 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_count_tokens_1_1_gemini_token_count_request.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_count_tokens_1_1_gemini_token_count_request.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_count_tokens_1_1_gemini_token_count_response-members.html b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_count_tokens_1_1_gemini_token_count_response-members.html index 573da84c..46d37c9a 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_count_tokens_1_1_gemini_token_count_response-members.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_count_tokens_1_1_gemini_token_count_response-members.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_count_tokens_1_1_gemini_token_count_response.html b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_count_tokens_1_1_gemini_token_count_response.html index 58200b89..72ff51dd 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_count_tokens_1_1_gemini_token_count_response.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_count_tokens_1_1_gemini_token_count_response.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_embedding_1_1_gemini_batch_embed_content_request-members.html b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_embedding_1_1_gemini_batch_embed_content_request-members.html index 7ca371e1..b9213216 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_embedding_1_1_gemini_batch_embed_content_request-members.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_embedding_1_1_gemini_batch_embed_content_request-members.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_embedding_1_1_gemini_batch_embed_content_request.html b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_embedding_1_1_gemini_batch_embed_content_request.html index 5e7ca40f..32e6715c 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_embedding_1_1_gemini_batch_embed_content_request.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_embedding_1_1_gemini_batch_embed_content_request.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_embedding_1_1_gemini_batch_embed_content_response-members.html b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_embedding_1_1_gemini_batch_embed_content_response-members.html index feab1f8d..76a40493 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_embedding_1_1_gemini_batch_embed_content_response-members.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_embedding_1_1_gemini_batch_embed_content_response-members.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_embedding_1_1_gemini_batch_embed_content_response.html b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_embedding_1_1_gemini_batch_embed_content_response.html index 14b90e38..01963444 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_embedding_1_1_gemini_batch_embed_content_response.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_embedding_1_1_gemini_batch_embed_content_response.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_embedding_1_1_gemini_content_embedding-members.html b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_embedding_1_1_gemini_content_embedding-members.html index 0927e002..b46bc4c3 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_embedding_1_1_gemini_content_embedding-members.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_embedding_1_1_gemini_content_embedding-members.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_embedding_1_1_gemini_content_embedding.html b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_embedding_1_1_gemini_content_embedding.html index e01af61c..a06e8f00 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_embedding_1_1_gemini_content_embedding.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_embedding_1_1_gemini_content_embedding.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_embedding_1_1_gemini_embed_content_request-members.html b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_embedding_1_1_gemini_embed_content_request-members.html index 327699a5..34b92743 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_embedding_1_1_gemini_embed_content_request-members.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_embedding_1_1_gemini_embed_content_request-members.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_embedding_1_1_gemini_embed_content_request.html b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_embedding_1_1_gemini_embed_content_request.html index 6e061933..21c02b5e 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_embedding_1_1_gemini_embed_content_request.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_embedding_1_1_gemini_embed_content_request.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_embedding_1_1_gemini_embed_content_response-members.html b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_embedding_1_1_gemini_embed_content_response-members.html index 578bef13..49f00bf4 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_embedding_1_1_gemini_embed_content_response-members.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_embedding_1_1_gemini_embed_content_response-members.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_embedding_1_1_gemini_embed_content_response.html b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_embedding_1_1_gemini_embed_content_response.html index 7b75cd31..9c14dcd3 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_embedding_1_1_gemini_embed_content_response.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_embedding_1_1_gemini_embed_content_response.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_gemini_model-members.html b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_gemini_model-members.html index 9113fa37..fd696def 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_gemini_model-members.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_gemini_model-members.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_gemini_model.html b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_gemini_model.html index b78e14e8..c5d57f4c 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_gemini_model.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_gemini_model.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_gemini_model_get_request-members.html b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_gemini_model_get_request-members.html index 79065d5d..70475f90 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_gemini_model_get_request-members.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_gemini_model_get_request-members.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_gemini_model_get_request.html b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_gemini_model_get_request.html index 4727ae63..68a90f66 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_gemini_model_get_request.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_gemini_model_get_request.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_gemini_model_id-members.html b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_gemini_model_id-members.html index 3326a784..01b85636 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_gemini_model_id-members.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_gemini_model_id-members.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_gemini_model_id.html b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_gemini_model_id.html index 9e31595b..12c684bb 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_gemini_model_id.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_gemini_model_id.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_gemini_model_id_string_converter-members.html b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_gemini_model_id_string_converter-members.html index fcaa57e1..9460035f 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_gemini_model_id_string_converter-members.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_gemini_model_id_string_converter-members.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_gemini_model_id_string_converter.html b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_gemini_model_id_string_converter.html index 55eb335b..3e512d9f 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_gemini_model_id_string_converter.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_gemini_model_id_string_converter.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_gemini_model_list_request-members.html b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_gemini_model_list_request-members.html index f1fd811c..b555f53e 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_gemini_model_list_request-members.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_gemini_model_list_request-members.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_gemini_model_list_request.html b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_gemini_model_list_request.html index 5cb28cd1..f6c9ce6e 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_gemini_model_list_request.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_gemini_model_list_request.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_gemini_model_list_response-members.html b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_gemini_model_list_response-members.html index 1b8cc933..1aba9f47 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_gemini_model_list_response-members.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_gemini_model_list_response-members.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_gemini_model_list_response.html b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_gemini_model_list_response.html index 5ee0b68d..5be7167f 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_gemini_model_list_response.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_gemini_model_list_response.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_candidate_1_1_gemini_candidate-members.html b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_candidate_1_1_gemini_candidate-members.html index d648ab68..088b156b 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_candidate_1_1_gemini_candidate-members.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_candidate_1_1_gemini_candidate-members.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_candidate_1_1_gemini_candidate.html b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_candidate_1_1_gemini_candidate.html index f47d5b7f..bc26691b 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_candidate_1_1_gemini_candidate.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_candidate_1_1_gemini_candidate.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_candidate_1_1_gemini_prompt_feedback-members.html b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_candidate_1_1_gemini_prompt_feedback-members.html index 4eaea774..566bbac0 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_candidate_1_1_gemini_prompt_feedback-members.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_candidate_1_1_gemini_prompt_feedback-members.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_candidate_1_1_gemini_prompt_feedback.html b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_candidate_1_1_gemini_prompt_feedback.html index 87baec66..df72dc5a 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_candidate_1_1_gemini_prompt_feedback.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_candidate_1_1_gemini_prompt_feedback.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_candidate_1_1_gemini_usage_metadata-members.html b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_candidate_1_1_gemini_usage_metadata-members.html index 19d84f0f..71ee4544 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_candidate_1_1_gemini_usage_metadata-members.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_candidate_1_1_gemini_usage_metadata-members.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_candidate_1_1_gemini_usage_metadata.html b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_candidate_1_1_gemini_usage_metadata.html index 1fe0cdcf..091958e3 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_candidate_1_1_gemini_usage_metadata.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_candidate_1_1_gemini_usage_metadata.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_chat_1_1_gemini_chat_request-members.html b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_chat_1_1_gemini_chat_request-members.html index 1c9ab351..c6368c09 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_chat_1_1_gemini_chat_request-members.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_chat_1_1_gemini_chat_request-members.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_chat_1_1_gemini_chat_request.html b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_chat_1_1_gemini_chat_request.html index 2785250e..7e37c1f5 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_chat_1_1_gemini_chat_request.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_chat_1_1_gemini_chat_request.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_chat_1_1_gemini_chat_response-members.html b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_chat_1_1_gemini_chat_response-members.html index 3b4c2fa6..403d12fe 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_chat_1_1_gemini_chat_response-members.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_chat_1_1_gemini_chat_response-members.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_chat_1_1_gemini_chat_response.html b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_chat_1_1_gemini_chat_response.html index 819ef405..2b957bc3 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_chat_1_1_gemini_chat_response.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_chat_1_1_gemini_chat_response.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_gemini_generation_configuration-members.html b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_gemini_generation_configuration-members.html index ebfab9c7..c6897b76 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_gemini_generation_configuration-members.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_gemini_generation_configuration-members.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_gemini_generation_configuration.html b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_gemini_generation_configuration.html index 58228c08..6b4babbd 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_gemini_generation_configuration.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_gemini_generation_configuration.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_question_answering_1_1_gemini_answer_request-members.html b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_question_answering_1_1_gemini_answer_request-members.html index c50b1bed..c266b944 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_question_answering_1_1_gemini_answer_request-members.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_question_answering_1_1_gemini_answer_request-members.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_question_answering_1_1_gemini_answer_request.html b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_question_answering_1_1_gemini_answer_request.html index ea6a4fdf..4f700f80 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_question_answering_1_1_gemini_answer_request.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_question_answering_1_1_gemini_answer_request.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_question_answering_1_1_gemini_answer_response-members.html b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_question_answering_1_1_gemini_answer_response-members.html index 61aca313..d685efcf 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_question_answering_1_1_gemini_answer_response-members.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_question_answering_1_1_gemini_answer_response-members.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_question_answering_1_1_gemini_answer_response.html b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_question_answering_1_1_gemini_answer_response.html index 0515bcf4..15a0cb68 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_question_answering_1_1_gemini_answer_response.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_question_answering_1_1_gemini_answer_response.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_question_answering_1_1_grounding_1_1_dfa9a2347b0c57abc3ec17328603dca2.html b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_question_answering_1_1_grounding_1_1_dfa9a2347b0c57abc3ec17328603dca2.html index b8f71ae6..8c027446 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_question_answering_1_1_grounding_1_1_dfa9a2347b0c57abc3ec17328603dca2.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_question_answering_1_1_grounding_1_1_dfa9a2347b0c57abc3ec17328603dca2.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_question_answering_1_1_grounding_1_1_e8e301a42c505929743c3ac903ea4edb.html b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_question_answering_1_1_grounding_1_1_e8e301a42c505929743c3ac903ea4edb.html index 9a4fafc0..bd3f9ed7 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_question_answering_1_1_grounding_1_1_e8e301a42c505929743c3ac903ea4edb.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_question_answering_1_1_grounding_1_1_e8e301a42c505929743c3ac903ea4edb.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_question_answering_1_1_grounding_1_1_gemini_grounding_passage.html b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_question_answering_1_1_grounding_1_1_gemini_grounding_passage.html index dc759cd0..1b3e8386 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_question_answering_1_1_grounding_1_1_gemini_grounding_passage.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_question_answering_1_1_grounding_1_1_gemini_grounding_passage.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_question_answering_1_1_grounding_1_1_gemini_grounding_passages.html b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_question_answering_1_1_grounding_1_1_gemini_grounding_passages.html index 661eaabc..6fb236f6 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_question_answering_1_1_grounding_1_1_gemini_grounding_passages.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_question_answering_1_1_grounding_1_1_gemini_grounding_passages.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_question_answering_1_1_semantic_retri0c9a2baaae3a05ecf32bae131f9ac187.html b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_question_answering_1_1_semantic_retri0c9a2baaae3a05ecf32bae131f9ac187.html index 1d77435a..85e02750 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_question_answering_1_1_semantic_retri0c9a2baaae3a05ecf32bae131f9ac187.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_question_answering_1_1_semantic_retri0c9a2baaae3a05ecf32bae131f9ac187.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_question_answering_1_1_semantic_retri423d28f3d3196ade30c6249ca6de1c23.html b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_question_answering_1_1_semantic_retri423d28f3d3196ade30c6249ca6de1c23.html index 437058a6..d3678717 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_question_answering_1_1_semantic_retri423d28f3d3196ade30c6249ca6de1c23.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_question_answering_1_1_semantic_retri423d28f3d3196ade30c6249ca6de1c23.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_question_answering_1_1_semantic_retri9b6dfd7c08de54b9ab12d2385e99f3cf.html b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_question_answering_1_1_semantic_retri9b6dfd7c08de54b9ab12d2385e99f3cf.html index 15f9fbf7..bd0daaf7 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_question_answering_1_1_semantic_retri9b6dfd7c08de54b9ab12d2385e99f3cf.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_question_answering_1_1_semantic_retri9b6dfd7c08de54b9ab12d2385e99f3cf.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_question_answering_1_1_semantic_retricbc90f74754412722dd9321a93576f4e.html b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_question_answering_1_1_semantic_retricbc90f74754412722dd9321a93576f4e.html index f86a30a5..0d8a12f8 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_question_answering_1_1_semantic_retricbc90f74754412722dd9321a93576f4e.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_question_answering_1_1_semantic_retricbc90f74754412722dd9321a93576f4e.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_question_answering_1_1_semantic_retriever_1_1_gemini_metadata_filter.html b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_question_answering_1_1_semantic_retriever_1_1_gemini_metadata_filter.html index f60fb619..56ff1893 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_question_answering_1_1_semantic_retriever_1_1_gemini_metadata_filter.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_question_answering_1_1_semantic_retriever_1_1_gemini_metadata_filter.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_question_answering_1_1_semantic_retrifedbd69a35d694b29e256a384f46e443.html b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_question_answering_1_1_semantic_retrifedbd69a35d694b29e256a384f46e443.html index 5a6550dc..ec975e7f 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_question_answering_1_1_semantic_retrifedbd69a35d694b29e256a384f46e443.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_question_answering_1_1_semantic_retrifedbd69a35d694b29e256a384f46e443.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_safety_1_1_gemini_safety_rating-members.html b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_safety_1_1_gemini_safety_rating-members.html index c3617132..abf47b92 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_safety_1_1_gemini_safety_rating-members.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_safety_1_1_gemini_safety_rating-members.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_safety_1_1_gemini_safety_rating.html b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_safety_1_1_gemini_safety_rating.html index c0ffd7f8..6ba3cf3f 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_safety_1_1_gemini_safety_rating.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_safety_1_1_gemini_safety_rating.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_safety_1_1_gemini_safety_settings-members.html b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_safety_1_1_gemini_safety_settings-members.html index 1205b3c2..e0c5f9eb 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_safety_1_1_gemini_safety_settings-members.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_safety_1_1_gemini_safety_settings-members.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_safety_1_1_gemini_safety_settings.html b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_safety_1_1_gemini_safety_settings.html index ec6a6ec2..0d4de325 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_safety_1_1_gemini_safety_settings.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_safety_1_1_gemini_safety_settings.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_schema_1_1_gemini_schema-members.html b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_schema_1_1_gemini_schema-members.html index 20783110..c380ab58 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_schema_1_1_gemini_schema-members.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_schema_1_1_gemini_schema-members.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_schema_1_1_gemini_schema.html b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_schema_1_1_gemini_schema.html index 4efd379d..fee25bfa 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_schema_1_1_gemini_schema.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_schema_1_1_gemini_schema.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_tools_1_1_code_execution_1_1_gemini_code_execution_result-members.html b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_tools_1_1_code_execution_1_1_gemini_code_execution_result-members.html index 52a3c398..8502de05 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_tools_1_1_code_execution_1_1_gemini_code_execution_result-members.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_tools_1_1_code_execution_1_1_gemini_code_execution_result-members.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_tools_1_1_code_execution_1_1_gemini_code_execution_result.html b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_tools_1_1_code_execution_1_1_gemini_code_execution_result.html index 3a0252f7..1719abbb 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_tools_1_1_code_execution_1_1_gemini_code_execution_result.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_tools_1_1_code_execution_1_1_gemini_code_execution_result.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_tools_1_1_code_execution_1_1_gemini_executable_code-members.html b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_tools_1_1_code_execution_1_1_gemini_executable_code-members.html index eea7e8ab..764b965d 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_tools_1_1_code_execution_1_1_gemini_executable_code-members.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_tools_1_1_code_execution_1_1_gemini_executable_code-members.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_tools_1_1_code_execution_1_1_gemini_executable_code.html b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_tools_1_1_code_execution_1_1_gemini_executable_code.html index 44370db9..1bac5fff 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_tools_1_1_code_execution_1_1_gemini_executable_code.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_tools_1_1_code_execution_1_1_gemini_executable_code.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_tools_1_1_declaration_1_1_gemini_code_execution.html b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_tools_1_1_declaration_1_1_gemini_code_execution.html index c9365a19..85ba6005 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_tools_1_1_declaration_1_1_gemini_code_execution.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_tools_1_1_declaration_1_1_gemini_code_execution.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_tools_1_1_declaration_1_1_gemini_func292ccad5a7114fbdd925db3119ba05d2.html b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_tools_1_1_declaration_1_1_gemini_func292ccad5a7114fbdd925db3119ba05d2.html index b9d474bd..7ae98b3a 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_tools_1_1_declaration_1_1_gemini_func292ccad5a7114fbdd925db3119ba05d2.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_tools_1_1_declaration_1_1_gemini_func292ccad5a7114fbdd925db3119ba05d2.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_tools_1_1_declaration_1_1_gemini_function_calling_configuration.html b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_tools_1_1_declaration_1_1_gemini_function_calling_configuration.html index d56d437d..0c25f7e9 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_tools_1_1_declaration_1_1_gemini_function_calling_configuration.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_tools_1_1_declaration_1_1_gemini_function_calling_configuration.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_tools_1_1_declaration_1_1_gemini_function_declaration-members.html b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_tools_1_1_declaration_1_1_gemini_function_declaration-members.html index 75e18ed4..84c1c6a2 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_tools_1_1_declaration_1_1_gemini_function_declaration-members.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_tools_1_1_declaration_1_1_gemini_function_declaration-members.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_tools_1_1_declaration_1_1_gemini_function_declaration.html b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_tools_1_1_declaration_1_1_gemini_function_declaration.html index ca882ce1..2a15ccb6 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_tools_1_1_declaration_1_1_gemini_function_declaration.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_tools_1_1_declaration_1_1_gemini_function_declaration.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_tools_1_1_declaration_1_1_gemini_tool-members.html b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_tools_1_1_declaration_1_1_gemini_tool-members.html index 3887b894..dc11eb40 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_tools_1_1_declaration_1_1_gemini_tool-members.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_tools_1_1_declaration_1_1_gemini_tool-members.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_tools_1_1_declaration_1_1_gemini_tool.html b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_tools_1_1_declaration_1_1_gemini_tool.html index 2ea2b2d2..7129b82d 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_tools_1_1_declaration_1_1_gemini_tool.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_tools_1_1_declaration_1_1_gemini_tool.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_tools_1_1_declaration_1_1_gemini_tool_configuration-members.html b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_tools_1_1_declaration_1_1_gemini_tool_configuration-members.html index ae8e5708..cb5ae972 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_tools_1_1_declaration_1_1_gemini_tool_configuration-members.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_tools_1_1_declaration_1_1_gemini_tool_configuration-members.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_tools_1_1_declaration_1_1_gemini_tool_configuration.html b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_tools_1_1_declaration_1_1_gemini_tool_configuration.html index de9ea44c..7245a15d 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_tools_1_1_declaration_1_1_gemini_tool_configuration.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_tools_1_1_declaration_1_1_gemini_tool_configuration.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_tools_1_1_gemini_function_call-members.html b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_tools_1_1_gemini_function_call-members.html index bbeb8165..97cb20b5 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_tools_1_1_gemini_function_call-members.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_tools_1_1_gemini_function_call-members.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_tools_1_1_gemini_function_call.html b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_tools_1_1_gemini_function_call.html index e0908a41..bfeaa0b6 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_tools_1_1_gemini_function_call.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_tools_1_1_gemini_function_call.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_tools_1_1_gemini_function_response-members.html b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_tools_1_1_gemini_function_response-members.html index 1590aebe..8bb6be85 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_tools_1_1_gemini_function_response-members.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_tools_1_1_gemini_function_response-members.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_tools_1_1_gemini_function_response.html b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_tools_1_1_gemini_function_response.html index 14ff52b0..3e051801 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_tools_1_1_gemini_function_response.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_tools_1_1_gemini_function_response.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_tools_1_1_gemini_function_response_content-members.html b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_tools_1_1_gemini_function_response_content-members.html index b8b84600..2fcf935a 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_tools_1_1_gemini_function_response_content-members.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_tools_1_1_gemini_function_response_content-members.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_tools_1_1_gemini_function_response_content.html b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_tools_1_1_gemini_function_response_content.html index f2ba4e06..577024da 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_tools_1_1_gemini_function_response_content.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_tools_1_1_gemini_function_response_content.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_status_1_1_gemini_status-members.html b/docs/class_uralstech_1_1_u_gemini_1_1_status_1_1_gemini_status-members.html index 3f6d76ce..ca98ebd3 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_status_1_1_gemini_status-members.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_status_1_1_gemini_status-members.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_status_1_1_gemini_status.html b/docs/class_uralstech_1_1_u_gemini_1_1_status_1_1_gemini_status.html index 3302476e..fd122765 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_status_1_1_gemini_status.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_status_1_1_gemini_status.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_status_1_1_gemini_status_details-members.html b/docs/class_uralstech_1_1_u_gemini_1_1_status_1_1_gemini_status_details-members.html index c1e364fd..d5b904de 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_status_1_1_gemini_status_details-members.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_status_1_1_gemini_status_details-members.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_status_1_1_gemini_status_details.html b/docs/class_uralstech_1_1_u_gemini_1_1_status_1_1_gemini_status_details.html index b0c3ee6e..8860496b 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_status_1_1_gemini_status_details.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_status_1_1_gemini_status_details.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_utils_1_1_singleton_1_1_singleton-members.html b/docs/class_uralstech_1_1_u_gemini_1_1_utils_1_1_singleton_1_1_singleton-members.html index ab027463..56edab60 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_utils_1_1_singleton_1_1_singleton-members.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_utils_1_1_singleton_1_1_singleton-members.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_utils_1_1_singleton_1_1_singleton.html b/docs/class_uralstech_1_1_u_gemini_1_1_utils_1_1_singleton_1_1_singleton.html index 25dabc52..fe9486c4 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_utils_1_1_singleton_1_1_singleton.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_utils_1_1_singleton_1_1_singleton.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_utils_1_1_web_1_1_web_request_helper-members.html b/docs/class_uralstech_1_1_u_gemini_1_1_utils_1_1_web_1_1_web_request_helper-members.html index 49a842a0..1ee631e1 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_utils_1_1_web_1_1_web_request_helper-members.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_utils_1_1_web_1_1_web_request_helper-members.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/class_uralstech_1_1_u_gemini_1_1_utils_1_1_web_1_1_web_request_helper.html b/docs/class_uralstech_1_1_u_gemini_1_1_utils_1_1_web_1_1_web_request_helper.html index 0e53497c..5f9a4682 100644 --- a/docs/class_uralstech_1_1_u_gemini_1_1_utils_1_1_web_1_1_web_request_helper.html +++ b/docs/class_uralstech_1_1_u_gemini_1_1_utils_1_1_web_1_1_web_request_helper.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/classes.html b/docs/classes.html index c57fbf4d..a721ad21 100644 --- a/docs/classes.html +++ b/docs/classes.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/dir_013ee413de2049f66b1f84991ec3034f.html b/docs/dir_013ee413de2049f66b1f84991ec3034f.html index a890b5bc..03e24758 100644 --- a/docs/dir_013ee413de2049f66b1f84991ec3034f.html +++ b/docs/dir_013ee413de2049f66b1f84991ec3034f.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/dir_07237fb6c09a71abeadc28ffed67c80d.html b/docs/dir_07237fb6c09a71abeadc28ffed67c80d.html index f4a51b48..2f295fb7 100644 --- a/docs/dir_07237fb6c09a71abeadc28ffed67c80d.html +++ b/docs/dir_07237fb6c09a71abeadc28ffed67c80d.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/dir_0ac7074907d29246002a45daff855281.html b/docs/dir_0ac7074907d29246002a45daff855281.html index 9b7c47bd..7cf8c2b0 100644 --- a/docs/dir_0ac7074907d29246002a45daff855281.html +++ b/docs/dir_0ac7074907d29246002a45daff855281.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/dir_0cf1fdd9581045be842ff0eaed1ba6ab.html b/docs/dir_0cf1fdd9581045be842ff0eaed1ba6ab.html index d8629818..f3a9184f 100644 --- a/docs/dir_0cf1fdd9581045be842ff0eaed1ba6ab.html +++ b/docs/dir_0cf1fdd9581045be842ff0eaed1ba6ab.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/dir_0e627c1ac5c52a53686c6fad1295165d.html b/docs/dir_0e627c1ac5c52a53686c6fad1295165d.html index b2f4ac06..dea8e32e 100644 --- a/docs/dir_0e627c1ac5c52a53686c6fad1295165d.html +++ b/docs/dir_0e627c1ac5c52a53686c6fad1295165d.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/dir_19bf2fd78afc23e23e04211a950dc2a5.html b/docs/dir_19bf2fd78afc23e23e04211a950dc2a5.html index 7ce3b306..8c401ba9 100644 --- a/docs/dir_19bf2fd78afc23e23e04211a950dc2a5.html +++ b/docs/dir_19bf2fd78afc23e23e04211a950dc2a5.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/dir_2275036caab114621a79ba2a009aca1a.html b/docs/dir_2275036caab114621a79ba2a009aca1a.html index 99b477af..8e05ccc3 100644 --- a/docs/dir_2275036caab114621a79ba2a009aca1a.html +++ b/docs/dir_2275036caab114621a79ba2a009aca1a.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/dir_3bf679e8c953133e0d58e5335204f81e.html b/docs/dir_3bf679e8c953133e0d58e5335204f81e.html index 63938835..6153df1e 100644 --- a/docs/dir_3bf679e8c953133e0d58e5335204f81e.html +++ b/docs/dir_3bf679e8c953133e0d58e5335204f81e.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/dir_45828abe6c639379787a2d7b4d089ad6.html b/docs/dir_45828abe6c639379787a2d7b4d089ad6.html index 9dfc2019..88e8ac9f 100644 --- a/docs/dir_45828abe6c639379787a2d7b4d089ad6.html +++ b/docs/dir_45828abe6c639379787a2d7b4d089ad6.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/dir_4e65de734f19fd6b82dcc2ec587fef8b.html b/docs/dir_4e65de734f19fd6b82dcc2ec587fef8b.html index 01fb24d3..872799ab 100644 --- a/docs/dir_4e65de734f19fd6b82dcc2ec587fef8b.html +++ b/docs/dir_4e65de734f19fd6b82dcc2ec587fef8b.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/dir_4e6688c00147626c283d98ffe9788cc8.html b/docs/dir_4e6688c00147626c283d98ffe9788cc8.html index e65ce001..5b3e2575 100644 --- a/docs/dir_4e6688c00147626c283d98ffe9788cc8.html +++ b/docs/dir_4e6688c00147626c283d98ffe9788cc8.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/dir_50924235e0b6bd2dae8c5f0233f59420.html b/docs/dir_50924235e0b6bd2dae8c5f0233f59420.html index 1bc89089..bbdcfbc4 100644 --- a/docs/dir_50924235e0b6bd2dae8c5f0233f59420.html +++ b/docs/dir_50924235e0b6bd2dae8c5f0233f59420.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/dir_55a9cfa9fd444401365f258c113168e7.html b/docs/dir_55a9cfa9fd444401365f258c113168e7.html index 2c48aed2..feabefcb 100644 --- a/docs/dir_55a9cfa9fd444401365f258c113168e7.html +++ b/docs/dir_55a9cfa9fd444401365f258c113168e7.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/dir_571542eb0a773cd2ddc8819a34fb7d8f.html b/docs/dir_571542eb0a773cd2ddc8819a34fb7d8f.html index 23bcca44..090aca86 100644 --- a/docs/dir_571542eb0a773cd2ddc8819a34fb7d8f.html +++ b/docs/dir_571542eb0a773cd2ddc8819a34fb7d8f.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/dir_596fbf9c69e305cf1c95c79512c3385a.html b/docs/dir_596fbf9c69e305cf1c95c79512c3385a.html index e647890b..f417b576 100644 --- a/docs/dir_596fbf9c69e305cf1c95c79512c3385a.html +++ b/docs/dir_596fbf9c69e305cf1c95c79512c3385a.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/dir_5e1e3af2226d766e7aac202db69e59c0.html b/docs/dir_5e1e3af2226d766e7aac202db69e59c0.html index a4aeff45..61bd7baf 100644 --- a/docs/dir_5e1e3af2226d766e7aac202db69e59c0.html +++ b/docs/dir_5e1e3af2226d766e7aac202db69e59c0.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/dir_6158db8c86252d765a8660ee73994e4a.html b/docs/dir_6158db8c86252d765a8660ee73994e4a.html index 840ea910..dea60e08 100644 --- a/docs/dir_6158db8c86252d765a8660ee73994e4a.html +++ b/docs/dir_6158db8c86252d765a8660ee73994e4a.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/dir_685fce134643dfa5c500e1526a1763eb.html b/docs/dir_685fce134643dfa5c500e1526a1763eb.html index c15b5055..46eceb0b 100644 --- a/docs/dir_685fce134643dfa5c500e1526a1763eb.html +++ b/docs/dir_685fce134643dfa5c500e1526a1763eb.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/dir_69aaec94fb6a1075730f939bb2175cdb.html b/docs/dir_69aaec94fb6a1075730f939bb2175cdb.html index 5eb15609..1cf3a274 100644 --- a/docs/dir_69aaec94fb6a1075730f939bb2175cdb.html +++ b/docs/dir_69aaec94fb6a1075730f939bb2175cdb.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/dir_799ccc7a6fdc8614d97a310240c62b20.html b/docs/dir_799ccc7a6fdc8614d97a310240c62b20.html index 132aba5e..d9c7adf7 100644 --- a/docs/dir_799ccc7a6fdc8614d97a310240c62b20.html +++ b/docs/dir_799ccc7a6fdc8614d97a310240c62b20.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/dir_79ce1939d651232f8863ced08a91b1bc.html b/docs/dir_79ce1939d651232f8863ced08a91b1bc.html index 68f9bc14..bd354b60 100644 --- a/docs/dir_79ce1939d651232f8863ced08a91b1bc.html +++ b/docs/dir_79ce1939d651232f8863ced08a91b1bc.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/dir_7cc201dd994632b50a41076c84678819.html b/docs/dir_7cc201dd994632b50a41076c84678819.html index 0812f98a..3de0ac78 100644 --- a/docs/dir_7cc201dd994632b50a41076c84678819.html +++ b/docs/dir_7cc201dd994632b50a41076c84678819.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/dir_831052c238e8bd40f466c285a821e794.html b/docs/dir_831052c238e8bd40f466c285a821e794.html index 98ce7957..6a57c04e 100644 --- a/docs/dir_831052c238e8bd40f466c285a821e794.html +++ b/docs/dir_831052c238e8bd40f466c285a821e794.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/dir_89c24d3d9ca7205bcc150bdec64b7414.html b/docs/dir_89c24d3d9ca7205bcc150bdec64b7414.html index 76073568..aacfc50b 100644 --- a/docs/dir_89c24d3d9ca7205bcc150bdec64b7414.html +++ b/docs/dir_89c24d3d9ca7205bcc150bdec64b7414.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/dir_8b1ced5b26fc57cc43f16200e9404335.html b/docs/dir_8b1ced5b26fc57cc43f16200e9404335.html index 5fde1f0b..f4bad319 100644 --- a/docs/dir_8b1ced5b26fc57cc43f16200e9404335.html +++ b/docs/dir_8b1ced5b26fc57cc43f16200e9404335.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/dir_91010fa87fa4260dd2f08dffd3c9d302.html b/docs/dir_91010fa87fa4260dd2f08dffd3c9d302.html index 0a8d04ff..91bdf62f 100644 --- a/docs/dir_91010fa87fa4260dd2f08dffd3c9d302.html +++ b/docs/dir_91010fa87fa4260dd2f08dffd3c9d302.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/dir_91efd32a263145bf6e686a420f9f1dca.html b/docs/dir_91efd32a263145bf6e686a420f9f1dca.html index 9bd4118c..2962e0ed 100644 --- a/docs/dir_91efd32a263145bf6e686a420f9f1dca.html +++ b/docs/dir_91efd32a263145bf6e686a420f9f1dca.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/dir_97a413c7db6c6ac2241fb1dd03245fac.html b/docs/dir_97a413c7db6c6ac2241fb1dd03245fac.html index 5bf2d721..7ee9d0bd 100644 --- a/docs/dir_97a413c7db6c6ac2241fb1dd03245fac.html +++ b/docs/dir_97a413c7db6c6ac2241fb1dd03245fac.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/dir_99bc29c6936f470334c3fc04d002ff88.html b/docs/dir_99bc29c6936f470334c3fc04d002ff88.html index ef7b5b78..c76781f5 100644 --- a/docs/dir_99bc29c6936f470334c3fc04d002ff88.html +++ b/docs/dir_99bc29c6936f470334c3fc04d002ff88.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/dir_a482eb51576e5be5d0a7e44ae6480b88.html b/docs/dir_a482eb51576e5be5d0a7e44ae6480b88.html index d8aef092..d7735048 100644 --- a/docs/dir_a482eb51576e5be5d0a7e44ae6480b88.html +++ b/docs/dir_a482eb51576e5be5d0a7e44ae6480b88.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/dir_ab25d43778534ba667a6114394eb6008.html b/docs/dir_ab25d43778534ba667a6114394eb6008.html index 9906296e..12d2c06a 100644 --- a/docs/dir_ab25d43778534ba667a6114394eb6008.html +++ b/docs/dir_ab25d43778534ba667a6114394eb6008.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/dir_b2f02983e28b6a809affc5dfc9f1c745.html b/docs/dir_b2f02983e28b6a809affc5dfc9f1c745.html index e5986bb9..8db95cf4 100644 --- a/docs/dir_b2f02983e28b6a809affc5dfc9f1c745.html +++ b/docs/dir_b2f02983e28b6a809affc5dfc9f1c745.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/dir_c0eb0275b8ae4e5fdfe9724ed49fd3eb.html b/docs/dir_c0eb0275b8ae4e5fdfe9724ed49fd3eb.html index dcea2882..5b49eef3 100644 --- a/docs/dir_c0eb0275b8ae4e5fdfe9724ed49fd3eb.html +++ b/docs/dir_c0eb0275b8ae4e5fdfe9724ed49fd3eb.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/dir_c7d3b2f61f9f2b7cacc68b3f78266e76.html b/docs/dir_c7d3b2f61f9f2b7cacc68b3f78266e76.html index ea79c91d..776d7bfa 100644 --- a/docs/dir_c7d3b2f61f9f2b7cacc68b3f78266e76.html +++ b/docs/dir_c7d3b2f61f9f2b7cacc68b3f78266e76.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/dir_cd85903541037b33cee8a4062593e3d6.html b/docs/dir_cd85903541037b33cee8a4062593e3d6.html index 63f71a70..fe4a8afa 100644 --- a/docs/dir_cd85903541037b33cee8a4062593e3d6.html +++ b/docs/dir_cd85903541037b33cee8a4062593e3d6.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/dir_cde94363325f5665f20e6a3ebd23d890.html b/docs/dir_cde94363325f5665f20e6a3ebd23d890.html index bbf736bd..fb0f5c62 100644 --- a/docs/dir_cde94363325f5665f20e6a3ebd23d890.html +++ b/docs/dir_cde94363325f5665f20e6a3ebd23d890.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/dir_d42e02a83cf454114a5144760a546a01.html b/docs/dir_d42e02a83cf454114a5144760a546a01.html index d00454c5..d2d7a570 100644 --- a/docs/dir_d42e02a83cf454114a5144760a546a01.html +++ b/docs/dir_d42e02a83cf454114a5144760a546a01.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/dir_d4927128aca269360b915a591685c458.html b/docs/dir_d4927128aca269360b915a591685c458.html index da2968db..e7b935db 100644 --- a/docs/dir_d4927128aca269360b915a591685c458.html +++ b/docs/dir_d4927128aca269360b915a591685c458.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/dir_e55f62ec1b14e790f6bda61cd366b2c9.html b/docs/dir_e55f62ec1b14e790f6bda61cd366b2c9.html index 3a4cf986..8d9ae9fc 100644 --- a/docs/dir_e55f62ec1b14e790f6bda61cd366b2c9.html +++ b/docs/dir_e55f62ec1b14e790f6bda61cd366b2c9.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/dir_e7ee1d28c99e4ec2f60b93f699c1f94a.html b/docs/dir_e7ee1d28c99e4ec2f60b93f699c1f94a.html index bf1c59c2..d77110a0 100644 --- a/docs/dir_e7ee1d28c99e4ec2f60b93f699c1f94a.html +++ b/docs/dir_e7ee1d28c99e4ec2f60b93f699c1f94a.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/dir_eb0bb4db95b1bfcf694040baae97c8d0.html b/docs/dir_eb0bb4db95b1bfcf694040baae97c8d0.html index a64e1348..f19163f1 100644 --- a/docs/dir_eb0bb4db95b1bfcf694040baae97c8d0.html +++ b/docs/dir_eb0bb4db95b1bfcf694040baae97c8d0.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/dir_eb5f6669294a20429730b39d48191cc9.html b/docs/dir_eb5f6669294a20429730b39d48191cc9.html index 77f73b31..69a356b4 100644 --- a/docs/dir_eb5f6669294a20429730b39d48191cc9.html +++ b/docs/dir_eb5f6669294a20429730b39d48191cc9.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/dir_f1ec357c88386f962af94ad09a7db653.html b/docs/dir_f1ec357c88386f962af94ad09a7db653.html index 4ab05947..862d55c7 100644 --- a/docs/dir_f1ec357c88386f962af94ad09a7db653.html +++ b/docs/dir_f1ec357c88386f962af94ad09a7db653.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/dir_f6bad9bce42544300078c0b4eea41757.html b/docs/dir_f6bad9bce42544300078c0b4eea41757.html index 0d7671d3..c9fa600b 100644 --- a/docs/dir_f6bad9bce42544300078c0b4eea41757.html +++ b/docs/dir_f6bad9bce42544300078c0b4eea41757.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/functions.html b/docs/functions.html index 128475bb..bc8e086c 100644 --- a/docs/functions.html +++ b/docs/functions.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/functions_b.html b/docs/functions_b.html index 917cbd4c..a6a6f43d 100644 --- a/docs/functions_b.html +++ b/docs/functions_b.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/functions_c.html b/docs/functions_c.html index b2d4db9d..9b5b8b00 100644 --- a/docs/functions_c.html +++ b/docs/functions_c.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/functions_d.html b/docs/functions_d.html index 9fd799bb..11381922 100644 --- a/docs/functions_d.html +++ b/docs/functions_d.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/functions_e.html b/docs/functions_e.html index 48eb00e5..08cb9c63 100644 --- a/docs/functions_e.html +++ b/docs/functions_e.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/functions_f.html b/docs/functions_f.html index 75a4c741..013c3005 100644 --- a/docs/functions_f.html +++ b/docs/functions_f.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/functions_func.html b/docs/functions_func.html index d0634de5..82aaf44e 100644 --- a/docs/functions_func.html +++ b/docs/functions_func.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/functions_g.html b/docs/functions_g.html index 945db9bb..209ef228 100644 --- a/docs/functions_g.html +++ b/docs/functions_g.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/functions_i.html b/docs/functions_i.html index eb646208..ae7b3b0f 100644 --- a/docs/functions_i.html +++ b/docs/functions_i.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/functions_k.html b/docs/functions_k.html index 51c471d4..8d0a752b 100644 --- a/docs/functions_k.html +++ b/docs/functions_k.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/functions_l.html b/docs/functions_l.html index 96993b4c..a871cbfb 100644 --- a/docs/functions_l.html +++ b/docs/functions_l.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/functions_m.html b/docs/functions_m.html index de573ec9..b131f207 100644 --- a/docs/functions_m.html +++ b/docs/functions_m.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/functions_n.html b/docs/functions_n.html index be5be290..dee9a679 100644 --- a/docs/functions_n.html +++ b/docs/functions_n.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/functions_o.html b/docs/functions_o.html index ee652647..c4703a41 100644 --- a/docs/functions_o.html +++ b/docs/functions_o.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/functions_p.html b/docs/functions_p.html index abb76fb8..b28acee4 100644 --- a/docs/functions_p.html +++ b/docs/functions_p.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/functions_prop.html b/docs/functions_prop.html index 11091d1c..515a3d2b 100644 --- a/docs/functions_prop.html +++ b/docs/functions_prop.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/functions_q.html b/docs/functions_q.html index 20148145..104be12d 100644 --- a/docs/functions_q.html +++ b/docs/functions_q.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/functions_r.html b/docs/functions_r.html index 95271f9b..40715f6f 100644 --- a/docs/functions_r.html +++ b/docs/functions_r.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/functions_s.html b/docs/functions_s.html index 1f6b7fc2..f945c0ce 100644 --- a/docs/functions_s.html +++ b/docs/functions_s.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/functions_t.html b/docs/functions_t.html index 38cbae3c..ba966793 100644 --- a/docs/functions_t.html +++ b/docs/functions_t.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/functions_u.html b/docs/functions_u.html index 3c9db45c..ae3f71c9 100644 --- a/docs/functions_u.html +++ b/docs/functions_u.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/functions_v.html b/docs/functions_v.html index 9eaa817a..7bb3671e 100644 --- a/docs/functions_v.html +++ b/docs/functions_v.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/functions_vars.html b/docs/functions_vars.html index eb808894..310e4aec 100644 --- a/docs/functions_vars.html +++ b/docs/functions_vars.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/functions_vars_b.html b/docs/functions_vars_b.html index cebaa047..e7a48fd5 100644 --- a/docs/functions_vars_b.html +++ b/docs/functions_vars_b.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/functions_vars_c.html b/docs/functions_vars_c.html index ee561a4a..d8d9f3f5 100644 --- a/docs/functions_vars_c.html +++ b/docs/functions_vars_c.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/functions_vars_d.html b/docs/functions_vars_d.html index 7be80347..56cdf220 100644 --- a/docs/functions_vars_d.html +++ b/docs/functions_vars_d.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/functions_vars_e.html b/docs/functions_vars_e.html index 1f02f761..bbf23b30 100644 --- a/docs/functions_vars_e.html +++ b/docs/functions_vars_e.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/functions_vars_f.html b/docs/functions_vars_f.html index 6fa5de63..e271d30b 100644 --- a/docs/functions_vars_f.html +++ b/docs/functions_vars_f.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/functions_vars_g.html b/docs/functions_vars_g.html index 98830c75..f8fb5ae3 100644 --- a/docs/functions_vars_g.html +++ b/docs/functions_vars_g.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/functions_vars_i.html b/docs/functions_vars_i.html index 459b0e54..9b2633a7 100644 --- a/docs/functions_vars_i.html +++ b/docs/functions_vars_i.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/functions_vars_k.html b/docs/functions_vars_k.html index 28f9fb3a..359f0b7d 100644 --- a/docs/functions_vars_k.html +++ b/docs/functions_vars_k.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/functions_vars_l.html b/docs/functions_vars_l.html index dbb05f88..fcba061c 100644 --- a/docs/functions_vars_l.html +++ b/docs/functions_vars_l.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/functions_vars_m.html b/docs/functions_vars_m.html index 21c0e022..d1bbde37 100644 --- a/docs/functions_vars_m.html +++ b/docs/functions_vars_m.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/functions_vars_n.html b/docs/functions_vars_n.html index 3c519f9e..c39c2e2f 100644 --- a/docs/functions_vars_n.html +++ b/docs/functions_vars_n.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/functions_vars_o.html b/docs/functions_vars_o.html index 07b329d6..0750fdbd 100644 --- a/docs/functions_vars_o.html +++ b/docs/functions_vars_o.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/functions_vars_p.html b/docs/functions_vars_p.html index 7fc9dfaa..c49aa083 100644 --- a/docs/functions_vars_p.html +++ b/docs/functions_vars_p.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/functions_vars_q.html b/docs/functions_vars_q.html index b606053c..499d3807 100644 --- a/docs/functions_vars_q.html +++ b/docs/functions_vars_q.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/functions_vars_r.html b/docs/functions_vars_r.html index 2dd03444..fda6701e 100644 --- a/docs/functions_vars_r.html +++ b/docs/functions_vars_r.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/functions_vars_s.html b/docs/functions_vars_s.html index 662d2a28..2499e85c 100644 --- a/docs/functions_vars_s.html +++ b/docs/functions_vars_s.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/functions_vars_t.html b/docs/functions_vars_t.html index e404114e..1bac6a84 100644 --- a/docs/functions_vars_t.html +++ b/docs/functions_vars_t.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/functions_vars_u.html b/docs/functions_vars_u.html index 2467dd19..ab93f3d1 100644 --- a/docs/functions_vars_u.html +++ b/docs/functions_vars_u.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/functions_vars_v.html b/docs/functions_vars_v.html index 1a59f6ae..c1cf36fa 100644 --- a/docs/functions_vars_v.html +++ b/docs/functions_vars_v.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/functions_w.html b/docs/functions_w.html index ada965db..74e4b426 100644 --- a/docs/functions_w.html +++ b/docs/functions_w.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/hierarchy.html b/docs/hierarchy.html index 94b16c55..68f50f38 100644 --- a/docs/hierarchy.html +++ b/docs/hierarchy.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/index.html b/docs/index.html index 2e242440..b32789b3 100644 --- a/docs/index.html +++ b/docs/index.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/interface_uralstech_1_1_u_gemini_1_1_i_appendable_data-members.html b/docs/interface_uralstech_1_1_u_gemini_1_1_i_appendable_data-members.html index 73b6e7d3..c366e5ea 100644 --- a/docs/interface_uralstech_1_1_u_gemini_1_1_i_appendable_data-members.html +++ b/docs/interface_uralstech_1_1_u_gemini_1_1_i_appendable_data-members.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/interface_uralstech_1_1_u_gemini_1_1_i_appendable_data.html b/docs/interface_uralstech_1_1_u_gemini_1_1_i_appendable_data.html index c3f781d1..06b309e2 100644 --- a/docs/interface_uralstech_1_1_u_gemini_1_1_i_appendable_data.html +++ b/docs/interface_uralstech_1_1_u_gemini_1_1_i_appendable_data.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/interface_uralstech_1_1_u_gemini_1_1_i_gemini_delete_request-members.html b/docs/interface_uralstech_1_1_u_gemini_1_1_i_gemini_delete_request-members.html index f199e1be..63d52721 100644 --- a/docs/interface_uralstech_1_1_u_gemini_1_1_i_gemini_delete_request-members.html +++ b/docs/interface_uralstech_1_1_u_gemini_1_1_i_gemini_delete_request-members.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/interface_uralstech_1_1_u_gemini_1_1_i_gemini_delete_request.html b/docs/interface_uralstech_1_1_u_gemini_1_1_i_gemini_delete_request.html index 49da3bfd..b65ebb7e 100644 --- a/docs/interface_uralstech_1_1_u_gemini_1_1_i_gemini_delete_request.html +++ b/docs/interface_uralstech_1_1_u_gemini_1_1_i_gemini_delete_request.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/interface_uralstech_1_1_u_gemini_1_1_i_gemini_get_request-members.html b/docs/interface_uralstech_1_1_u_gemini_1_1_i_gemini_get_request-members.html index d843fb8f..906a63a6 100644 --- a/docs/interface_uralstech_1_1_u_gemini_1_1_i_gemini_get_request-members.html +++ b/docs/interface_uralstech_1_1_u_gemini_1_1_i_gemini_get_request-members.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/interface_uralstech_1_1_u_gemini_1_1_i_gemini_get_request.html b/docs/interface_uralstech_1_1_u_gemini_1_1_i_gemini_get_request.html index 39a1a836..1a41d0ba 100644 --- a/docs/interface_uralstech_1_1_u_gemini_1_1_i_gemini_get_request.html +++ b/docs/interface_uralstech_1_1_u_gemini_1_1_i_gemini_get_request.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/interface_uralstech_1_1_u_gemini_1_1_i_gemini_multi_part_post_request-members.html b/docs/interface_uralstech_1_1_u_gemini_1_1_i_gemini_multi_part_post_request-members.html index 1cebae05..94cee19e 100644 --- a/docs/interface_uralstech_1_1_u_gemini_1_1_i_gemini_multi_part_post_request-members.html +++ b/docs/interface_uralstech_1_1_u_gemini_1_1_i_gemini_multi_part_post_request-members.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/interface_uralstech_1_1_u_gemini_1_1_i_gemini_multi_part_post_request.html b/docs/interface_uralstech_1_1_u_gemini_1_1_i_gemini_multi_part_post_request.html index 73cb97ac..65064d47 100644 --- a/docs/interface_uralstech_1_1_u_gemini_1_1_i_gemini_multi_part_post_request.html +++ b/docs/interface_uralstech_1_1_u_gemini_1_1_i_gemini_multi_part_post_request.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/interface_uralstech_1_1_u_gemini_1_1_i_gemini_patch_request-members.html b/docs/interface_uralstech_1_1_u_gemini_1_1_i_gemini_patch_request-members.html index 8e65192c..9fe8e160 100644 --- a/docs/interface_uralstech_1_1_u_gemini_1_1_i_gemini_patch_request-members.html +++ b/docs/interface_uralstech_1_1_u_gemini_1_1_i_gemini_patch_request-members.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/interface_uralstech_1_1_u_gemini_1_1_i_gemini_patch_request.html b/docs/interface_uralstech_1_1_u_gemini_1_1_i_gemini_patch_request.html index 33ea04ba..570f79ef 100644 --- a/docs/interface_uralstech_1_1_u_gemini_1_1_i_gemini_patch_request.html +++ b/docs/interface_uralstech_1_1_u_gemini_1_1_i_gemini_patch_request.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/interface_uralstech_1_1_u_gemini_1_1_i_gemini_post_request-members.html b/docs/interface_uralstech_1_1_u_gemini_1_1_i_gemini_post_request-members.html index 56e65dc5..c594895b 100644 --- a/docs/interface_uralstech_1_1_u_gemini_1_1_i_gemini_post_request-members.html +++ b/docs/interface_uralstech_1_1_u_gemini_1_1_i_gemini_post_request-members.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/interface_uralstech_1_1_u_gemini_1_1_i_gemini_post_request.html b/docs/interface_uralstech_1_1_u_gemini_1_1_i_gemini_post_request.html index 3b42ba1c..6a0bafc0 100644 --- a/docs/interface_uralstech_1_1_u_gemini_1_1_i_gemini_post_request.html +++ b/docs/interface_uralstech_1_1_u_gemini_1_1_i_gemini_post_request.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/interface_uralstech_1_1_u_gemini_1_1_i_gemini_request-members.html b/docs/interface_uralstech_1_1_u_gemini_1_1_i_gemini_request-members.html index c6ef410d..32f0a48b 100644 --- a/docs/interface_uralstech_1_1_u_gemini_1_1_i_gemini_request-members.html +++ b/docs/interface_uralstech_1_1_u_gemini_1_1_i_gemini_request-members.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/interface_uralstech_1_1_u_gemini_1_1_i_gemini_request.html b/docs/interface_uralstech_1_1_u_gemini_1_1_i_gemini_request.html index b20372a7..9f2de885 100644 --- a/docs/interface_uralstech_1_1_u_gemini_1_1_i_gemini_request.html +++ b/docs/interface_uralstech_1_1_u_gemini_1_1_i_gemini_request.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/interface_uralstech_1_1_u_gemini_1_1_i_gemini_streamable_post_request-members.html b/docs/interface_uralstech_1_1_u_gemini_1_1_i_gemini_streamable_post_request-members.html index de31bcec..6507528f 100644 --- a/docs/interface_uralstech_1_1_u_gemini_1_1_i_gemini_streamable_post_request-members.html +++ b/docs/interface_uralstech_1_1_u_gemini_1_1_i_gemini_streamable_post_request-members.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/interface_uralstech_1_1_u_gemini_1_1_i_gemini_streamable_post_request.html b/docs/interface_uralstech_1_1_u_gemini_1_1_i_gemini_streamable_post_request.html index 8ab66f81..abed5cdb 100644 --- a/docs/interface_uralstech_1_1_u_gemini_1_1_i_gemini_streamable_post_request.html +++ b/docs/interface_uralstech_1_1_u_gemini_1_1_i_gemini_streamable_post_request.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/md__u_gemini_2_packages_2com_8uralstech_8ugemini_2_documentation_0i_2_main_page.html b/docs/md__u_gemini_2_packages_2com_8uralstech_8ugemini_2_documentation_0i_2_main_page.html index cfc96ee2..2674a7ca 100644 --- a/docs/md__u_gemini_2_packages_2com_8uralstech_8ugemini_2_documentation_0i_2_main_page.html +++ b/docs/md__u_gemini_2_packages_2com_8uralstech_8ugemini_2_documentation_0i_2_main_page.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
@@ -160,6 +160,7 @@

+

Please note that the code provided in this page is purely for learning purposes and is far from perfect. Remember to null-check all responses!

Basics

diff --git a/docs/md__u_gemini_2_packages_2com_8uralstech_8ugemini_2_runtime_2_breaking_01_changes.html b/docs/md__u_gemini_2_packages_2com_8uralstech_8ugemini_2_runtime_2_breaking_01_changes.html index 58119f6a..2f87e9ba 100644 --- a/docs/md__u_gemini_2_packages_2com_8uralstech_8ugemini_2_runtime_2_breaking_01_changes.html +++ b/docs/md__u_gemini_2_packages_2com_8uralstech_8ugemini_2_runtime_2_breaking_01_changes.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/namespace_uralstech.html b/docs/namespace_uralstech.html index aecaa487..87f4d830 100644 --- a/docs/namespace_uralstech.html +++ b/docs/namespace_uralstech.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/namespace_uralstech_1_1_u_gemini.html b/docs/namespace_uralstech_1_1_u_gemini.html index b51d69b2..cb47c4b1 100644 --- a/docs/namespace_uralstech_1_1_u_gemini.html +++ b/docs/namespace_uralstech_1_1_u_gemini.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/namespace_uralstech_1_1_u_gemini_1_1_exceptions.html b/docs/namespace_uralstech_1_1_u_gemini_1_1_exceptions.html index 687404f0..7862a49c 100644 --- a/docs/namespace_uralstech_1_1_u_gemini_1_1_exceptions.html +++ b/docs/namespace_uralstech_1_1_u_gemini_1_1_exceptions.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/namespace_uralstech_1_1_u_gemini_1_1_file_a_p_i.html b/docs/namespace_uralstech_1_1_u_gemini_1_1_file_a_p_i.html index abe99c73..b37be381 100644 --- a/docs/namespace_uralstech_1_1_u_gemini_1_1_file_a_p_i.html +++ b/docs/namespace_uralstech_1_1_u_gemini_1_1_file_a_p_i.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/namespace_uralstech_1_1_u_gemini_1_1_models.html b/docs/namespace_uralstech_1_1_u_gemini_1_1_models.html index 09b75355..80c233af 100644 --- a/docs/namespace_uralstech_1_1_u_gemini_1_1_models.html +++ b/docs/namespace_uralstech_1_1_u_gemini_1_1_models.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/namespace_uralstech_1_1_u_gemini_1_1_models_1_1_caching.html b/docs/namespace_uralstech_1_1_u_gemini_1_1_models_1_1_caching.html index 4b9bdcbc..c63c9db2 100644 --- a/docs/namespace_uralstech_1_1_u_gemini_1_1_models_1_1_caching.html +++ b/docs/namespace_uralstech_1_1_u_gemini_1_1_models_1_1_caching.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/namespace_uralstech_1_1_u_gemini_1_1_models_1_1_content.html b/docs/namespace_uralstech_1_1_u_gemini_1_1_models_1_1_content.html index 9f3341a2..6534fb58 100644 --- a/docs/namespace_uralstech_1_1_u_gemini_1_1_models_1_1_content.html +++ b/docs/namespace_uralstech_1_1_u_gemini_1_1_models_1_1_content.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/namespace_uralstech_1_1_u_gemini_1_1_models_1_1_content_1_1_attribution.html b/docs/namespace_uralstech_1_1_u_gemini_1_1_models_1_1_content_1_1_attribution.html index 08e4d4c0..09cb9046 100644 --- a/docs/namespace_uralstech_1_1_u_gemini_1_1_models_1_1_content_1_1_attribution.html +++ b/docs/namespace_uralstech_1_1_u_gemini_1_1_models_1_1_content_1_1_attribution.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/namespace_uralstech_1_1_u_gemini_1_1_models_1_1_content_1_1_citation.html b/docs/namespace_uralstech_1_1_u_gemini_1_1_models_1_1_content_1_1_citation.html index b2dd0f7c..aa7a9a72 100644 --- a/docs/namespace_uralstech_1_1_u_gemini_1_1_models_1_1_content_1_1_citation.html +++ b/docs/namespace_uralstech_1_1_u_gemini_1_1_models_1_1_content_1_1_citation.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/namespace_uralstech_1_1_u_gemini_1_1_models_1_1_count_tokens.html b/docs/namespace_uralstech_1_1_u_gemini_1_1_models_1_1_count_tokens.html index 3b36ec90..494795ee 100644 --- a/docs/namespace_uralstech_1_1_u_gemini_1_1_models_1_1_count_tokens.html +++ b/docs/namespace_uralstech_1_1_u_gemini_1_1_models_1_1_count_tokens.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/namespace_uralstech_1_1_u_gemini_1_1_models_1_1_embedding.html b/docs/namespace_uralstech_1_1_u_gemini_1_1_models_1_1_embedding.html index 62038f45..a605599a 100644 --- a/docs/namespace_uralstech_1_1_u_gemini_1_1_models_1_1_embedding.html +++ b/docs/namespace_uralstech_1_1_u_gemini_1_1_models_1_1_embedding.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/namespace_uralstech_1_1_u_gemini_1_1_models_1_1_generation.html b/docs/namespace_uralstech_1_1_u_gemini_1_1_models_1_1_generation.html index 23a2a70e..7db70503 100644 --- a/docs/namespace_uralstech_1_1_u_gemini_1_1_models_1_1_generation.html +++ b/docs/namespace_uralstech_1_1_u_gemini_1_1_models_1_1_generation.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/namespace_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_candidate.html b/docs/namespace_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_candidate.html index cc643939..a6863374 100644 --- a/docs/namespace_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_candidate.html +++ b/docs/namespace_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_candidate.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/namespace_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_chat.html b/docs/namespace_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_chat.html index 52b58770..db8036d4 100644 --- a/docs/namespace_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_chat.html +++ b/docs/namespace_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_chat.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/namespace_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_question_answering.html b/docs/namespace_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_question_answering.html index 3f9e356d..c328bde6 100644 --- a/docs/namespace_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_question_answering.html +++ b/docs/namespace_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_question_answering.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/namespace_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_question_answering_1_1_grounding.html b/docs/namespace_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_question_answering_1_1_grounding.html index 1847078f..1274f45d 100644 --- a/docs/namespace_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_question_answering_1_1_grounding.html +++ b/docs/namespace_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_question_answering_1_1_grounding.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/namespace_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_question_answering_1_1_semantic_retriever.html b/docs/namespace_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_question_answering_1_1_semantic_retriever.html index e4ccc36d..6ec572e4 100644 --- a/docs/namespace_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_question_answering_1_1_semantic_retriever.html +++ b/docs/namespace_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_question_answering_1_1_semantic_retriever.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/namespace_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_safety.html b/docs/namespace_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_safety.html index 013c0bb2..947ba769 100644 --- a/docs/namespace_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_safety.html +++ b/docs/namespace_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_safety.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/namespace_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_schema.html b/docs/namespace_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_schema.html index 4ee9a1b4..c3417345 100644 --- a/docs/namespace_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_schema.html +++ b/docs/namespace_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_schema.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/namespace_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_tools.html b/docs/namespace_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_tools.html index b1fa9469..27efbbc0 100644 --- a/docs/namespace_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_tools.html +++ b/docs/namespace_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_tools.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/namespace_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_tools_1_1_code_execution.html b/docs/namespace_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_tools_1_1_code_execution.html index f702c48e..a65b20ee 100644 --- a/docs/namespace_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_tools_1_1_code_execution.html +++ b/docs/namespace_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_tools_1_1_code_execution.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/namespace_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_tools_1_1_declaration.html b/docs/namespace_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_tools_1_1_declaration.html index 6328962f..3d61b11b 100644 --- a/docs/namespace_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_tools_1_1_declaration.html +++ b/docs/namespace_uralstech_1_1_u_gemini_1_1_models_1_1_generation_1_1_tools_1_1_declaration.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/namespace_uralstech_1_1_u_gemini_1_1_status.html b/docs/namespace_uralstech_1_1_u_gemini_1_1_status.html index a214897b..75f9589f 100644 --- a/docs/namespace_uralstech_1_1_u_gemini_1_1_status.html +++ b/docs/namespace_uralstech_1_1_u_gemini_1_1_status.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/namespace_uralstech_1_1_u_gemini_1_1_utils.html b/docs/namespace_uralstech_1_1_u_gemini_1_1_utils.html index 27ddf6e8..99bd50c9 100644 --- a/docs/namespace_uralstech_1_1_u_gemini_1_1_utils.html +++ b/docs/namespace_uralstech_1_1_u_gemini_1_1_utils.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/namespace_uralstech_1_1_u_gemini_1_1_utils_1_1_singleton.html b/docs/namespace_uralstech_1_1_u_gemini_1_1_utils_1_1_singleton.html index 00587f5c..a7141da0 100644 --- a/docs/namespace_uralstech_1_1_u_gemini_1_1_utils_1_1_singleton.html +++ b/docs/namespace_uralstech_1_1_u_gemini_1_1_utils_1_1_singleton.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/namespace_uralstech_1_1_u_gemini_1_1_utils_1_1_web.html b/docs/namespace_uralstech_1_1_u_gemini_1_1_utils_1_1_web.html index deafac73..53ad5a0f 100644 --- a/docs/namespace_uralstech_1_1_u_gemini_1_1_utils_1_1_web.html +++ b/docs/namespace_uralstech_1_1_u_gemini_1_1_utils_1_1_web.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/namespacemembers.html b/docs/namespacemembers.html index 75395b5c..3391f8fa 100644 --- a/docs/namespacemembers.html +++ b/docs/namespacemembers.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/namespacemembers_enum.html b/docs/namespacemembers_enum.html index 72458daa..fdb4157e 100644 --- a/docs/namespacemembers_enum.html +++ b/docs/namespacemembers_enum.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/namespaces.html b/docs/namespaces.html index 6d6f9283..e62c2a7e 100644 --- a/docs/namespaces.html +++ b/docs/namespaces.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.
diff --git a/docs/pages.html b/docs/pages.html index 7affbd22..f19eb865 100644 --- a/docs/pages.html +++ b/docs/pages.html @@ -27,7 +27,7 @@ -
UGemini 2.0.0 +
UGemini 2.0.1
A C# wrapper for the Google Gemini API.