Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,20 @@ docker build -t langchain-chatbot .
docker run -d langchain-chatbot
```

### Poetry Setup
To manage dependencies and virtual environments, Langchain Chatbot uses Poetry.

1. Install Poetry by following the instructions on the [official poetry documentation](https://python-poetry.org/docs/#installation).
2. Initialize the project with Poetry to install dependencies:
```bash
poetry install
```
3. Create a `.env` file as per the existing instructions above.
4. Run the Langchain Chatbot using Poetry:
```bash
poetry run python main.py
```

# πŸ”§ Key Features

βœ… Credential Manager (OpenAI Keys)
Expand Down