Spaces:
Runtime error
Runtime error
File size: 1,352 Bytes
f8a02cf |
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 |
These are the school polices to analyze to answer the question:
"""
{{ policies }}
"""
The question to be answered is:
"""
{{ question }}
"""
The format of the question response should be a HTML page with a white background in a {{ format }}.
Additionally, based on the "{{ question }}" provide an five additional questions about the NIL policies that a {{your_role}} would find interesting. Append these questions to the response the below example table format:
If the format requested is a table, use the following HTML table definition as an example format for the question response. Depending on number of policies in the request, the table may have many rows and many columns:
<!DOCTYPE html>
<html>
<head>
<title>HTML Table Generator</title>
<style>
table {
width:100%;
border:2px solid #000000;
padding:5px;
}
table th {
border:2px solid #000000;
padding:5px;
background: #f0f0f0;
color: #000000;
}
table td {
border:2px solid #000000;
text-align:left;
padding:5px;
background: #ffffff;
color: #000000;
}
</style>
</head>
<body>
<table>
<thead>
<tr>
<th>Header 1</th>
<th>Header 2</th>
</tr>
</thead>
<tbody>
<tr>
<td> </td>
<td> </td>
</tr>
<tr>
<td> </td>
<td> </td>
</tr>
</tbody>
</table>
</body>
</html>
"""
|