Deep Dive
Build Paths
- Studio (No-code Interface)
- Lyzr Developer API (Programmatic Access)
Agents
- Overview
- Studio
- Publish Agent
- API Endpoints
Knowledge Base
- Overview
- Semantic Model
- Studio
- API Endpoints
Tools
- Available Tools
- Tools List
- Custom Tools
- API Endpoints
Responsible & Safe AI
- Overview
- Responsible AI
- Safe AI Studio
- API Endpoints
Orchestration
API Endpoints
Create Documentation Agent
POST
/
v3
/
semantic_model
/
documentation_agents
Copy
curl --request POST \
--url https://agent-prod.studio.lyzr.ai/v3/semantic_model/documentation_agents \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '{
"name": "<string>",
"llm_credential_id": "<string>",
"provider_id": "<string>",
"model_id": "<string>",
"top_p": 123,
"temperature": 123
}'
Copy
{
"created_agent_id": "<string>"
}
Authorizations
Body
application/json
Response
200
application/json
Agent created
The response is of type object
.
Copy
curl --request POST \
--url https://agent-prod.studio.lyzr.ai/v3/semantic_model/documentation_agents \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '{
"name": "<string>",
"llm_credential_id": "<string>",
"provider_id": "<string>",
"model_id": "<string>",
"top_p": 123,
"temperature": 123
}'
Copy
{
"created_agent_id": "<string>"
}
Assistant
Responses are generated using AI and may contain mistakes.