Page cover

Model Management

Model Management is an endpoint used to display available models, so you can customize them as needed. The following are the endpoints in Model Management that can be used on the Deka LLM page.

https://dekallm.cloudeka.ai/models

This endpoint uses the GET method to request data on the Deka LLM server and is used to get a list of models. The following is the request that was sent.

curl -X 'GET' \
  'https://dekallm.cloudeka.ai/v1/models' \
  -H 'accept: application/json' \
  -H 'x-api-key: BEARER API_KEY'

The results of the responses received are as follows.

Response Request
{
  "data": [
    {
      "id": "baai/bge-multilingual-gemma2",
      "object": "model",
      "created": 1677610602,
      "owned_by": "openai"
    },
    {
      "id": "qwen25-coder-1.5b",
      "object": "model",
      "created": 1677610602,
      "owned_by": "openai"
    },
    {
      "id": "tts",
      "object": "model",
      "created": 1677610602,
      "owned_by": "openai"
    },
    {
      "id": "qwen/qwen25-coder-32b-instruct",
      "object": "model",
      "created": 1677610602,
      "owned_by": "openai"
    },
    {
      "id": "gotocompany/gemma2-9b-cpt-sahabatai-v1-instruct",
      "object": "model",
      "created": 1677610602,
      "owned_by": "openai"
    },
    {
      "id": "gotocompany/llama3-8b-cpt-sahabatai-v1-instruct",
      "object": "model",
      "created": 1677610602,
      "owned_by": "openai"
    },
    {
      "id": "meta/llama-3.1-70b-instruct",
      "object": "model",
      "created": 1677610602,
      "owned_by": "openai"
    },
    {
      "id": "qwen/qwen2-vl-72b-instruct",
      "object": "model",
      "created": 1677610602,
      "owned_by": "openai"
    },
    {
      "id": "qwen/qwen25-72b-instruct-nim",
      "object": "model",
      "created": 1677610602,
      "owned_by": "openai"
    },
    {
      "id": "deepseek-ai/DeepSeek-R1-70B",
      "object": "model",
      "created": 1677610602,
      "owned_by": "openai"
    },
    {
      "id": "nvidia/llama-3.1-nemotron-70b-instruct-hf",
      "object": "model",
      "created": 1677610602,
      "owned_by": "openai"
    },
    {
      "id": "meta/llama-3.3-70b-instruct",
      "object": "model",
      "created": 1677610602,
      "owned_by": "openai"
    },
    {
      "id": "qwen/qwen25-72b-instruct",
      "object": "model",
      "created": 1677610602,
      "owned_by": "openai"
    },
    {
      "id": "meta/llama-32-90b-instruct",
      "object": "model",
      "created": 1677610602,
      "owned_by": "openai"
    },
    {
      "id": "llama-32-90b-instruct-nim",
      "object": "model",
      "created": 1677610602,
      "owned_by": "openai"
    },
    {
      "id": "deepseek-ai/DeepSeek-R1",
      "object": "model",
      "created": 1677610602,
      "owned_by": "openai"
    }
  ],
  "object": "list"
}

Last updated