turn.yaml 811 B

12345678910111213141516171819202122232425262728
  1. type: object
  2. properties:
  3. id:
  4. type: string
  5. format: uuid
  6. description: Unique ID of the turn
  7. example: 019eb75b-bb35-77b7-a16f-38b85223085d
  8. session_id:
  9. type: string
  10. format: uuid
  11. description: ID of the session that this turn belongs to
  12. example: 019eb75c-41cd-7456-95fe-382787dc4f12
  13. tokens_used:
  14. type: number
  15. description: Number of tokens used for this turn
  16. example: 1876
  17. user_text:
  18. type: string
  19. description: User provided input for the actions to take for their turn
  20. example: Lorem Ipsum, etc...
  21. llm_text:
  22. type: string
  23. description: LLM generated text to respond to user and move the game forward
  24. example: Lorem Ipsum, etc...
  25. created_at:
  26. type: date
  27. description: Time when the turn was taken
  28. example: 2026-06-11T15:48:40.705Z