Your agent has no database to put records in; this gives it the capability to store, filter, and semantically search records.
Developer Tools
Stores, queries, and manages records in named collections without needing a database. Insert records, filter by field values, search by meaning, update or delete by id, and count matches. Collections are scoped to your session and require no setup or schema definition.
You need a small structured store you can query by field or search by meaning.
A single value by key (use the key-value store), or a file (use the file share).
Each is a sub-skill of Tables; the router picks the right one for your request.
information
Skills run through one gateway with your Faro token. Hand it an intent in plain language; Faro routes to the right sub-skill, runs it, and bills per call.
curl -X POST "https://skill.askfaro.com/skills/tables/run" \
-H "Authorization: Bearer $FARO_TOKEN" \
-H "Content-Type: application/json" \
-d '{"intent":{"prompt":"Add this item to my products collection"}}'Example requests