Provides a basic OpenAI compatible endpoint
/api/v1/chat/completions
curl -L \ --request POST \ --url '/api/v1/chat/completions' \ --header 'Content-Type: application/json' \ --data '{"messages":[{}]}'
{ "object": "text", "id": "text", "created": "2025-02-18T20:01:39.040Z", "model": "text", "systemFingerprint": "text", "usage": { "promptTokens": 1, "completionTokens": 1, "totalTokens": 1 }, "choices": [ { "index": 1, "message": { "content": "text", "role": "text", "name": "text" }, "finishReason": "text" } ] }