List agent settings
import requests
url = "https://eu.app.clarifeye.ai/api/v1/projects/{project_id}/agent-settings/"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://eu.app.clarifeye.ai/api/v1/projects/{project_id}/agent-settings/', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));curl --request GET \
--url https://eu.app.clarifeye.ai/api/v1/projects/{project_id}/agent-settings/ \
--header 'Authorization: Bearer <token>'{
"count": 123,
"next": "<string>",
"previous": "<string>",
"results": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"description": "<string>",
"created_by": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"readonly": true,
"additional_instructions": "<string>",
"agent_conversation_starter": "<string>",
"model": "claude-3-5-sonnet",
"project_brief": "<string>",
"knowledge_graph_mode": "<string>",
"knowledge_graph_parameters": {},
"tags_hierarchies_mode": "<string>",
"tags_hierarchies_parameters": {},
"selected_workflows_mode": "<string>",
"selected_workflows": [
"3c90c3cc-0d44-4b50-8888-8dd25736052a"
],
"agent_mode": "<string>",
"tools": [
"3c90c3cc-0d44-4b50-8888-8dd25736052a"
],
"last_conversation_date": "2023-11-07T05:31:56Z",
"local_documents": [
"3c90c3cc-0d44-4b50-8888-8dd25736052a"
]
}
]
}{
"error": "Authentication credentials were not provided."
}{
"error": "You do not have permission to perform this action."
}{
"error": "Not found."
}Agent Settings
List agent settings
Retrieve all agent settings (AI agent configurations) for a project. Results are ordered by most recently updated first.
GET
/
projects
/
{project_id}
/
agent-settings
/
List agent settings
import requests
url = "https://eu.app.clarifeye.ai/api/v1/projects/{project_id}/agent-settings/"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://eu.app.clarifeye.ai/api/v1/projects/{project_id}/agent-settings/', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));curl --request GET \
--url https://eu.app.clarifeye.ai/api/v1/projects/{project_id}/agent-settings/ \
--header 'Authorization: Bearer <token>'{
"count": 123,
"next": "<string>",
"previous": "<string>",
"results": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"description": "<string>",
"created_by": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"readonly": true,
"additional_instructions": "<string>",
"agent_conversation_starter": "<string>",
"model": "claude-3-5-sonnet",
"project_brief": "<string>",
"knowledge_graph_mode": "<string>",
"knowledge_graph_parameters": {},
"tags_hierarchies_mode": "<string>",
"tags_hierarchies_parameters": {},
"selected_workflows_mode": "<string>",
"selected_workflows": [
"3c90c3cc-0d44-4b50-8888-8dd25736052a"
],
"agent_mode": "<string>",
"tools": [
"3c90c3cc-0d44-4b50-8888-8dd25736052a"
],
"last_conversation_date": "2023-11-07T05:31:56Z",
"local_documents": [
"3c90c3cc-0d44-4b50-8888-8dd25736052a"
]
}
]
}{
"error": "Authentication credentials were not provided."
}{
"error": "You do not have permission to perform this action."
}{
"error": "Not found."
}Authorizations
BearerAuthTokenAuth
Use Authorization: Bearer
Path Parameters
UUID of the project
Query Parameters
Maximum number of results per page
Required range:
1 <= x <= 1000Number of results to skip for pagination
Required range:
x >= 0