random_decision_oracle
Generate cryptographically secure random outcomes to eliminate LLM token prediction bias. Use coin flips, dice, cards, numbers, and chance checks for fair decisions in games, arbitrations, and simulations.
Instructions
[Cost: $0.0001 USDC on Base & Solana] Master cryptographically secure CSPRNG decision oracle & entropy engine.
Eliminates LLM token prediction bias (e.g., >65% bias on 'heads') in games, arbitrations, simulations, and stochastic branching.
Actions & Parameters:
- 'coin': Flips fair or weighted coins. Params: {"flips": 1..1000, "p_heads": 0.0..1.0}
- '8ball': Consults canonical 20-outcome Magic 8-Ball. Params: {"question": "..."}
- 'fortune': Cracks fortune cookie with aphorism & lucky numbers. Params: {"theme": "all"|"crypto"|"algorithmic"}
- 'number': Generates random numbers. Params: {"min": 1, "max": 100, "count": 1, "unique": true}
- 'chance': Evaluates probability threshold check. Params: {"threshold": 0.0..100.0}
- 'rps': Plays Rock-Paper-Scissors / Lizard-Spock. Params: {"player_move": "rock", "variant": "classic"|"rpsls"}
- 'dice': Rolls polyhedral RPG dice notation. Params: {"notation": "2d6+3"|"1d20"|"4d6d1"}
- 'card': Draws playing cards from standard 52-card deck. Params: {"count": 1..52}
- 'pick': Weighted or uniform item selection. Params: {"items": ["a","b"], "count": 1, "weights": [1,2]}
- 'token': Generates cryptographically secure nonces or UUIDs. Params: {"token_type": "uuid4"|"hex", "byte_length": 16}
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| action | No | coin | |
| params | No | ||
| payment_signature | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |