Configs

Get config version

GET

Path parameters

idstringRequired
Identifier for a config. Formatted as a UUID.
versionintegerRequired
Version number for a config. Version numbers should be integers.

Response

This endpoint returns an object
id
stringOptional
Identifier for a Config. Formatted as a UUID.
version
integerOptional
Version number for a Config. Version numbers should be integers. The combination of configId and version number is unique.
version_description
stringOptional
Description that is appended to a specific version of a Config.
name
stringOptional
Name applied to all versions of a particular Config.
created_on
integerOptional
The timestamp when the first version of this config was created.
modified_on
integerOptional
The timestamp when this version of the config was created.
prompt
objectOptional
A specific prompt version returned from the server
language_model
objectOptional
A specific LanguageModel
tools
list of optional objectsOptional
List of user-defined tools associated with this config.
builtin_tools
list of optional objectsOptional
List of built-in tools associated with this config
GET
1curl https://api.hume.ai/v0/evi/configs/id/version/1 \
2 -H "X-Hume-Api-Key: <apiKey>"
Response
1{
2 "id": "id",
3 "version": 1,
4 "version_description": "version_description",
5 "name": "name",
6 "created_on": 1,
7 "modified_on": 1,
8 "prompt": {
9 "id": "id",
10 "version": 1,
11 "version_type": "version_type",
12 "name": "name",
13 "created_on": 1,
14 "modified_on": 1,
15 "text": "text",
16 "version_description": "version_description"
17 },
18 "language_model": {
19 "model_provider": "model_provider",
20 "model_resource": "model_resource",
21 "temperature": 1.1
22 },
23 "tools": [
24 {
25 "tool_type": "tool_type",
26 "id": "id",
27 "version": 1,
28 "version_type": "version_type",
29 "name": "name",
30 "created_on": 1,
31 "modified_on": 1,
32 "parameters": "parameters",
33 "version_description": "version_description",
34 "fallback_content": "fallback_content",
35 "description": "description"
36 }
37 ],
38 "builtin_tools": [
39 {
40 "tool_type": "tool_type",
41 "name": "name",
42 "fallback_content": "fallback_content"
43 }
44 ]
45}