Skip to content

Latest commit

 

History

History
17 lines (14 loc) · 416 Bytes

README.md

File metadata and controls

17 lines (14 loc) · 416 Bytes

terminal-chatbot-langchain

A simple console chatbot made with Langchaing

Installation

Get your OpenAI API key from https://openai.com/ and set it as an environment variable

Install pyenv using homebrew

$ brew install pyenv

Setup a virtual Python env using pyenv

$ pyenv install 3.11.4 # if necessary
$ pyenv virtualenv 3.11.4 $(cat .python-version)
$ pip install -r requirements.txt