run-log.ts 604 B

1234567891011121314151617181920212223242526272829
  1. const translation = {
  2. input: 'INPUT',
  3. result: 'RESULT',
  4. detail: 'DETAIL',
  5. tracing: 'TRACING',
  6. resultPanel: {
  7. status: 'STATUS',
  8. time: 'ELAPSED TIME',
  9. tokens: 'TOTAL TOKENS',
  10. },
  11. meta: {
  12. title: 'METADATA',
  13. status: 'Status',
  14. version: 'Version',
  15. executor: 'Executor',
  16. startTime: 'Start Time',
  17. time: 'Elapsed Time',
  18. tokens: 'Total Tokens',
  19. steps: 'Run Steps',
  20. },
  21. resultEmpty: {
  22. title: 'This run only output JSON format,',
  23. tipLeft: 'please go to the ',
  24. link: 'detail panel',
  25. tipRight: ' view it.',
  26. },
  27. }
  28. export default translation