Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/raulpe7eira/langchain
- Owner: raulpe7eira
- Created: 2024-11-20T05:31:17.000Z (about 2 months ago)
- Default Branch: main
- Last Pushed: 2024-11-20T18:02:55.000Z (about 2 months ago)
- Last Synced: 2024-12-02T17:56:42.203Z (about 1 month ago)
- Topics: ai, alura, course, langchain, learn, llm, openai, python
- Language: Python
- Homepage:
- Size: 604 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```