1. ๐Ÿ” Parsing User Intent

The LLM is trained to recognize the intent behind user input, even when phrased in diverse, non-technical, or casual ways.

Examples:

User Input
Detected Intent

โ€œDeploy a token called GoldCoin with 5M supplyโ€

deploy_erc20

โ€œWhatโ€™s my balance of GDC?โ€

get_token_balance

โ€œTransfer 100 DIAI to my friendโ€

transfer_tokens

The model is able to:

  • Understand imperative commands (โ€œDeploy thisโ€, โ€œSend thatโ€)

  • Handle indirect requests (โ€œCan I get my MYT balance?โ€)

  • Interpret incomplete prompts and ask for clarification

Last updated