chatbot for demonstrating the capabilities of Chain of Thought, enabling a selection of prompts containing different approaches and different tasks.
create a virtual environment and install all dependencies:
python3 setup.py
activate the virtual environment:
source venv/bin/activate
get API Key to enable Usage of server based LLMs from GroqCloud
- sign up
- generate Key
- insert Key here
in the Terminal:
python3 src/main.py
with Streamlit:
streamlit run src/main.py
when using VS Code, streamlit can be run in Debugmode.
Therefore, add this configuration to launch.json
:
{
"name": "Python:Streamlit",
"type": "debugpy",
"request": "launch",
"module": "streamlit",
"args": [
"run",
"src/main.py"
]
}