Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
curl https://reclaimllm.com/acme/v1/chat/completions \
-H "Authorization: Bearer rclm-gw-your-team-key" \
-H "Content-Type: application/json" \
-d '{
"model": "openai/gpt-4o-mini",
"messages": [
{ "role": "user", "content": "Summarize this incident report." }
]
}'
curl https://reclaimllm.com/acme/v1/embeddings \
-H "Authorization: Bearer rclm-gw-your-team-key" \
-H "Content-Type: application/json" \
-d '{
"model": "azure/text-embedding-small",
"input": ["Searchable context from an LLM session."]
}'