timeline.json 778 B

12345678910111213141516171819202122232425262728293031
  1. [
  2. {
  3. "timestamp": 1000,
  4. "type": "user_message",
  5. "messageId": "msg_test_001",
  6. "data": {
  7. "text": "What are our top 5 products this quarter?"
  8. }
  9. },
  10. {
  11. "timestamp": 1100,
  12. "type": "tool_call",
  13. "messageId": "msg_test_002",
  14. "data": {
  15. "tool": "read",
  16. "input": {
  17. "filePath": "sales-data.json"
  18. },
  19. "status": "completed",
  20. "output": "{\"products\": [{\"name\": \"Product A\", \"sales\": 1000}, {\"name\": \"Product B\", \"sales\": 800}]}"
  21. }
  22. },
  23. {
  24. "timestamp": 1200,
  25. "type": "text",
  26. "messageId": "msg_test_002",
  27. "data": {
  28. "text": "Based on the sales data, here are the top 5 products this quarter:\n\n1. Product A - $1,000 in sales\n2. Product B - $800 in sales\n..."
  29. }
  30. }
  31. ]