AIAny
AI API2023
Icon for item

Claude Cookbooks

Runnable Jupyter notebooks for building with the Claude API: tool use, RAG, vision, prompt caching, sub-agents, classification, summarization, and integrations like Pinecone and Voyage embeddings. Copy-paste recipes that drop into real projects.

Introduction

Most model providers ship a slick docs site and call it a day; the harder question is always "okay, but how do I actually wire this into my code?" These cookbooks answer that by skipping prose and handing you working notebooks you can run, break, and paste from. The recurring lesson across them: Claude's harder features (tool use, prompt caching, sub-agents) are less about the model and more about how you structure the orchestration around it.

What Sets It Apart
  • Runnable over readable. Nearly everything is a Jupyter notebook (~95% of the repo), so you execute the recipe instead of reading about it — the gap between "I read the tool-use guide" and "I have a working customer-service agent" collapses to one notebook.
  • Patterns, not just primitives. Beyond single API calls, it shows compositions that are easy to get wrong: sub-agents (cheap Haiku workers feeding an Opus planner), prompt caching to cut repeated-context cost, and RAG wired to real vector stores like Pinecone with Voyage embeddings.
  • Breadth that maps to real apps. Classification, summarization, vision (charts, forms, PDFs), JSON mode, content moderation, and automated evals cover most of what a production Claude integration actually needs.
Who It's For

Great fit if you learn by running code and want a reference implementation before committing a pattern to your own stack — especially for tool use, RAG, or multi-agent setups where the wiring is the hard part. Look elsewhere if you want conceptual depth on how Claude works internally, or a maintained framework: these are deliberately minimal, copy-and-adapt examples, not a library you'd take a dependency on.

More Items

GitHub

Runs a self-hosted meeting bot and transcription API that joins Google Meet, Teams and Zoom and streams speaker-attributed transcripts in real time. Compiles meetings into a git-backed Markdown workspace and runs sandboxed agents on your infrastructure; Apache-2.0 and air-gap capable.

GitHub
AI API2020

Typed Python client for the OpenAI REST API that offers synchronous and asynchronous clients, typed request/response models, streaming and Realtime support, webhook verification, and integrations for Azure and Amazon Bedrock—built for production integrations and automation.

GitHub

Practical, full-stack tutorial for building Retrieval-Augmented Generation (RAG) systems—covers data preprocessing, vector embedding and indexing, hybrid and multimodal retrieval, generation integration, evaluation and production-ready engineering. Includes hands-on projects and examples for developers with Python experience.