Metadata-Version: 2.4
Name: gestell-langchain
Version: 0.1.1
Summary: Gestell's Langchain Integration
Author-email: Chris Cates <hello@chriscates.ca>
License: MIT
Project-URL: Homepage, https://github.com/Gestell-AI/langchain
Project-URL: Issues, https://github.com/Gestell-AI/langchain/issues
Keywords: gestell,langchain,search,tools
Requires-Python: >=3.11
Description-Content-Type: text/markdown
Requires-Dist: gestell>=1.3.0
Requires-Dist: langchain>=0.3
Requires-Dist: langchain-community>=0.3.0

# Gestell's Langchain Integration

![license](https://img.shields.io/badge/license-MIT-blue)
![python-version](https://img.shields.io/badge/python-3-blue)
![version](https://img.shields.io/badge/version-0.1.1-blue)
[![Coverage Status](https://coveralls.io/repos/github/Gestell-AI/langchain/badge.svg?branch=master)](https://coveralls.io/github/Gestell-AI/langchain?branch=master)
[![CircleCI](https://dl.circleci.com/status-badge/img/circleci/7sUmZuDYQ6cd8WbCiCCnfR/EEFWrv1TJyPmvSnGT7iHCV/tree/main.svg?style=svg)](https://dl.circleci.com/status-badge/redirect/circleci/7sUmZuDYQ6cd8WbCiCCnfR/EEFWrv1TJyPmvSnGT7iHCV/tree/main)

![Preview](./preview.gif)

Query and prompt your `gestell` collections with `langchain`

## Quick Start

Step 1: Install the langchain integration package:

```bash
pip install gestell-langchain
uv add gestell-langchain
```

Step 2: Integrate it with your agent:

```python
from langchain_openai import ChatOpenAI
from langgraph.prebuilt import create_react_agent
from langchain_gestell import GestellSearchTool, GestellPromptTool

llm = ChatOpenAI()

agent = create_react_agent(
    model=llm,
    tools=[
      # Add api_key and collection_id if not in your env
      GestellSearchTool(api_key="... OPTIONAL", collection_id="... OPTIONAL"),
      GestellPromptTool()
    ],
)

```

You can view a more comprehensive demo [here](./examples/chat.py).

Open an issue if you would like more comprehensive demos or need clarity on how things work.

View the [CHANGELOG](./CHANGELOG.md) to review updates to the library.
