├── .github └── workflows │ ├── dotnet-build.yml │ └── dotnet-publish.yml ├── .gitignore ├── LICENSE.md ├── README.md ├── dotnet ├── .dockerignore ├── .gitignore ├── .idea │ ├── .gitignore │ ├── .idea.Codeblaze.SemanticKernel │ │ └── .idea │ │ │ ├── .gitignore │ │ │ ├── .name │ │ │ ├── encodings.xml │ │ │ ├── indexLayout.xml │ │ │ └── vcs.xml │ ├── encodings.xml │ ├── indexLayout.xml │ └── vcs.xml ├── Codeblaze.SemanticKernel.Api │ ├── Codeblaze.SemanticKernel.Api.csproj │ ├── Codeblaze.SemanticKernel.Api.http │ ├── Dockerfile │ ├── Program.cs │ ├── appsettings.Development.json │ └── appsettings.json ├── Codeblaze.SemanticKernel.Connectors.Memory.Neo4j │ ├── Codeblaze.SemanticKernel.Connectors.Memory.Neo4j.csproj │ ├── INeo4jQueryFactory.cs │ ├── Neo4jMemoryBuilderExtension.cs │ ├── Neo4jMemoryStore.cs │ └── README.md ├── Codeblaze.SemanticKernel.Connectors.Ollama │ ├── ChatCompletion │ │ ├── OllamaChatCompletionService.cs │ │ ├── OllamaChatRequestMessage.cs │ │ └── OllamaChatResponseMessage.cs │ ├── Codeblaze.SemanticKernel.Connectors.Ollama.csproj │ ├── Codeblaze.SemanticKernel.Connectors.Ollama.csproj.DotSettings │ ├── EmbeddingGeneration │ │ └── OllamaTextEmbeddingGeneration.cs │ ├── OllamaBase.cs │ ├── OllamaKernelBuilderExtensions.cs │ ├── OllamaMemoryBuilderExtensions.cs │ ├── OllamaPromptExecutionSettings.cs │ ├── OllamaResponseMessage.cs │ ├── README.md │ └── TextGenerationService │ │ └── OllamaTextGenerationService.cs ├── Codeblaze.SemanticKernel.Console │ ├── .gitignore │ ├── Codeblaze.SemanticKernel.Console.csproj │ ├── Dockerfile │ ├── Program.cs │ └── Services │ │ ├── KernelService.cs │ │ ├── NeoKernelService.cs │ │ └── NeoMemoryService.cs ├── Codeblaze.SemanticKernel.Plugins.Neo4j │ ├── Codeblaze.SemanticKernel.Plugins.Neo4j.csproj │ ├── Neo4jCypherGenPlugin.cs │ ├── Neo4jPluginBuilderExtension.cs │ └── README.md ├── Codeblaze.SemanticKernel.sln ├── Codeblaze.SemanticKernel.sln.DotSettings └── global.json ├── java └── .gitkeep └── python └── .gitkeep /.github/workflows/dotnet-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BLaZeKiLL/Codeblaze.SemanticKernel/HEAD/.github/workflows/dotnet-build.yml -------------------------------------------------------------------------------- /.github/workflows/dotnet-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BLaZeKiLL/Codeblaze.SemanticKernel/HEAD/.github/workflows/dotnet-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BLaZeKiLL/Codeblaze.SemanticKernel/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BLaZeKiLL/Codeblaze.SemanticKernel/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BLaZeKiLL/Codeblaze.SemanticKernel/HEAD/README.md -------------------------------------------------------------------------------- /dotnet/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BLaZeKiLL/Codeblaze.SemanticKernel/HEAD/dotnet/.dockerignore -------------------------------------------------------------------------------- /dotnet/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BLaZeKiLL/Codeblaze.SemanticKernel/HEAD/dotnet/.gitignore -------------------------------------------------------------------------------- /dotnet/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BLaZeKiLL/Codeblaze.SemanticKernel/HEAD/dotnet/.idea/.gitignore -------------------------------------------------------------------------------- /dotnet/.idea/.idea.Codeblaze.SemanticKernel/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BLaZeKiLL/Codeblaze.SemanticKernel/HEAD/dotnet/.idea/.idea.Codeblaze.SemanticKernel/.idea/.gitignore -------------------------------------------------------------------------------- /dotnet/.idea/.idea.Codeblaze.SemanticKernel/.idea/.name: -------------------------------------------------------------------------------- 1 | Codeblaze.SemanticKernel -------------------------------------------------------------------------------- /dotnet/.idea/.idea.Codeblaze.SemanticKernel/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BLaZeKiLL/Codeblaze.SemanticKernel/HEAD/dotnet/.idea/.idea.Codeblaze.SemanticKernel/.idea/encodings.xml -------------------------------------------------------------------------------- /dotnet/.idea/.idea.Codeblaze.SemanticKernel/.idea/indexLayout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BLaZeKiLL/Codeblaze.SemanticKernel/HEAD/dotnet/.idea/.idea.Codeblaze.SemanticKernel/.idea/indexLayout.xml -------------------------------------------------------------------------------- /dotnet/.idea/.idea.Codeblaze.SemanticKernel/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BLaZeKiLL/Codeblaze.SemanticKernel/HEAD/dotnet/.idea/.idea.Codeblaze.SemanticKernel/.idea/vcs.xml -------------------------------------------------------------------------------- /dotnet/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BLaZeKiLL/Codeblaze.SemanticKernel/HEAD/dotnet/.idea/encodings.xml -------------------------------------------------------------------------------- /dotnet/.idea/indexLayout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BLaZeKiLL/Codeblaze.SemanticKernel/HEAD/dotnet/.idea/indexLayout.xml -------------------------------------------------------------------------------- /dotnet/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BLaZeKiLL/Codeblaze.SemanticKernel/HEAD/dotnet/.idea/vcs.xml -------------------------------------------------------------------------------- /dotnet/Codeblaze.SemanticKernel.Api/Codeblaze.SemanticKernel.Api.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BLaZeKiLL/Codeblaze.SemanticKernel/HEAD/dotnet/Codeblaze.SemanticKernel.Api/Codeblaze.SemanticKernel.Api.csproj -------------------------------------------------------------------------------- /dotnet/Codeblaze.SemanticKernel.Api/Codeblaze.SemanticKernel.Api.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BLaZeKiLL/Codeblaze.SemanticKernel/HEAD/dotnet/Codeblaze.SemanticKernel.Api/Codeblaze.SemanticKernel.Api.http -------------------------------------------------------------------------------- /dotnet/Codeblaze.SemanticKernel.Api/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BLaZeKiLL/Codeblaze.SemanticKernel/HEAD/dotnet/Codeblaze.SemanticKernel.Api/Dockerfile -------------------------------------------------------------------------------- /dotnet/Codeblaze.SemanticKernel.Api/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BLaZeKiLL/Codeblaze.SemanticKernel/HEAD/dotnet/Codeblaze.SemanticKernel.Api/Program.cs -------------------------------------------------------------------------------- /dotnet/Codeblaze.SemanticKernel.Api/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BLaZeKiLL/Codeblaze.SemanticKernel/HEAD/dotnet/Codeblaze.SemanticKernel.Api/appsettings.Development.json -------------------------------------------------------------------------------- /dotnet/Codeblaze.SemanticKernel.Api/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BLaZeKiLL/Codeblaze.SemanticKernel/HEAD/dotnet/Codeblaze.SemanticKernel.Api/appsettings.json -------------------------------------------------------------------------------- /dotnet/Codeblaze.SemanticKernel.Connectors.Memory.Neo4j/Codeblaze.SemanticKernel.Connectors.Memory.Neo4j.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BLaZeKiLL/Codeblaze.SemanticKernel/HEAD/dotnet/Codeblaze.SemanticKernel.Connectors.Memory.Neo4j/Codeblaze.SemanticKernel.Connectors.Memory.Neo4j.csproj -------------------------------------------------------------------------------- /dotnet/Codeblaze.SemanticKernel.Connectors.Memory.Neo4j/INeo4jQueryFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BLaZeKiLL/Codeblaze.SemanticKernel/HEAD/dotnet/Codeblaze.SemanticKernel.Connectors.Memory.Neo4j/INeo4jQueryFactory.cs -------------------------------------------------------------------------------- /dotnet/Codeblaze.SemanticKernel.Connectors.Memory.Neo4j/Neo4jMemoryBuilderExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BLaZeKiLL/Codeblaze.SemanticKernel/HEAD/dotnet/Codeblaze.SemanticKernel.Connectors.Memory.Neo4j/Neo4jMemoryBuilderExtension.cs -------------------------------------------------------------------------------- /dotnet/Codeblaze.SemanticKernel.Connectors.Memory.Neo4j/Neo4jMemoryStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BLaZeKiLL/Codeblaze.SemanticKernel/HEAD/dotnet/Codeblaze.SemanticKernel.Connectors.Memory.Neo4j/Neo4jMemoryStore.cs -------------------------------------------------------------------------------- /dotnet/Codeblaze.SemanticKernel.Connectors.Memory.Neo4j/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BLaZeKiLL/Codeblaze.SemanticKernel/HEAD/dotnet/Codeblaze.SemanticKernel.Connectors.Memory.Neo4j/README.md -------------------------------------------------------------------------------- /dotnet/Codeblaze.SemanticKernel.Connectors.Ollama/ChatCompletion/OllamaChatCompletionService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BLaZeKiLL/Codeblaze.SemanticKernel/HEAD/dotnet/Codeblaze.SemanticKernel.Connectors.Ollama/ChatCompletion/OllamaChatCompletionService.cs -------------------------------------------------------------------------------- /dotnet/Codeblaze.SemanticKernel.Connectors.Ollama/ChatCompletion/OllamaChatRequestMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BLaZeKiLL/Codeblaze.SemanticKernel/HEAD/dotnet/Codeblaze.SemanticKernel.Connectors.Ollama/ChatCompletion/OllamaChatRequestMessage.cs -------------------------------------------------------------------------------- /dotnet/Codeblaze.SemanticKernel.Connectors.Ollama/ChatCompletion/OllamaChatResponseMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BLaZeKiLL/Codeblaze.SemanticKernel/HEAD/dotnet/Codeblaze.SemanticKernel.Connectors.Ollama/ChatCompletion/OllamaChatResponseMessage.cs -------------------------------------------------------------------------------- /dotnet/Codeblaze.SemanticKernel.Connectors.Ollama/Codeblaze.SemanticKernel.Connectors.Ollama.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BLaZeKiLL/Codeblaze.SemanticKernel/HEAD/dotnet/Codeblaze.SemanticKernel.Connectors.Ollama/Codeblaze.SemanticKernel.Connectors.Ollama.csproj -------------------------------------------------------------------------------- /dotnet/Codeblaze.SemanticKernel.Connectors.Ollama/Codeblaze.SemanticKernel.Connectors.Ollama.csproj.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BLaZeKiLL/Codeblaze.SemanticKernel/HEAD/dotnet/Codeblaze.SemanticKernel.Connectors.Ollama/Codeblaze.SemanticKernel.Connectors.Ollama.csproj.DotSettings -------------------------------------------------------------------------------- /dotnet/Codeblaze.SemanticKernel.Connectors.Ollama/EmbeddingGeneration/OllamaTextEmbeddingGeneration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BLaZeKiLL/Codeblaze.SemanticKernel/HEAD/dotnet/Codeblaze.SemanticKernel.Connectors.Ollama/EmbeddingGeneration/OllamaTextEmbeddingGeneration.cs -------------------------------------------------------------------------------- /dotnet/Codeblaze.SemanticKernel.Connectors.Ollama/OllamaBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BLaZeKiLL/Codeblaze.SemanticKernel/HEAD/dotnet/Codeblaze.SemanticKernel.Connectors.Ollama/OllamaBase.cs -------------------------------------------------------------------------------- /dotnet/Codeblaze.SemanticKernel.Connectors.Ollama/OllamaKernelBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BLaZeKiLL/Codeblaze.SemanticKernel/HEAD/dotnet/Codeblaze.SemanticKernel.Connectors.Ollama/OllamaKernelBuilderExtensions.cs -------------------------------------------------------------------------------- /dotnet/Codeblaze.SemanticKernel.Connectors.Ollama/OllamaMemoryBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BLaZeKiLL/Codeblaze.SemanticKernel/HEAD/dotnet/Codeblaze.SemanticKernel.Connectors.Ollama/OllamaMemoryBuilderExtensions.cs -------------------------------------------------------------------------------- /dotnet/Codeblaze.SemanticKernel.Connectors.Ollama/OllamaPromptExecutionSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BLaZeKiLL/Codeblaze.SemanticKernel/HEAD/dotnet/Codeblaze.SemanticKernel.Connectors.Ollama/OllamaPromptExecutionSettings.cs -------------------------------------------------------------------------------- /dotnet/Codeblaze.SemanticKernel.Connectors.Ollama/OllamaResponseMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BLaZeKiLL/Codeblaze.SemanticKernel/HEAD/dotnet/Codeblaze.SemanticKernel.Connectors.Ollama/OllamaResponseMessage.cs -------------------------------------------------------------------------------- /dotnet/Codeblaze.SemanticKernel.Connectors.Ollama/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BLaZeKiLL/Codeblaze.SemanticKernel/HEAD/dotnet/Codeblaze.SemanticKernel.Connectors.Ollama/README.md -------------------------------------------------------------------------------- /dotnet/Codeblaze.SemanticKernel.Connectors.Ollama/TextGenerationService/OllamaTextGenerationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BLaZeKiLL/Codeblaze.SemanticKernel/HEAD/dotnet/Codeblaze.SemanticKernel.Connectors.Ollama/TextGenerationService/OllamaTextGenerationService.cs -------------------------------------------------------------------------------- /dotnet/Codeblaze.SemanticKernel.Console/.gitignore: -------------------------------------------------------------------------------- 1 | appsettings.json 2 | -------------------------------------------------------------------------------- /dotnet/Codeblaze.SemanticKernel.Console/Codeblaze.SemanticKernel.Console.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BLaZeKiLL/Codeblaze.SemanticKernel/HEAD/dotnet/Codeblaze.SemanticKernel.Console/Codeblaze.SemanticKernel.Console.csproj -------------------------------------------------------------------------------- /dotnet/Codeblaze.SemanticKernel.Console/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BLaZeKiLL/Codeblaze.SemanticKernel/HEAD/dotnet/Codeblaze.SemanticKernel.Console/Dockerfile -------------------------------------------------------------------------------- /dotnet/Codeblaze.SemanticKernel.Console/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BLaZeKiLL/Codeblaze.SemanticKernel/HEAD/dotnet/Codeblaze.SemanticKernel.Console/Program.cs -------------------------------------------------------------------------------- /dotnet/Codeblaze.SemanticKernel.Console/Services/KernelService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BLaZeKiLL/Codeblaze.SemanticKernel/HEAD/dotnet/Codeblaze.SemanticKernel.Console/Services/KernelService.cs -------------------------------------------------------------------------------- /dotnet/Codeblaze.SemanticKernel.Console/Services/NeoKernelService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BLaZeKiLL/Codeblaze.SemanticKernel/HEAD/dotnet/Codeblaze.SemanticKernel.Console/Services/NeoKernelService.cs -------------------------------------------------------------------------------- /dotnet/Codeblaze.SemanticKernel.Console/Services/NeoMemoryService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BLaZeKiLL/Codeblaze.SemanticKernel/HEAD/dotnet/Codeblaze.SemanticKernel.Console/Services/NeoMemoryService.cs -------------------------------------------------------------------------------- /dotnet/Codeblaze.SemanticKernel.Plugins.Neo4j/Codeblaze.SemanticKernel.Plugins.Neo4j.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BLaZeKiLL/Codeblaze.SemanticKernel/HEAD/dotnet/Codeblaze.SemanticKernel.Plugins.Neo4j/Codeblaze.SemanticKernel.Plugins.Neo4j.csproj -------------------------------------------------------------------------------- /dotnet/Codeblaze.SemanticKernel.Plugins.Neo4j/Neo4jCypherGenPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BLaZeKiLL/Codeblaze.SemanticKernel/HEAD/dotnet/Codeblaze.SemanticKernel.Plugins.Neo4j/Neo4jCypherGenPlugin.cs -------------------------------------------------------------------------------- /dotnet/Codeblaze.SemanticKernel.Plugins.Neo4j/Neo4jPluginBuilderExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BLaZeKiLL/Codeblaze.SemanticKernel/HEAD/dotnet/Codeblaze.SemanticKernel.Plugins.Neo4j/Neo4jPluginBuilderExtension.cs -------------------------------------------------------------------------------- /dotnet/Codeblaze.SemanticKernel.Plugins.Neo4j/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BLaZeKiLL/Codeblaze.SemanticKernel/HEAD/dotnet/Codeblaze.SemanticKernel.Plugins.Neo4j/README.md -------------------------------------------------------------------------------- /dotnet/Codeblaze.SemanticKernel.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BLaZeKiLL/Codeblaze.SemanticKernel/HEAD/dotnet/Codeblaze.SemanticKernel.sln -------------------------------------------------------------------------------- /dotnet/Codeblaze.SemanticKernel.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BLaZeKiLL/Codeblaze.SemanticKernel/HEAD/dotnet/Codeblaze.SemanticKernel.sln.DotSettings -------------------------------------------------------------------------------- /dotnet/global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BLaZeKiLL/Codeblaze.SemanticKernel/HEAD/dotnet/global.json -------------------------------------------------------------------------------- /java/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------