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.html 2.3 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
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8" />
  5. <meta name="viewport" content="width=device-width" />
  6. <title>Table Output</title>
  7. <style>
  8. body {
  9. font-family:
  10. -apple-system,
  11. BlinkMacSystemFont,
  12. Segoe UI,
  13. Roboto,
  14. Helvetica,
  15. Arial,
  16. sans-serif;
  17. }
  18. table,
  19. th,
  20. td {
  21. border: 1px solid black;
  22. border-collapse: collapse;
  23. text-align: left;
  24. word-break: break-all;
  25. }
  26. th,
  27. td {
  28. padding: 5px;
  29. min-width: 200px;
  30. }
  31. tr > td[data-content^='[PASS]'] {
  32. color: green;
  33. }
  34. tr > td[data-content^='[FAIL]'] {
  35. color: #ad0000;
  36. }
  37. </style>
  38. </head>
  39. <body>
  40. <table>
  41. <thead>
  42. <th>Rephrase this in {{language}}: {{body}}</th>
  43. <th>Translate this to conversational {{language}}: {{body}}</th>
  44. <th>body</th>
  45. <th>language</th>
  46. </thead>
  47. <tbody>
  48. <tr>
  49. <td data-content="Bonjour le monde">Bonjour le monde</td>
  50. <td data-content="Bonjour le monde">Bonjour le monde</td>
  51. <td data-content="Hello world">Hello world</td>
  52. <td data-content="French">French</td>
  53. </tr>
  54. <tr>
  55. <td data-content="J&#39;ai faim.">J&#39;ai faim.</td>
  56. <td data-content="J&#39;ai faim.">J&#39;ai faim.</td>
  57. <td data-content="I&#39;m hungry">I&#39;m hungry</td>
  58. <td data-content="French">French</td>
  59. </tr>
  60. <tr>
  61. <td data-content="Ahoy thar, world!">Ahoy thar, world!</td>
  62. <td data-content="Ahoy thar world!">Ahoy thar world!</td>
  63. <td data-content="Hello world">Hello world</td>
  64. <td data-content="Pirate">Pirate</td>
  65. </tr>
  66. <tr>
  67. <td data-content="Arrr, me belly be empty and yearnin&#39; for grub.">
  68. Arrr, me belly be empty and yearnin&#39; for grub.
  69. </td>
  70. <td data-content="Arrr, me belly be rumblin&#39;! I be needin&#39; some grub!">
  71. Arrr, me belly be rumblin&#39;! I be needin&#39; some grub!
  72. </td>
  73. <td data-content="I&#39;m hungry">I&#39;m hungry</td>
  74. <td data-content="Pirate">Pirate</td>
  75. </tr>
  76. </tbody>
  77. </table>
  78. </body>
  79. </html>
Tip!

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

Comments

Loading...