A model can't produce genuinely unpredictable values; this draws real randomness from a secure generator.
Developer Tools
Generates random integers, makes random selections from a list, shuffles items, and creates random strings. Runs locally with no charge. Useful for simulations, test data, sampling, and games.
You need genuine randomness the model cannot produce, like a dice roll, a pick, or a token.
Reproducible or seeded sequences, statistical sampling with a fixed seed, or UUIDs (use encoding).
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/random/run" \
-H "Authorization: Bearer $FARO_TOKEN" \
-H "Content-Type: application/json" \
-d '{"intent":{"prompt":"Pick a random number between 1 and 100"}}'Example requests