internal.json 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. {
  2. "dataGenerator": {
  3. "tabs": {
  4. "usage": "Usage Data Generation",
  5. "userBreakdown": "User Usage Breakdown"
  6. },
  7. "actions": {
  8. "reconfigure": "Reconfigure Parameters",
  9. "generate": "Generate Data",
  10. "exportScreenshot": "Export Screenshot",
  11. "exportPDF": "Export PDF"
  12. },
  13. "params": {
  14. "title": "Generation Parameters",
  15. "description": "Configure parameters to create simulated log data",
  16. "startDate": "Start Time",
  17. "endDate": "End Time",
  18. "totalCostCny": "Total Amount (CNY)",
  19. "totalRecords": "Total Records",
  20. "models": "Include Models (comma-separated)",
  21. "userIds": "User IDs (comma-separated)",
  22. "providerIds": "Provider IDs (comma-separated)",
  23. "serviceName": "Service Name",
  24. "required": "*",
  25. "placeholders": {
  26. "totalCostCny": "e.g., 1000",
  27. "totalRecords": "e.g., 500 (leave blank to calculate based on amount)",
  28. "models": "e.g., claude-3-5-sonnet,gpt-4 (leave blank for all)",
  29. "userIds": "e.g., 1,2,3 (leave blank for all)",
  30. "providerIds": "e.g., 1,2 (leave blank for all)",
  31. "serviceName": "AI Model Inference Service"
  32. }
  33. },
  34. "summary": {
  35. "totalRecords": "Total Records",
  36. "totalCost": "Total Cost",
  37. "totalCostCny": "Total Cost (CNY)",
  38. "totalTokens": "Total Tokens",
  39. "timeRange": "Time Range",
  40. "to": "to",
  41. "uniqueUsers": "Total Users",
  42. "totalCalls": "Total Calls"
  43. },
  44. "table": {
  45. "usageLogs": {
  46. "title": "Usage Logs",
  47. "description": "{count} records in total",
  48. "columns": {
  49. "time": "Time",
  50. "user": "User",
  51. "key": "Key",
  52. "provider": "Provider",
  53. "model": "Model",
  54. "input": "Input",
  55. "output": "Output",
  56. "cacheWrite": "Cache Write",
  57. "cacheRead": "Cache Read",
  58. "cost": "Cost",
  59. "duration": "Duration",
  60. "status": "Status"
  61. }
  62. },
  63. "userBreakdown": {
  64. "title": "User Usage Details",
  65. "description": "{count} records in total",
  66. "collapseByUser": "Collapse by User",
  67. "columns": {
  68. "userName": "User Name",
  69. "key": "Key",
  70. "serviceModel": "Service Model",
  71. "totalCalls": "Total Calls",
  72. "totalCost": "Total Cost"
  73. }
  74. }
  75. },
  76. "status": {
  77. "success": "Success"
  78. },
  79. "errors": {
  80. "failed": "Failed to generate logs"
  81. }
  82. }
  83. }