GET
/
models
/
get-model
curl --request GET \
  --url https://api.enkryptai.com/models/get-model \
  --header 'X-Enkrypt-Model: <x-enkrypt-model>' \
  --header 'apikey: <api-key>'
{
  "model_saved_name": "Test Model",
  "testing_for": "LLM",
  "model_name": "mistralai/Mixtral-8x7B-Instruct-v0.1",
  "model_type": "text_2_text",
  "certifications": [],
  "model_config": {
    "paths": {
      "chat": "/chat/completions",
      "completions": "/completions"
    },
    "apikeys": [
      "xxxxx"
    ],
    "endpoint": {
      "host": "api.together.xyz",
      "port": 443,
      "scheme": "https",
      "base_path": "/v1"
    },
    "metadata": {},
    "auth_data": {
      "header_name": "Authorization",
      "header_prefix": "Bearer",
      "space_after_prefix": true
    },
    "hosting_type": "External",
    "model_source": "https://together.ai",
    "model_version": "1",
    "system_prompt": "",
    "model_provider": "together",
    "conversation_template": "",
    "default_request_options": {}
  },
  "created_at": "2024-10-15T17:22:47.872389+00:00",
  "project_name": "default",
  "updated_at": "2024-10-15T17:22:47.872389+00:00",
  "model_id": 1234567890
}

Authorizations

apikey
string
header
required

Headers

X-Enkrypt-Model
string
required

The model saved name. E.g. Test Model

Example:

"Test Model"

X-Enkrypt-Refresh-Cache
boolean

Refresh the cache if data is stale

Example:

false

Response

200 - application/json
Successful Response
model_saved_name
string
required

Name of the saved model

Example:

"Test Model"

model_name
string
required

Name of the model

Example:

"mistralai/Mixtral-8x7B-Instruct-v0.1"

model_config
object
required
testing_for
enum<string>

Purpose of testing

Available options:
Copilot,
LLM,
Chatbot
Example:

"LLM"

model_type
enum<string>

Type of the model

Available options:
text_2_text
Example:

"text_2_text"

certifications
string[]

List of certifications

Example:
[
  "GDPR",
  "CCPA",
  "HIPAA",
  "SOC 2 Type II",
  "SOC 3"
]
model_id
integer
Example:

1234567890

created_at
string
Example:

"2024-10-15T17:22:47.872389+00:00"

updated_at
string
Example:

"2024-10-15T17:22:47.872389+00:00"

project_name
string
Example:

"default"