Spaces:
Paused
Paused
File size: 1,451 Bytes
a2cbfcc |
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 |
<!DOCTYPE html>
<html lang="ar">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>مؤتمر الذكاء الاصطناعي</title>
<style>
body {
font-family: 'Arial', sans-serif;
direction: rtl;
text-align: right;
background-color: #f0f4f8;
padding: 20px;
}
h2 {
color: #333;
}
form {
margin-bottom: 20px;
}
input[type="text"] {
width: 60%;
padding: 8px;
margin-right: 10px;
}
button {
padding: 8px 12px;
background-color: #007bff;
color: white;
border: none;
cursor: pointer;
}
button:hover {
background-color: #0056b3;
}
ul {
list-style-type: none;
padding: 0;
}
li {
background: white;
margin: 8px 0;
padding: 10px;
border-radius: 5px;
border-right: 4px solid #007bff;
}
</style>
</head>
<body>
<h2>مناظرة بين العقول: نورا، ChatGPT، Claude، Bard</h2>
<form method="post">
<input type="text" name="question" placeholder="اكتب سؤالاً للنقاش" required>
<button type="submit">أرسل</button>
</form>
{% if responses %}
<h3>الردود:</h3>
<ul>
{% for name, reply in responses.items() %}
<li><strong>{{ name }}:</strong> {{ reply }}</li>
{% endfor %}
</ul>
{% endif %}
</body>
</html>
|