Full stack web app to interact with large language models, currently in progress.
This is how to install it:
python -m venv <multiAgentSystem>Or you can just use this if you don't want to create a new folder:
python -m venv .source bin/activate<multiAgentSystem>\Scripts\Activate.ps1pip install -r requirements.txtollama serveSet the model using an environment variable before running the application:
# Example with llama
export MODEL_NAME=ollama:llama3:8b
python chat_app.py
# Example with deepseek
export MODEL_NAME=ollama:deepseek-r1:8b
python chat_app.pyAvailable model formats:
ollama:<model-name>openai:<model-name>anthropic:<model-name>
python chat_app.pyAfter that you can access the application going to your browser with:
localhost:8000