Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/raulpe7eira/langchain

LangChain and Python: Building Tools with LLM OpenAI course by Alura
https://github.com/raulpe7eira/langchain

ai alura course langchain learn llm openai python

Last synced: about 1 month ago
JSON representation

LangChain and Python: Building Tools with LLM OpenAI course by Alura

Awesome Lists containing this project

README

        

# OpenAI: LangChain

This code corresponds to the [LangChain and Python: Building Tools with LLM OpenAI](https://www.alura.com.br/curso-online-langchain-python-ferramentas-llm-openai) course by [Alura](https://www.alura.com.br).

## Environment Configuration

### Creating and Activating the Virtual Environment

**Windows:**
```bash
python -m venv venv-langchain
venv-langchain\Scripts\activate
```

**Mac/Linux:**
```bash
python3 -m venv venv-langchain
source venv-langchain/bin/activate
```

### Installation of Libraries

```bash
pip install -r requirements.txt
```