cURL
curl --request GET \ --url https://api.comput3.ai/v1/models \ --header 'Authorization: Bearer <token>'
{ "data": [ { "id": "<string>", "object": "<string>", "created": 123, "owned_by": "<string>" } ] }
List available models
Authorization: Bearer YOUR_API_KEY
curl -X GET "https://api.comput3.ai/v1/models" \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json"
{ "models": [ { "id": "llama-2-7b", "name": "Llama 2 7B", "status": "available", "gpu_type": "A100", "memory_gb": 40 } ] }
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
List of available models
Show child attributes