https://github.com/tortillazhawaii/chatonator
Semantic Kernel demo program using Ollama
https://github.com/tortillazhawaii/chatonator
csharp langchain llm ollama semantic-kernel
Last synced: 3 months ago
JSON representation
Semantic Kernel demo program using Ollama
- Host: GitHub
- URL: https://github.com/tortillazhawaii/chatonator
- Owner: TortillaZHawaii
- Created: 2023-12-02T15:43:38.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-12-02T15:51:16.000Z (over 2 years ago)
- Last Synced: 2025-03-27T21:36:53.928Z (over 1 year ago)
- Topics: csharp, langchain, llm, ollama, semantic-kernel
- Language: C#
- Homepage:
- Size: 5.86 KB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Chatonator
Repo for testing Semantic Kernel C#.
Connectors.AI.Ollama is a simple library that provides a way to use free Ollama services instead of paid OpenAI services.
Ollama must be run before running the demo by using the following command:
```bash
ollama serve
```
I am using `mistral:7b` model for the demo. The model must be installed before running the demo by using the following command:
```bash
ollama pull mistral:7b
```
## Useful links
- [Ollama](https://ollama.ai/)
- [Semantic Kernel repo](https://github.com/microsoft/semantic-kernel)
- [Semantic Kernel docs](https://learn.microsoft.com/en-us/semantic-kernel/overview/)
- [langchain - more popular Semantic Kernel alternative](https://www.langchain.com/)