GET /v1/ai-agent/chatbot_ai_settings/{projectid}/{chatbotId}| Parameter | Type | Required | Description |
|---|---|---|---|
projectid | string | Yes | Unique identifier of the project. |
chatbotId | string | Yes | Unique identifier of the chatbot. |
200 OK{
"message": "Success",
"data": {
"system_prompt_text": "You are a friendly AI assistant.",
"llm_api_key": "-",
"not_found_answer": "I'm sorry, but I don't have that information.",
"tone": "Professional And Friendly",
"chunk_overlap": null,
"enable_chatbot_memory": true,
"question_pre_processing": false,
"past_questions_limit": 10,
"temperature": "0.5",
"thinking_mode": "1",
"chunk_size": 300
}
}| Field | Type | Description |
|---|---|---|
message | string | Response status message. |
data | object | Chatbot AI settings object. |
data.system_prompt_text | string | System prompt used to configure chatbot behavior. |
data.llm_api_key | string | API key associated with the LLM provider. |
data.not_found_answer | string | Default response when no relevant answer is found. |
data.tone | string | Configured conversational tone for the chatbot. |
data.chunk_overlap | integer | null | Overlap size between text chunks during processing. |
data.enable_chatbot_memory | boolean | Indicates whether chatbot memory is enabled. |
data.question_pre_processing | boolean | Indicates whether question preprocessing is enabled. |
data.past_questions_limit | integer | Number of previous questions retained in memory. |
data.temperature | string | Temperature value controlling response randomness. |
data.thinking_mode | string | Internal thinking or reasoning mode configuration. |
data.chunk_size | integer | Maximum chunk size used for text processing. |
curl --location --request GET 'https://agents.robofy.ai/ai-agent/chatbot_ai_settings//' \
--header 'Content-Type: application/json' \
--data '{}'{
"message": "Explicabo benevolentia dignissimos trepide. Terga usitas comitatus. Pariatur verbum surgo decerno una una derideo.",
"data": {
"system_prompt_text": "Excepteur",
"llm_api_key": "ad",
"not_found_answer": "magna qui Lorem",
"tone": "enim id deserunt in Excepteur",
"chunk_overlap": null,
"enable_chatbot_memory": false,
"question_pre_processing": false,
"past_questions_limit": 70879868,
"temperature": "consequat Duis Excepteur velit",
"thinking_mode": "ad aute exercitation",
"chunk_size": -62400783
}
}