├── .github ├── dependabot.yml └── workflows │ ├── auto-merge.yml │ ├── auto-update.yml │ ├── dotnet.yml │ ├── mkdocs.yml │ └── pull-request.yml ├── .gitignore ├── CLAUDE.md ├── LICENSE ├── Ollama.sln ├── README.md ├── assets └── nuget_icon.png ├── docs ├── css │ └── extra.css └── media │ └── icon128.png ├── global.json ├── mkdocs.yml └── src ├── Directory.Build.props ├── helpers ├── FixOpenApiSpec │ ├── FixOpenApiSpec.csproj │ └── Program.cs ├── GenerateDocs │ ├── GenerateDocs.csproj │ └── Program.cs └── TrimmingHelper │ ├── Program.cs │ └── TrimmingHelper.csproj ├── key.snk ├── libs ├── Directory.Build.props └── Ollama │ ├── Chat.cs │ ├── Extensions │ └── StringExtensions.cs │ ├── Generated │ ├── AnyOf.2.Json.g.cs │ ├── AnyOf.2.g.cs │ ├── JsonConverters.UnixTimestamp.g.cs │ ├── Ollama..JsonSerializerContext.g.cs │ ├── Ollama.ChatClient.GenerateChatCompletion.g.cs │ ├── Ollama.ChatClient.g.cs │ ├── Ollama.CompletionsClient.GenerateCompletion.g.cs │ ├── Ollama.CompletionsClient.g.cs │ ├── Ollama.EmbeddingsClient.GenerateEmbedding.g.cs │ ├── Ollama.EmbeddingsClient.g.cs │ ├── Ollama.Exceptions.g.cs │ ├── Ollama.IChatClient.GenerateChatCompletion.g.cs │ ├── Ollama.IChatClient.g.cs │ ├── Ollama.ICompletionsClient.GenerateCompletion.g.cs │ ├── Ollama.ICompletionsClient.g.cs │ ├── Ollama.IEmbeddingsClient.GenerateEmbedding.g.cs │ ├── Ollama.IEmbeddingsClient.g.cs │ ├── Ollama.IModelsClient.CheckBlob.g.cs │ ├── Ollama.IModelsClient.CopyModel.g.cs │ ├── Ollama.IModelsClient.CreateBlob.g.cs │ ├── Ollama.IModelsClient.CreateModel.g.cs │ ├── Ollama.IModelsClient.DeleteModel.g.cs │ ├── Ollama.IModelsClient.ListModels.g.cs │ ├── Ollama.IModelsClient.ListRunningModels.g.cs │ ├── Ollama.IModelsClient.PullModel.g.cs │ ├── Ollama.IModelsClient.PushModel.g.cs │ ├── Ollama.IModelsClient.ShowModelInfo.g.cs │ ├── Ollama.IModelsClient.g.cs │ ├── Ollama.IOllamaApiClient.GetVersion.g.cs │ ├── Ollama.IOllamaApiClient.g.cs │ ├── Ollama.JsonConverters.AnyOf2.g.cs │ ├── Ollama.JsonConverters.Capability.g.cs │ ├── Ollama.JsonConverters.CapabilityNullable.g.cs │ ├── Ollama.JsonConverters.CreateModelStatus.g.cs │ ├── Ollama.JsonConverters.CreateModelStatusEnum.g.cs │ ├── Ollama.JsonConverters.CreateModelStatusEnumNullable.g.cs │ ├── Ollama.JsonConverters.DoneReason.g.cs │ ├── Ollama.JsonConverters.DoneReasonEnum.g.cs │ ├── Ollama.JsonConverters.DoneReasonEnumNullable.g.cs │ ├── Ollama.JsonConverters.MessageRole.g.cs │ ├── Ollama.JsonConverters.MessageRoleNullable.g.cs │ ├── Ollama.JsonConverters.PullModelStatus.g.cs │ ├── Ollama.JsonConverters.PullModelStatusEnum.g.cs │ ├── Ollama.JsonConverters.PullModelStatusEnumNullable.g.cs │ ├── Ollama.JsonConverters.PushModelResponseStatus.g.cs │ ├── Ollama.JsonConverters.PushModelResponseStatusNullable.g.cs │ ├── Ollama.JsonConverters.ResponseFormat.g.cs │ ├── Ollama.JsonConverters.ResponseFormatEnum.g.cs │ ├── Ollama.JsonConverters.ResponseFormatEnumNullable.g.cs │ ├── Ollama.JsonConverters.ToolType.g.cs │ ├── Ollama.JsonConverters.ToolTypeNullable.g.cs │ ├── Ollama.JsonSerializerContextTypes.g.cs │ ├── Ollama.Models.Capability.g.cs │ ├── Ollama.Models.CopyModelRequest.Json.g.cs │ ├── Ollama.Models.CopyModelRequest.g.cs │ ├── Ollama.Models.CreateModelRequest.Json.g.cs │ ├── Ollama.Models.CreateModelRequest.g.cs │ ├── Ollama.Models.CreateModelResponse.Json.g.cs │ ├── Ollama.Models.CreateModelResponse.g.cs │ ├── Ollama.Models.CreateModelStatus.Json.g.cs │ ├── Ollama.Models.CreateModelStatus.g.cs │ ├── Ollama.Models.CreateModelStatusEnum.g.cs │ ├── Ollama.Models.DeleteModelRequest.Json.g.cs │ ├── Ollama.Models.DeleteModelRequest.g.cs │ ├── Ollama.Models.DoneReason.Json.g.cs │ ├── Ollama.Models.DoneReason.g.cs │ ├── Ollama.Models.DoneReasonEnum.g.cs │ ├── Ollama.Models.GenerateChatCompletionRequest.Json.g.cs │ ├── Ollama.Models.GenerateChatCompletionRequest.g.cs │ ├── Ollama.Models.GenerateChatCompletionResponse.Json.g.cs │ ├── Ollama.Models.GenerateChatCompletionResponse.g.cs │ ├── Ollama.Models.GenerateCompletionRequest.Json.g.cs │ ├── Ollama.Models.GenerateCompletionRequest.g.cs │ ├── Ollama.Models.GenerateCompletionResponse.Json.g.cs │ ├── Ollama.Models.GenerateCompletionResponse.g.cs │ ├── Ollama.Models.GenerateEmbeddingRequest.Json.g.cs │ ├── Ollama.Models.GenerateEmbeddingRequest.g.cs │ ├── Ollama.Models.GenerateEmbeddingResponse.Json.g.cs │ ├── Ollama.Models.GenerateEmbeddingResponse.g.cs │ ├── Ollama.Models.Message.Json.g.cs │ ├── Ollama.Models.Message.g.cs │ ├── Ollama.Models.MessageRole.g.cs │ ├── Ollama.Models.Model.Json.g.cs │ ├── Ollama.Models.Model.g.cs │ ├── Ollama.Models.ModelDetails.Json.g.cs │ ├── Ollama.Models.ModelDetails.g.cs │ ├── Ollama.Models.ModelInfo.Json.g.cs │ ├── Ollama.Models.ModelInfo.g.cs │ ├── Ollama.Models.ModelInfoProjectorInfo.Json.g.cs │ ├── Ollama.Models.ModelInfoProjectorInfo.g.cs │ ├── Ollama.Models.ModelInfoRequest.Json.g.cs │ ├── Ollama.Models.ModelInfoRequest.g.cs │ ├── Ollama.Models.ModelInformation.Json.g.cs │ ├── Ollama.Models.ModelInformation.g.cs │ ├── Ollama.Models.ModelsResponse.Json.g.cs │ ├── Ollama.Models.ModelsResponse.g.cs │ ├── Ollama.Models.ProcessModel.Json.g.cs │ ├── Ollama.Models.ProcessModel.g.cs │ ├── Ollama.Models.ProcessResponse.Json.g.cs │ ├── Ollama.Models.ProcessResponse.g.cs │ ├── Ollama.Models.PullModelRequest.Json.g.cs │ ├── Ollama.Models.PullModelRequest.g.cs │ ├── Ollama.Models.PullModelResponse.Json.g.cs │ ├── Ollama.Models.PullModelResponse.g.cs │ ├── Ollama.Models.PullModelStatus.Json.g.cs │ ├── Ollama.Models.PullModelStatus.g.cs │ ├── Ollama.Models.PullModelStatusEnum.g.cs │ ├── Ollama.Models.PushModelRequest.Json.g.cs │ ├── Ollama.Models.PushModelRequest.g.cs │ ├── Ollama.Models.PushModelResponse.Json.g.cs │ ├── Ollama.Models.PushModelResponse.g.cs │ ├── Ollama.Models.PushModelResponseStatus.g.cs │ ├── Ollama.Models.RequestOptions.Json.g.cs │ ├── Ollama.Models.RequestOptions.g.cs │ ├── Ollama.Models.ResponseFormat.Json.g.cs │ ├── Ollama.Models.ResponseFormat.g.cs │ ├── Ollama.Models.ResponseFormatEnum.g.cs │ ├── Ollama.Models.ResponseFormatEnum2.Json.g.cs │ ├── Ollama.Models.ResponseFormatEnum2.g.cs │ ├── Ollama.Models.Tensor.Json.g.cs │ ├── Ollama.Models.Tensor.g.cs │ ├── Ollama.Models.Tool.Json.g.cs │ ├── Ollama.Models.Tool.g.cs │ ├── Ollama.Models.ToolCall.Json.g.cs │ ├── Ollama.Models.ToolCall.g.cs │ ├── Ollama.Models.ToolCallFunction.Json.g.cs │ ├── Ollama.Models.ToolCallFunction.g.cs │ ├── Ollama.Models.ToolCallFunctionArgs.Json.g.cs │ ├── Ollama.Models.ToolCallFunctionArgs.g.cs │ ├── Ollama.Models.ToolFunction.Json.g.cs │ ├── Ollama.Models.ToolFunction.g.cs │ ├── Ollama.Models.ToolFunctionParams.Json.g.cs │ ├── Ollama.Models.ToolFunctionParams.g.cs │ ├── Ollama.Models.ToolType.g.cs │ ├── Ollama.Models.VersionResponse.Json.g.cs │ ├── Ollama.Models.VersionResponse.g.cs │ ├── Ollama.ModelsClient.CheckBlob.g.cs │ ├── Ollama.ModelsClient.CopyModel.g.cs │ ├── Ollama.ModelsClient.CreateBlob.g.cs │ ├── Ollama.ModelsClient.CreateModel.g.cs │ ├── Ollama.ModelsClient.DeleteModel.g.cs │ ├── Ollama.ModelsClient.ListModels.g.cs │ ├── Ollama.ModelsClient.ListRunningModels.g.cs │ ├── Ollama.ModelsClient.PullModel.g.cs │ ├── Ollama.ModelsClient.PushModel.g.cs │ ├── Ollama.ModelsClient.ShowModelInfo.g.cs │ ├── Ollama.ModelsClient.g.cs │ ├── Ollama.OllamaApiClient.GetVersion.g.cs │ ├── Ollama.OllamaApiClient.g.cs │ ├── Ollama.PathBuilder.g.cs │ └── Ollama.Polyfills.g.cs │ ├── JsonSerializerContextTypes.AdditionalTypes.cs │ ├── Message.cs │ ├── Ollama.csproj │ ├── OllamaApiClientExtensions.cs │ ├── PullModelResponseExtensions.cs │ ├── generate.sh │ └── openapi.yaml └── tests └── Ollama.IntegrationTests ├── Environment.cs ├── Ollama.IntegrationTests.csproj ├── Test.StructuredOutputInChat.cs ├── Tests.Chat.cs ├── Tests.Embeddings.cs ├── Tests.GetCompletion.cs ├── Tests.GetCompletionWithOptions.cs ├── Tests.ListModels.cs ├── Tests.PullModel.cs ├── Tests.ReaderLm.cs ├── Tests.Tools.cs ├── Tests.ToolsInChat.cs └── WeatherTools.cs /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/auto-merge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/.github/workflows/auto-merge.yml -------------------------------------------------------------------------------- /.github/workflows/auto-update.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/.github/workflows/auto-update.yml -------------------------------------------------------------------------------- /.github/workflows/dotnet.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/.github/workflows/dotnet.yml -------------------------------------------------------------------------------- /.github/workflows/mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/.github/workflows/mkdocs.yml -------------------------------------------------------------------------------- /.github/workflows/pull-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/.github/workflows/pull-request.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/.gitignore -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/CLAUDE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/LICENSE -------------------------------------------------------------------------------- /Ollama.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/Ollama.sln -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/README.md -------------------------------------------------------------------------------- /assets/nuget_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/assets/nuget_icon.png -------------------------------------------------------------------------------- /docs/css/extra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/docs/css/extra.css -------------------------------------------------------------------------------- /docs/media/icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/docs/media/icon128.png -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/global.json -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /src/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/Directory.Build.props -------------------------------------------------------------------------------- /src/helpers/FixOpenApiSpec/FixOpenApiSpec.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/helpers/FixOpenApiSpec/FixOpenApiSpec.csproj -------------------------------------------------------------------------------- /src/helpers/FixOpenApiSpec/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/helpers/FixOpenApiSpec/Program.cs -------------------------------------------------------------------------------- /src/helpers/GenerateDocs/GenerateDocs.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/helpers/GenerateDocs/GenerateDocs.csproj -------------------------------------------------------------------------------- /src/helpers/GenerateDocs/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/helpers/GenerateDocs/Program.cs -------------------------------------------------------------------------------- /src/helpers/TrimmingHelper/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/helpers/TrimmingHelper/Program.cs -------------------------------------------------------------------------------- /src/helpers/TrimmingHelper/TrimmingHelper.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/helpers/TrimmingHelper/TrimmingHelper.csproj -------------------------------------------------------------------------------- /src/key.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/key.snk -------------------------------------------------------------------------------- /src/libs/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Directory.Build.props -------------------------------------------------------------------------------- /src/libs/Ollama/Chat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Chat.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Extensions/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Extensions/StringExtensions.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/AnyOf.2.Json.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/AnyOf.2.Json.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/AnyOf.2.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/AnyOf.2.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/JsonConverters.UnixTimestamp.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/JsonConverters.UnixTimestamp.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama..JsonSerializerContext.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama..JsonSerializerContext.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.ChatClient.GenerateChatCompletion.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.ChatClient.GenerateChatCompletion.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.ChatClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.ChatClient.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.CompletionsClient.GenerateCompletion.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.CompletionsClient.GenerateCompletion.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.CompletionsClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.CompletionsClient.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.EmbeddingsClient.GenerateEmbedding.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.EmbeddingsClient.GenerateEmbedding.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.EmbeddingsClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.EmbeddingsClient.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.Exceptions.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.Exceptions.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.IChatClient.GenerateChatCompletion.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.IChatClient.GenerateChatCompletion.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.IChatClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.IChatClient.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.ICompletionsClient.GenerateCompletion.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.ICompletionsClient.GenerateCompletion.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.ICompletionsClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.ICompletionsClient.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.IEmbeddingsClient.GenerateEmbedding.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.IEmbeddingsClient.GenerateEmbedding.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.IEmbeddingsClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.IEmbeddingsClient.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.IModelsClient.CheckBlob.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.IModelsClient.CheckBlob.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.IModelsClient.CopyModel.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.IModelsClient.CopyModel.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.IModelsClient.CreateBlob.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.IModelsClient.CreateBlob.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.IModelsClient.CreateModel.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.IModelsClient.CreateModel.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.IModelsClient.DeleteModel.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.IModelsClient.DeleteModel.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.IModelsClient.ListModels.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.IModelsClient.ListModels.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.IModelsClient.ListRunningModels.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.IModelsClient.ListRunningModels.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.IModelsClient.PullModel.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.IModelsClient.PullModel.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.IModelsClient.PushModel.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.IModelsClient.PushModel.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.IModelsClient.ShowModelInfo.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.IModelsClient.ShowModelInfo.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.IModelsClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.IModelsClient.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.IOllamaApiClient.GetVersion.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.IOllamaApiClient.GetVersion.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.IOllamaApiClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.IOllamaApiClient.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.JsonConverters.AnyOf2.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.JsonConverters.AnyOf2.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.JsonConverters.Capability.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.JsonConverters.Capability.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.JsonConverters.CapabilityNullable.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.JsonConverters.CapabilityNullable.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.JsonConverters.CreateModelStatus.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.JsonConverters.CreateModelStatus.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.JsonConverters.CreateModelStatusEnum.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.JsonConverters.CreateModelStatusEnum.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.JsonConverters.CreateModelStatusEnumNullable.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.JsonConverters.CreateModelStatusEnumNullable.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.JsonConverters.DoneReason.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.JsonConverters.DoneReason.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.JsonConverters.DoneReasonEnum.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.JsonConverters.DoneReasonEnum.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.JsonConverters.DoneReasonEnumNullable.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.JsonConverters.DoneReasonEnumNullable.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.JsonConverters.MessageRole.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.JsonConverters.MessageRole.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.JsonConverters.MessageRoleNullable.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.JsonConverters.MessageRoleNullable.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.JsonConverters.PullModelStatus.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.JsonConverters.PullModelStatus.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.JsonConverters.PullModelStatusEnum.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.JsonConverters.PullModelStatusEnum.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.JsonConverters.PullModelStatusEnumNullable.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.JsonConverters.PullModelStatusEnumNullable.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.JsonConverters.PushModelResponseStatus.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.JsonConverters.PushModelResponseStatus.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.JsonConverters.PushModelResponseStatusNullable.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.JsonConverters.PushModelResponseStatusNullable.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.JsonConverters.ResponseFormat.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.JsonConverters.ResponseFormat.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.JsonConverters.ResponseFormatEnum.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.JsonConverters.ResponseFormatEnum.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.JsonConverters.ResponseFormatEnumNullable.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.JsonConverters.ResponseFormatEnumNullable.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.JsonConverters.ToolType.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.JsonConverters.ToolType.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.JsonConverters.ToolTypeNullable.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.JsonConverters.ToolTypeNullable.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.JsonSerializerContextTypes.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.JsonSerializerContextTypes.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.Models.Capability.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.Models.Capability.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.Models.CopyModelRequest.Json.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.Models.CopyModelRequest.Json.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.Models.CopyModelRequest.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.Models.CopyModelRequest.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.Models.CreateModelRequest.Json.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.Models.CreateModelRequest.Json.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.Models.CreateModelRequest.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.Models.CreateModelRequest.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.Models.CreateModelResponse.Json.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.Models.CreateModelResponse.Json.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.Models.CreateModelResponse.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.Models.CreateModelResponse.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.Models.CreateModelStatus.Json.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.Models.CreateModelStatus.Json.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.Models.CreateModelStatus.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.Models.CreateModelStatus.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.Models.CreateModelStatusEnum.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.Models.CreateModelStatusEnum.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.Models.DeleteModelRequest.Json.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.Models.DeleteModelRequest.Json.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.Models.DeleteModelRequest.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.Models.DeleteModelRequest.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.Models.DoneReason.Json.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.Models.DoneReason.Json.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.Models.DoneReason.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.Models.DoneReason.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.Models.DoneReasonEnum.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.Models.DoneReasonEnum.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.Models.GenerateChatCompletionRequest.Json.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.Models.GenerateChatCompletionRequest.Json.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.Models.GenerateChatCompletionRequest.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.Models.GenerateChatCompletionRequest.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.Models.GenerateChatCompletionResponse.Json.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.Models.GenerateChatCompletionResponse.Json.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.Models.GenerateChatCompletionResponse.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.Models.GenerateChatCompletionResponse.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.Models.GenerateCompletionRequest.Json.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.Models.GenerateCompletionRequest.Json.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.Models.GenerateCompletionRequest.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.Models.GenerateCompletionRequest.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.Models.GenerateCompletionResponse.Json.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.Models.GenerateCompletionResponse.Json.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.Models.GenerateCompletionResponse.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.Models.GenerateCompletionResponse.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.Models.GenerateEmbeddingRequest.Json.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.Models.GenerateEmbeddingRequest.Json.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.Models.GenerateEmbeddingRequest.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.Models.GenerateEmbeddingRequest.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.Models.GenerateEmbeddingResponse.Json.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.Models.GenerateEmbeddingResponse.Json.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.Models.GenerateEmbeddingResponse.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.Models.GenerateEmbeddingResponse.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.Models.Message.Json.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.Models.Message.Json.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.Models.Message.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.Models.Message.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.Models.MessageRole.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.Models.MessageRole.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.Models.Model.Json.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.Models.Model.Json.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.Models.Model.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.Models.Model.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.Models.ModelDetails.Json.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.Models.ModelDetails.Json.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.Models.ModelDetails.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.Models.ModelDetails.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.Models.ModelInfo.Json.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.Models.ModelInfo.Json.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.Models.ModelInfo.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.Models.ModelInfo.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.Models.ModelInfoProjectorInfo.Json.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.Models.ModelInfoProjectorInfo.Json.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.Models.ModelInfoProjectorInfo.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.Models.ModelInfoProjectorInfo.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.Models.ModelInfoRequest.Json.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.Models.ModelInfoRequest.Json.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.Models.ModelInfoRequest.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.Models.ModelInfoRequest.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.Models.ModelInformation.Json.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.Models.ModelInformation.Json.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.Models.ModelInformation.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.Models.ModelInformation.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.Models.ModelsResponse.Json.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.Models.ModelsResponse.Json.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.Models.ModelsResponse.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.Models.ModelsResponse.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.Models.ProcessModel.Json.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.Models.ProcessModel.Json.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.Models.ProcessModel.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.Models.ProcessModel.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.Models.ProcessResponse.Json.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.Models.ProcessResponse.Json.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.Models.ProcessResponse.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.Models.ProcessResponse.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.Models.PullModelRequest.Json.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.Models.PullModelRequest.Json.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.Models.PullModelRequest.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.Models.PullModelRequest.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.Models.PullModelResponse.Json.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.Models.PullModelResponse.Json.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.Models.PullModelResponse.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.Models.PullModelResponse.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.Models.PullModelStatus.Json.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.Models.PullModelStatus.Json.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.Models.PullModelStatus.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.Models.PullModelStatus.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.Models.PullModelStatusEnum.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.Models.PullModelStatusEnum.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.Models.PushModelRequest.Json.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.Models.PushModelRequest.Json.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.Models.PushModelRequest.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.Models.PushModelRequest.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.Models.PushModelResponse.Json.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.Models.PushModelResponse.Json.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.Models.PushModelResponse.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.Models.PushModelResponse.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.Models.PushModelResponseStatus.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.Models.PushModelResponseStatus.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.Models.RequestOptions.Json.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.Models.RequestOptions.Json.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.Models.RequestOptions.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.Models.RequestOptions.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.Models.ResponseFormat.Json.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.Models.ResponseFormat.Json.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.Models.ResponseFormat.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.Models.ResponseFormat.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.Models.ResponseFormatEnum.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.Models.ResponseFormatEnum.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.Models.ResponseFormatEnum2.Json.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.Models.ResponseFormatEnum2.Json.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.Models.ResponseFormatEnum2.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.Models.ResponseFormatEnum2.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.Models.Tensor.Json.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.Models.Tensor.Json.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.Models.Tensor.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.Models.Tensor.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.Models.Tool.Json.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.Models.Tool.Json.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.Models.Tool.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.Models.Tool.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.Models.ToolCall.Json.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.Models.ToolCall.Json.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.Models.ToolCall.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.Models.ToolCall.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.Models.ToolCallFunction.Json.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.Models.ToolCallFunction.Json.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.Models.ToolCallFunction.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.Models.ToolCallFunction.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.Models.ToolCallFunctionArgs.Json.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.Models.ToolCallFunctionArgs.Json.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.Models.ToolCallFunctionArgs.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.Models.ToolCallFunctionArgs.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.Models.ToolFunction.Json.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.Models.ToolFunction.Json.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.Models.ToolFunction.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.Models.ToolFunction.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.Models.ToolFunctionParams.Json.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.Models.ToolFunctionParams.Json.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.Models.ToolFunctionParams.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.Models.ToolFunctionParams.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.Models.ToolType.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.Models.ToolType.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.Models.VersionResponse.Json.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.Models.VersionResponse.Json.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.Models.VersionResponse.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.Models.VersionResponse.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.ModelsClient.CheckBlob.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.ModelsClient.CheckBlob.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.ModelsClient.CopyModel.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.ModelsClient.CopyModel.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.ModelsClient.CreateBlob.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.ModelsClient.CreateBlob.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.ModelsClient.CreateModel.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.ModelsClient.CreateModel.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.ModelsClient.DeleteModel.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.ModelsClient.DeleteModel.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.ModelsClient.ListModels.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.ModelsClient.ListModels.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.ModelsClient.ListRunningModels.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.ModelsClient.ListRunningModels.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.ModelsClient.PullModel.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.ModelsClient.PullModel.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.ModelsClient.PushModel.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.ModelsClient.PushModel.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.ModelsClient.ShowModelInfo.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.ModelsClient.ShowModelInfo.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.ModelsClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.ModelsClient.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.OllamaApiClient.GetVersion.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.OllamaApiClient.GetVersion.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.OllamaApiClient.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.OllamaApiClient.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.PathBuilder.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.PathBuilder.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Generated/Ollama.Polyfills.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Generated/Ollama.Polyfills.g.cs -------------------------------------------------------------------------------- /src/libs/Ollama/JsonSerializerContextTypes.AdditionalTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/JsonSerializerContextTypes.AdditionalTypes.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Message.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Message.cs -------------------------------------------------------------------------------- /src/libs/Ollama/Ollama.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/Ollama.csproj -------------------------------------------------------------------------------- /src/libs/Ollama/OllamaApiClientExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/OllamaApiClientExtensions.cs -------------------------------------------------------------------------------- /src/libs/Ollama/PullModelResponseExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/PullModelResponseExtensions.cs -------------------------------------------------------------------------------- /src/libs/Ollama/generate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/generate.sh -------------------------------------------------------------------------------- /src/libs/Ollama/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/libs/Ollama/openapi.yaml -------------------------------------------------------------------------------- /src/tests/Ollama.IntegrationTests/Environment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/tests/Ollama.IntegrationTests/Environment.cs -------------------------------------------------------------------------------- /src/tests/Ollama.IntegrationTests/Ollama.IntegrationTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/tests/Ollama.IntegrationTests/Ollama.IntegrationTests.csproj -------------------------------------------------------------------------------- /src/tests/Ollama.IntegrationTests/Test.StructuredOutputInChat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/tests/Ollama.IntegrationTests/Test.StructuredOutputInChat.cs -------------------------------------------------------------------------------- /src/tests/Ollama.IntegrationTests/Tests.Chat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/tests/Ollama.IntegrationTests/Tests.Chat.cs -------------------------------------------------------------------------------- /src/tests/Ollama.IntegrationTests/Tests.Embeddings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/tests/Ollama.IntegrationTests/Tests.Embeddings.cs -------------------------------------------------------------------------------- /src/tests/Ollama.IntegrationTests/Tests.GetCompletion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/tests/Ollama.IntegrationTests/Tests.GetCompletion.cs -------------------------------------------------------------------------------- /src/tests/Ollama.IntegrationTests/Tests.GetCompletionWithOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/tests/Ollama.IntegrationTests/Tests.GetCompletionWithOptions.cs -------------------------------------------------------------------------------- /src/tests/Ollama.IntegrationTests/Tests.ListModels.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/tests/Ollama.IntegrationTests/Tests.ListModels.cs -------------------------------------------------------------------------------- /src/tests/Ollama.IntegrationTests/Tests.PullModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/tests/Ollama.IntegrationTests/Tests.PullModel.cs -------------------------------------------------------------------------------- /src/tests/Ollama.IntegrationTests/Tests.ReaderLm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/tests/Ollama.IntegrationTests/Tests.ReaderLm.cs -------------------------------------------------------------------------------- /src/tests/Ollama.IntegrationTests/Tests.Tools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/tests/Ollama.IntegrationTests/Tests.Tools.cs -------------------------------------------------------------------------------- /src/tests/Ollama.IntegrationTests/Tests.ToolsInChat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/tests/Ollama.IntegrationTests/Tests.ToolsInChat.cs -------------------------------------------------------------------------------- /src/tests/Ollama.IntegrationTests/WeatherTools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryAGI/Ollama/HEAD/src/tests/Ollama.IntegrationTests/WeatherTools.cs --------------------------------------------------------------------------------