Skip to main content
GET
/
model-hub
/
get-eval-config
Get evaluation configuration
curl --request GET \
  --url https://api.futureagi.com/model-hub/get-eval-config \
  --header 'X-Api-Key: <api-key>' \
  --header 'X-Secret-Key: <api-key>'
{
  "output_types": [
    "Pass/Fail",
    "score",
    "choices"
  ],
  "template_types": [
    "Llm",
    "Futureagi",
    "Function"
  ],
  "supported_models": [
    "gpt-4",
    "gpt-3.5-turbo",
    "claude-3-opus"
  ]
}

Authorizations

X-Api-Key
string
header
required

API Key for authentication. Click here to access API Key

X-Secret-Key
string
header
required

Secret Key for authentication. Click here to access Secret Key

Response

Evaluation configuration

output_types
string[]
Example:
["Pass/Fail", "score", "choices"]
template_types
string[]
Example:
["Llm", "Futureagi", "Function"]
supported_models
string[]
Example:
["gpt-4", "gpt-3.5-turbo", "claude-3-opus"]