Documentation Index
Fetch the complete documentation index at: https://docs.kataven.ai/llms.txt
Use this file to discover all available pages before exploring further.
FAQsClient is reachable on every Kataven client as client.faqs. Each method maps to one HTTP endpoint on the Hub API; links to the underlying spec entry are inline below.
FAQs are simple title/content entries the agent can quote verbatim. Attach to an agent via client.agents.attach_faq.
Methods at a glance
| Method | HTTP | Summary |
|---|---|---|
list | GET /api/faqs | List FAQs |
get | GET /api/faqs/{faq_id_or_name} | Get a single FAQ |
create | POST /api/faqs | Create an FAQ |
update | PUT /api/faqs/{faq_id_or_name} | Update an FAQ |
delete | DELETE /api/faqs/{faq_id_or_name} | Delete an FAQ |
Reference
client.faqs.list(...)
List FAQs
HTTP — GET /api/faqs · API reference →
client.faqs.get(...)
Get a single FAQ
HTTP — GET /api/faqs/{id} · API reference →
client.faqs.create(...)
Create an FAQ
HTTP — POST /api/faqs · API reference →
client.faqs.update(...)
Update an FAQ
HTTP — PUT /api/faqs/{id} · API reference →
client.faqs.delete(...)
Delete an FAQ
HTTP — DELETE /api/faqs/{id} · API reference →

