The notebooks in this repo are described in the following series of blog posts:
- Mastering Structured Output in LLMs 1: JSON output with LangChain
- Mastering Structured Output in LLMs 2: Revisiting LangChain and JSON
- Mastering Structured Output in LLMs 3: LangChain and XML
This project uses Poetry for dependency management. Follow these steps to get started:
- Install Poetry if you haven't already:
curl -sSL https://install.python-poetry.org | python3 -
- Clone this repository and navigate to the project directory:
git clone git@github.com:adocherty/langchain-structured-output-evaluation.git
cd langchain-structured-output-evaluation
- Create a virtual environment and install dependencies:
poetry install
- Activate the virtual environment:
poetry shell
- Launch Jupyter to run the notebooks:
jupyter notebook
These examples can be run on Binder:
See index.ipynb
for a description and link to the notebooks.
httpx has been fixed to version 0.27.2 to avoid a bug due to changed parameters https://community.openai.com/t/error-with-openai-1-56-0-client-init-got-an-unexpected-keyword-argument-proxies/1040332
- Python 3.12
- Poetry for dependency management
- Ollama installed locally for running local LLMs
- Anthropic API key for Claude access (optional)
- Fireworks.ai API key for cloud models (optional)