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 4.7 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
  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>
  43. [ {&quot;role&quot;: &quot;system&quot;, &quot;content&quot;: &quot;You are a helpful
  44. assistant.&quot;}, {&quot;role&quot;: &quot;user&quot;, &quot;content&quot;: &quot;Who won
  45. the world series in {{ year }}?&quot;} ]
  46. </th>
  47. <th>
  48. [ {&quot;role&quot;: &quot;system&quot;, &quot;content&quot;: &quot;You are a sports
  49. historian.&quot;}, {&quot;role&quot;: &quot;user&quot;, &quot;content&quot;: &quot;This
  50. team won the world series in {{ year }}:&quot;} ]
  51. </th>
  52. <th>year</th>
  53. </thead>
  54. <tbody>
  55. <tr>
  56. <td data-content="[PASS] The New York Yankees won the World Series in 1950.">
  57. [PASS] The New York Yankees won the World Series in 1950.
  58. </td>
  59. <td data-content="[PASS] The New York Yankees won the World Series in 1950.">
  60. [PASS] The New York Yankees won the World Series in 1950.
  61. </td>
  62. <td data-content="1950">1950</td>
  63. </tr>
  64. <tr>
  65. <td data-content="[PASS] The Detroit Tigers won the World Series in 1984.">
  66. [PASS] The Detroit Tigers won the World Series in 1984.
  67. </td>
  68. <td
  69. data-content="[PASS] The Detroit Tigers won the World Series in 1984. They defeated the San Diego Padres in five games to win their fourth championship in franchise history. The Tigers were led by manager Sparky Anderson and a talented roster that included players such as Alan Trammell, Lou Whitaker, Jack Morris, and Kirk Gibson."
  70. >
  71. [PASS] The Detroit Tigers won the World Series in 1984. They defeated the San Diego
  72. Padres in five games to win their fourth championship in franchise history. The Tigers
  73. were led by manager Sparky Anderson and a talented roster that included players such as
  74. Alan Trammell, Lou Whitaker, Jack Morris, and Kirk Gibson.
  75. </td>
  76. <td data-content="1984">1984</td>
  77. </tr>
  78. <tr>
  79. <td data-content="[PASS] The Los Angeles Dodgers won the World Series in 2020.">
  80. [PASS] The Los Angeles Dodgers won the World Series in 2020.
  81. </td>
  82. <td
  83. data-content="[PASS] The Los Angeles Dodgers won the World Series in 2020. It was their first championship since 1988."
  84. >
  85. [PASS] The Los Angeles Dodgers won the World Series in 2020. It was their first
  86. championship since 1988.
  87. </td>
  88. <td data-content="2020">2020</td>
  89. </tr>
  90. <tr>
  91. <td
  92. data-content="[PASS] I&#39;m sorry, but as an AI language model, I cannot predict future events. However, the World Series in 2021 was won by the Atlanta Braves."
  93. >
  94. [PASS] I&#39;m sorry, but as an AI language model, I cannot predict future events.
  95. However, the World Series in 2021 was won by the Atlanta Braves.
  96. </td>
  97. <td
  98. data-content="[PASS] As an AI language model, I do not have knowledge of future events. However, I can tell you about the past World Series winners. The most recent World Series champions are the Los Angeles Dodgers, who won the 2020 World Series against the Tampa Bay Rays. The Dodgers have won a total of seven World Series championships in their history, with their first win coming in 1955."
  99. >
  100. [PASS] As an AI language model, I do not have knowledge of future events. However, I can
  101. tell you about the past World Series winners. The most recent World Series champions are
  102. the Los Angeles Dodgers, who won the 2020 World Series against the Tampa Bay Rays. The
  103. Dodgers have won a total of seven World Series championships in their history, with
  104. their first win coming in 1955.
  105. </td>
  106. <td data-content="2023">2023</td>
  107. </tr>
  108. </tbody>
  109. </table>
  110. </body>
  111. </html>
Tip!

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

Comments

Loading...