Skip to content

Commit

Permalink
Ollama client
Browse files Browse the repository at this point in the history
  • Loading branch information
awaescher committed Oct 16, 2023
1 parent 12972a0 commit bb800bb
Show file tree
Hide file tree
Showing 14 changed files with 536 additions and 301 deletions.
8 changes: 8 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"python.analysis.extraPaths": [
"c:\\Users\\awaes_000\\.vscode\\extensions\\continue.continue-0.0.412-win32-x64"
],
"python.autoComplete.extraPaths": [
"c:\\Users\\awaes_000\\.vscode\\extensions\\continue.continue-0.0.412-win32-x64"
]
}
181 changes: 0 additions & 181 deletions OllamaApiClient.cs

This file was deleted.

56 changes: 31 additions & 25 deletions FluentOllama.sln → OllamaSharp.sln
Original file line number Diff line number Diff line change
@@ -1,25 +1,31 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.5.002.0
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FluentOllama", "FluentOllama.csproj", "{0194817F-1B9C-4D44-8960-1A0DC92D9D22}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{0194817F-1B9C-4D44-8960-1A0DC92D9D22}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{0194817F-1B9C-4D44-8960-1A0DC92D9D22}.Debug|Any CPU.Build.0 = Debug|Any CPU
{0194817F-1B9C-4D44-8960-1A0DC92D9D22}.Release|Any CPU.ActiveCfg = Release|Any CPU
{0194817F-1B9C-4D44-8960-1A0DC92D9D22}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {0414F037-5EC9-4433-81EF-1917D0405E79}
EndGlobalSection
EndGlobal

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.5.002.0
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "OllamaSharp", "src\OllamaSharp.csproj", "{0194817F-1B9C-4D44-8960-1A0DC92D9D22}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "test", "test\Tests.csproj", "{1527F300-40C7-49EB-A6FD-D21B20BA5BC1}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{0194817F-1B9C-4D44-8960-1A0DC92D9D22}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{0194817F-1B9C-4D44-8960-1A0DC92D9D22}.Debug|Any CPU.Build.0 = Debug|Any CPU
{0194817F-1B9C-4D44-8960-1A0DC92D9D22}.Release|Any CPU.ActiveCfg = Release|Any CPU
{0194817F-1B9C-4D44-8960-1A0DC92D9D22}.Release|Any CPU.Build.0 = Release|Any CPU
{1527F300-40C7-49EB-A6FD-D21B20BA5BC1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{1527F300-40C7-49EB-A6FD-D21B20BA5BC1}.Debug|Any CPU.Build.0 = Debug|Any CPU
{1527F300-40C7-49EB-A6FD-D21B20BA5BC1}.Release|Any CPU.ActiveCfg = Release|Any CPU
{1527F300-40C7-49EB-A6FD-D21B20BA5BC1}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {0414F037-5EC9-4433-81EF-1917D0405E79}
EndGlobalSection
EndGlobal
30 changes: 0 additions & 30 deletions Program.cs

This file was deleted.

4 changes: 4 additions & 0 deletions src/IResponseStreamer.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
public interface IResponseStreamer
{
void Stream(StreamedResponse response);
}
Loading

0 comments on commit bb800bb

Please sign in to comment.