Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Official Python SDK for Ceramic
pip install ceramic_ai
from ceramic_ai import Ceramic client = Ceramic(api_key="YOUR_API_KEY") response = client.search(query="California rental laws") print(response)
import asyncio from ceramic_ai import AsyncCeramic client = AsyncCeramic(api_key="YOUR_API_KEY") async def main(): response = await client.search(query="California rental laws") print(response) asyncio.run(main())
query