Spaces:
Running
Running
| <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> | |