Framework integrations
Seven drop-in adapters that plug Tessera's **substrate layer** into your existing agent / RAG / chat pipeline. Same proxy, same mechanic stack, same billing — different API shape per framework. Pick whichever fits your codebase. Side-by-side install supported; one Tessera key covers all of them.
LangChain
Python + JSOne line of config routes ChatOpenAI / ChatAnthropic / ChatMistralAI / ChatGroq / ChatCohere through Tessera. Python + JS, same proxy.
pip install tessera-langchain · npm install @tessera-llm/langchainVercel AI SDK
TypeScript / NodeDrop-in for `@ai-sdk/openai` / `@ai-sdk/anthropic` / etc. generateText, streamText, generateObject, streamObject all route through Tessera unchanged.
npm install @tessera-llm/vercel-aiLlamaIndex
Python + JSOne line of config routes LlamaIndex `llama_index.llms.*` constructors through Tessera. Index queries, RAG pipelines, agents, sub-question engines work unchanged.
pip install tessera-llamaindex · npm install @tessera-llm/llamaindexMastra
TypeScript / NodeVercel AI SDK provider shape for Mastra Agents. Drop-in for `new Agent({ model: openai("gpt-4o"), ... })`.
npm install @tessera-llm/mastraPydantic AI
PythonTwo-function pattern (client kwargs + Provider wrapper) for `agent.run_sync()` / `agent.run()` workflows. v0.1 OpenAI + Anthropic; Mistral/Groq/Cohere queued for v0.2.
pip install tessera-pydantic-aiCrewAI
PythonFactory functions for CrewAI `LLM` instances used by `Agent`, `Crew`, `Task` flows. Multi-agent tool-use loops benefit from exact + semantic cache.
pip install tessera-crewaiAutoGen 0.4+
PythonChatCompletionClient factory for `autogen_agentchat`. Works with AssistantAgent, SelectorGroupChat, Swarm. v0.1 OpenAI + Anthropic.
pip install tessera-autogenDon't see your framework? The Tessera proxy speaks plain OpenAI / Anthropic / Google / Mistral / Groq / Cohere wire formats — any HTTPS client speaking those shapes can use it without an SDK. See the 30-second curl example. If your framework warrants a first-class adapter, open an issue on github.com/tessera-llm/tessera-sdk.