Skip to content

Latest commit

 

History

History
106 lines (78 loc) · 3.42 KB

README.md

File metadata and controls

106 lines (78 loc) · 3.42 KB

Streamlit-MultiChat

Many LLMs - One Streamlit Web App

Use many large language models: OpenAI / Anthropic / Open / Local LLM's with one Streamlit Web App.

Features

  • LLM Support
    • Ollama
    • OpenAI - GPT 3.5 / GPT4 / GPT4o / GPT4o-mini
    • Anthropic - Claude 3 (Opus / Sonnet) / Claude 3.5
    • Groq API

Getting Started

Clone and Run 👇  

Try the Project quickly with Python Venv's:

git clone https://github.com/JAlcocerT/Streamlit-MultiChat
python -m venv multichat_venv #create the venv

multichat_venv\Scripts\activate #activate venv (windows)
source multichat_venv/bin/activate #(linux)
pip install -r requirements.txt #all at once
streamlit run Z_multichat.py
  • Make sure to have Ollama ready and running your desired model!
  • Prepare the API Keys in any of:
    • .streamlit/secrets.toml
    • As Environment Variables
      • Linux - export OPENAI_API_KEY="YOUR_API_KEY"
      • CMD - set OPENAI_API_KEY=YOUR_API_KEY
      • PS - $env:OPENAI_API_KEY="YOUR_API_KEY"
      • In the Docker-Compose
    • Through the Streamlit UI
MultiChat

Chat with Several Models with Streamlit

docker pull ghcr.io/jalcocert/streamlit-multichat:latest #x86/ARM64

Thanks to ❤️

Projects I got inspiration from / consolidated in this App were tested here: ./Z_Tests

Check the Projects 👈