An open API service indexing awesome lists of open source software.

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

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/)