Top Ad unit 728 × 90

  • Join us on Facebook

    تابع
  • إنظم إلينا عبر جوجل + حيث أكثر من 33 ألف يتابعنا.

    تابع
  • إنظم لأزيد من 40 ألف متابع لنا عبر تويتر.

    تابع
  • تابعنا على يوتيوب حيث أكثر من مليون و 300 ألف متابع لفيدوهاتنا.

    تابع

حلقات

من تقديم أمين رغيب من الإثنين إلى الخميس

المزيد
const chatContainer = document.getElementById('chat-container'); const chatLog = document.getElementById('chat-log'); const userInput = document.getElementById('user-input'); const sendButton = document.getElementById('send-button'); const apiKey = 'YOUR_OPENAI_API_KEY'; // استبدل بمفتاح API الخاص بك sendButton.addEventListener('click', async () => { const userMessage = userInput.value; if (userMessage.trim() === '') return; appendMessage(userMessage, 'user'); try { const botMessage = await getBotResponse(userMessage); appendMessage(botMessage, 'bot'); } catch (error) { console.error('Error fetching bot response:', error); } userInput.value = ''; }); async function getBotResponse(userMessage) { const response = await fetch('https://api.openai.com/v1/chat/completions', { method: 'POST', headers: { 'Content-Type': 'application/json', 'Authorization': `Bearer ${apiKey}` }, body: JSON.stringify({ model: 'gpt-3.5-turbo', messages: [{ role: 'system', content: 'You are a helpful assistant.' }, { role: 'user', content: userMessage }] }) }); const data = await response.json(); return data.choices[0].message.content.trim(); } function appendMessage(message, role) { const messageElement = document.createElement('div'); messageElement.classList.add(role + '-message'); messageElement.textContent = message; chatLog.appendChild(messageElement); chatContainer.scrollTop = chatContainer.scrollHeight; }
  • الرئيسية
  • دروس
  • برامج
  • أندرويد
  • بلوجر
  • مقالات
  • فيس بوك
Offensive Security Channel,Kali Tools listings, an chandipa-dz on 05:33 5
البث المباشرة مع رغيب أمين للإجابة على تساؤلاتكم التقنية من الإثنين إلى الخميس. شاهد الأن !
730 بتوقيت غرينيتش 2230 بتوقيت مكة المكرمة
جميع الحقوق محفوظة لـ dzdz
تصميم و تكويد : تصميم عالم المدون
Powered by Blogger.