Back to docs overview

Agent Setup

Practical guide for roles, prompts, tools, and knowledge collections.

Agent Design

Define one clear responsibility per agent. One agent should solve one core task exceptionally well.

Knowledge Mapping

Attach collections explicitly through knowledge_ids instead of exposing all data globally.

Update via API

Agents can be updated via PUT, including knowledge_ids.

curl -X PUT https://api.agentic360.de/api/v1/agents/<AGENT_ID> \
  -H "Authorization: Bearer <ACCESS_TOKEN>" \
  -H "Content-Type: application/json" \
  -d '{"name":"Document Analyzer","knowledge_ids":["<UUID-1>","<UUID-2>"]}'