GET
/v1/modelsList the models available to your key and tenant.
If your tooling already speaks OpenAI-style APIs, Eldric is designed to feel familiar: point the client at your Eldric endpoint, send an API key and call models, chat completions or embeddings.
/v1/modelsList the models available to your key and tenant.
/v1/chat/completionsCreate a chat completion. Streaming is supported when enabled in the request.
/v1/embeddingsCreate embeddings for retrieval and search workflows.
curl -X POST https://<your-eldric-host>/v1/chat/completions \
-H "X-API-Key: $ELDRIC_API_KEY" \
-H "Content-Type: application/json" \
-d '{"model":"default","messages":[{"role":"user","content":"Summarize this policy."}]}'
Use the public Eldric API for conversations, knowledge-base search, agent sessions, media transcription, tenant settings and quota visibility. Keep tenant boundaries explicit in every integration and avoid assuming cross-tenant visibility.
Uses local search-index.json when present. No external search service.