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

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.

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
```