/Data-Chat

Streamlit App to Chat Over Custom Data

Primary LanguagePython

Data-Chat

Chat over custom data

<style> a { text-decoration: none; /* This removes underline from links */ } </style>
Code License GH Actions Workflow Mantained Python Version

Tools to chat with our Data

python -m venv properties_venv #create the venv | python3 if you are on linux

properties_venv\Scripts\activate #activate venv (windows)
source properties_venv/bin/activate #(linux)

Set the credentials:

export GROQ_API_KEY=YOUR_API_KEY
$env:GROQ_API_KEY="YOUR_API_KEY"
set GROQ_API_KEY=YOUR_API_KEY

export OPENAI_API_KEY=YOUR_API_KEY
$env:OPENAI_API_KEY="YOUR_API_KEY"
set OPENAI_API_KEY=YOUR_API_KEY

export ANTHROPIC_API_KEY=YOUR_API_KEY
$env:ANTHROPIC_API_KEY="YOUR_API_KEY"
set ANTHROPIC_API_KEY=YOUR_API_KEY