Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

output.json 4.2 KB

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
  1. {
  2. "version": 1,
  3. "results": [
  4. {
  5. "prompt": {
  6. "raw": "Rephrase this in French: Hello world",
  7. "display": "Rephrase this in {{language}}: {{body}}"
  8. },
  9. "vars": {
  10. "language": "French",
  11. "body": "Hello world"
  12. },
  13. "response": {
  14. "output": "Bonjour le monde",
  15. "tokenUsage": {
  16. "cached": 19
  17. }
  18. },
  19. "success": true
  20. },
  21. {
  22. "prompt": {
  23. "raw": "Translate this to conversational French: Hello world",
  24. "display": "Translate this to conversational {{language}}: {{body}}"
  25. },
  26. "vars": {
  27. "language": "French",
  28. "body": "Hello world"
  29. },
  30. "response": {
  31. "output": "Bonjour le monde",
  32. "tokenUsage": {
  33. "cached": 20
  34. }
  35. },
  36. "success": true
  37. },
  38. {
  39. "prompt": {
  40. "raw": "Rephrase this in French: I'm hungry",
  41. "display": "Rephrase this in {{language}}: {{body}}"
  42. },
  43. "vars": {
  44. "language": "French",
  45. "body": "I'm hungry"
  46. },
  47. "response": {
  48. "output": "J'ai faim.",
  49. "tokenUsage": {
  50. "cached": 24
  51. }
  52. },
  53. "success": true
  54. },
  55. {
  56. "prompt": {
  57. "raw": "Translate this to conversational French: I'm hungry",
  58. "display": "Translate this to conversational {{language}}: {{body}}"
  59. },
  60. "vars": {
  61. "language": "French",
  62. "body": "I'm hungry"
  63. },
  64. "response": {
  65. "output": "J'ai faim.",
  66. "tokenUsage": {
  67. "cached": 25
  68. }
  69. },
  70. "success": true
  71. },
  72. {
  73. "prompt": {
  74. "raw": "Rephrase this in Pirate: Hello world",
  75. "display": "Rephrase this in {{language}}: {{body}}"
  76. },
  77. "vars": {
  78. "language": "Pirate",
  79. "body": "Hello world"
  80. },
  81. "response": {
  82. "output": "Ahoy thar, world!",
  83. "tokenUsage": {
  84. "cached": 23
  85. }
  86. },
  87. "success": true
  88. },
  89. {
  90. "prompt": {
  91. "raw": "Translate this to conversational Pirate: Hello world",
  92. "display": "Translate this to conversational {{language}}: {{body}}"
  93. },
  94. "vars": {
  95. "language": "Pirate",
  96. "body": "Hello world"
  97. },
  98. "response": {
  99. "output": "Ahoy thar world!",
  100. "tokenUsage": {
  101. "cached": 23
  102. }
  103. },
  104. "success": true
  105. },
  106. {
  107. "prompt": {
  108. "raw": "Rephrase this in Pirate: I'm hungry",
  109. "display": "Rephrase this in {{language}}: {{body}}"
  110. },
  111. "vars": {
  112. "language": "Pirate",
  113. "body": "I'm hungry"
  114. },
  115. "response": {
  116. "output": "Arrr, me belly be empty and yearnin' for grub.",
  117. "tokenUsage": {
  118. "cached": 33
  119. }
  120. },
  121. "success": true
  122. },
  123. {
  124. "prompt": {
  125. "raw": "Translate this to conversational Pirate: I'm hungry",
  126. "display": "Translate this to conversational {{language}}: {{body}}"
  127. },
  128. "vars": {
  129. "language": "Pirate",
  130. "body": "I'm hungry"
  131. },
  132. "response": {
  133. "output": "Arrr, me belly be rumblin'! I be needin' some grub!",
  134. "tokenUsage": {
  135. "cached": 39
  136. }
  137. },
  138. "success": true
  139. }
  140. ],
  141. "stats": {
  142. "successes": 8,
  143. "failures": 0,
  144. "tokenUsage": {
  145. "total": 0,
  146. "prompt": 0,
  147. "completion": 0,
  148. "cached": 206
  149. }
  150. },
  151. "table": {
  152. "head": {
  153. "prompts": [
  154. "Rephrase this in {{language}}: {{body}}",
  155. "Translate this to conversational {{language}}: {{body}}"
  156. ],
  157. "vars": ["body", "language"]
  158. },
  159. "body": [
  160. {
  161. "outputs": ["Bonjour le monde", "Bonjour le monde"],
  162. "vars": ["Hello world", "French"]
  163. },
  164. {
  165. "outputs": ["J'ai faim.", "J'ai faim."],
  166. "vars": ["I'm hungry", "French"]
  167. },
  168. {
  169. "outputs": ["Ahoy thar, world!", "Ahoy thar world!"],
  170. "vars": ["Hello world", "Pirate"]
  171. },
  172. {
  173. "outputs": [
  174. "Arrr, me belly be empty and yearnin' for grub.",
  175. "Arrr, me belly be rumblin'! I be needin' some grub!"
  176. ],
  177. "vars": ["I'm hungry", "Pirate"]
  178. }
  179. ]
  180. }
  181. }
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...