https://github.com/lizardcat/langchain-agent-experiments
Sandbox repo to prototype and test LangChain-based AI agents using tools, prompts, and model integrations.
https://github.com/lizardcat/langchain-agent-experiments
jupyter-notebook langchain llama3 openai-api python
Last synced: about 2 months ago
JSON representation
Sandbox repo to prototype and test LangChain-based AI agents using tools, prompts, and model integrations.
- Host: GitHub
- URL: https://github.com/lizardcat/langchain-agent-experiments
- Owner: lizardcat
- Created: 2025-06-06T14:03:22.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-08-03T17:38:49.000Z (11 months ago)
- Last Synced: 2026-04-30T16:34:33.304Z (about 2 months ago)
- Topics: jupyter-notebook, langchain, llama3, openai-api, python
- Language: Jupyter Notebook
- Homepage:
- Size: 296 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# LangChain Agent Experiments
This repository is for experimenting with LangChain features related to AI agent creation.
It includes code samples demonstrating prompt templates, tool usage, agent types, output parsers, and integration with OpenAI models.
## Main Requirements
- Python 3.9+
- LangChain
- OpenAI API
## Setup
```bash
pip install -r requirements.txt
```
## Before running any agents, create a .env file with:
```bash
OPENAI_API_KEY=your_key_here
```