Skip to content

CarlosR759/multiAgentSystem

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

39 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Local Agent

Preview

Full stack web app to interact with large language models, currently in progress.

This is how to install it:

First create Python virt env:

python -m venv <multiAgentSystem>

Or you can just use this if you don't want to create a new folder:

python -m venv .

Go to your virt env in your "multiAgentSytem" folder:

Unix

source bin/activate

Windows with PS:

<multiAgentSystem>\Scripts\Activate.ps1

Then use the requirements.txt to download from pip the packages needed:

pip install -r requirements.txt

launch Ollama service if you haven't by command line:

ollama serve

Configure the LLM model

Set 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.py

Available model formats:

  • ollama:<model-name>
  • openai:<model-name>
  • anthropic:<model-name>

Then Run the python script

python chat_app.py

After that you can access the application going to your browser with:

localhost:8000

About

Full stack web app to interact with large language models.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors