Skip to content

BeneHTWG/ChainOfThoughtPublic

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ChainOfThought

chatbot for demonstrating the capabilities of Chain of Thought, enabling a selection of prompts containing different approaches and different tasks.

Setup

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

  1. sign up
  2. generate Key
  3. insert Key here

Running the Chatbot

in the Terminal:

python3 src/main.py

with Streamlit:

streamlit run src/main.py

VS Code Addition

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"
    ]
}

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages