curl --request GET \
  --url https://api.honeyhive.ai/configurations \
  --header 'Authorization: Bearer <token>'
[
  {
    "project": "<string>",
    "type": "LLM",
    "name": "<string>",
    "provider": "<string>",
    "parameters": {
      "call_type": "chat",
      "model": "<string>",
      "hyperparameters": {},
      "selectedFunctions": [
        {
          "id": "<string>",
          "name": "<string>",
          "description": "<string>",
          "parameters": {}
        }
      ],
      "functionCallParams": "none",
      "forceFunction": {}
    },
    "user_properties": {}
  }
]

Authorizations

Authorization
string
headerrequired

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

project_name
string
required

Project name for configuration

type
enum<string>
required

Configuration type - "LLM" or "pipeline"

Available options:
LLM,
pipeline

Response

200 - application/json
project
string
required

ID of the project to which this configuration belongs

type
enum<string>

Type of the configuration - "LLM" or "pipeline" - "LLM" by default

Available options:
LLM,
pipeline
name
string
required

Name of the configuration

provider
string
required

Name of the provider - "openai", "anthropic", etc.

parameters
object
user_properties
object

Details of user who created the configuration