Anything that speaks the OpenAI chat completions format works unchanged. Copilot, Cursor, opencode, the OpenAI SDKs, or a plain curl.
Put CroweLM inside your company.
One endpoint, one key, and a catalog of frontier models available in the tools your team already uses. Works with GitHub Copilot, Cursor, your terminal, or your own code. No shared credit pool to run dry in the middle of a build.
# point any client at your endpoint export OPENAI_BASE_URL="https://models.crowelogic.com/v1" export OPENAI_API_KEY="crowelm-live-..." # then use it like anything else curl $OPENAI_BASE_URL/chat/completions \ -H "Authorization: Bearer $OPENAI_API_KEY" \ -d '{"model":"crowelm-apex", "messages":[{"role":"user", "content":"ship it"}]}'