https://github.com/masamallow/langchain-tutorials
Hands-on tutorials for Official LangChain.
https://github.com/masamallow/langchain-tutorials
chatbot genai genai-chatbot langchain llm llm-chatbot openai tutorial
Last synced: 7 months ago
JSON representation
Hands-on tutorials for Official LangChain.
- Host: GitHub
- URL: https://github.com/masamallow/langchain-tutorials
- Owner: masamallow
- Created: 2024-10-06T14:28:29.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-12-06T18:46:38.000Z (10 months ago)
- Last Synced: 2025-01-31T11:14:22.546Z (8 months ago)
- Topics: chatbot, genai, genai-chatbot, langchain, llm, llm-chatbot, openai, tutorial
- Language: Jupyter Notebook
- Homepage:
- Size: 291 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Hands-on LangChain Official Tutorials
## References
[Tutorials \| 🦜️🔗 LangChain](https://python.langchain.com/docs/tutorials/)
## Setup
Installed uv by using pipx because uv is used as a generic tool across environments.
```shell
pipx install uv
``````shell
uv sync
```## For Use LLM
`./notebook/.env`
```
LANGCHAIN_API_KEY=
OPENAI_API_KEY=
```## JetBrains Env Setup
- `Settings | Languages & Frameworks | Jupyter | Jupyter Servers`
- Python interpreter: `./.venv/bin/python`
- Command line arguments:
```
jupyter lab --no-browser --notebook-dir=./notebooks
```