Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/kvdomingo/genai-lab

GenAI playground maximizing the use of open-source software and models
https://github.com/kvdomingo/genai-lab

chromadb dagster langchain nvidia-cuda ollama openai python

Last synced: 19 days ago
JSON representation

GenAI playground maximizing the use of open-source software and models

Awesome Lists containing this project

README

        

# GenAI Lab

## Prerequisites

- [ ] [Mise](https://mise.jdx.dev)
- [ ] Docker
- [ ] Recent graphics drivers + CUDA support

## Running locally

```shell
# Install prerequisites
mise install

# Enter Poetry shell
poetry shell

# Start the Ollama backend and Chroma vector database
task

# Run the chatbot
python -m vanilla
```

The chatbot uses the `llama3.2` (3B) model by default. To change the model, get the model name from
the Ollama [models](https://ollama.com/library) list and pass it to the `-m`/`--model` argument.

```shell
python -m vanilla -- --model gemma2
```