Advertisement
Guest User

Untitled

a guest
Apr 21st, 2023
319
1
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.08 KB | None | 1 0
  1. Symbols and Conventions:
  2.  
  3. 1. [ ]: Define tasks using square brackets.
  4. Example: [research], [summarize], [suggest]
  5.  
  6. 2. { }: Specify input parameters for tasks using curly braces.
  7. Example: [research]{topic: "quantum computing"}
  8.  
  9. 3. ( ): Set context or provide additional information using parentheses.
  10. Example: [suggest](gifts){age: 30, interests: "technology, photography"}
  11.  
  12. 4. < >: Define the expected output format using angle brackets.
  13. Example: [summarize]<bullet_points>{text: "Article about renewable energy"}
  14.  
  15. 5. | : Separate multiple tasks or options using the pipe symbol.
  16. Example: [research]{topic: "quantum computing"} | [suggest]{books}
  17.  
  18. 6. @ : Tag a user or AI for multi-turn conversations.
  19. Example: @user: What is your favorite color? | @AI: My favorite color is blue.
  20.  
  21. 7. -> : Indicate a sequence of tasks or actions using the arrow symbol.
  22. Example: [research]{topic: "AI ethics"}->[summarize]<paragraph>
  23.  
  24. 8. [[ ]]: Indicate a loop or repetition using double brackets.
  25. Example: [[suggest](gifts){age: 30, interests: "technology, photography"}]]*5
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement