Ethics and Autonomous Cars

Autonomous cars are one of the AI visions of the future. Self-driving vehicles can eliminate accidents, increase efficiency, eliminate traffic jams, save time, and make our work commute more pleasant. However, the vision of a fully autonomous car has not…

Workflow Automation Platforms

Workflow Automation platforms allow users to create and manage automated workflows involving multiple applications or services. They help automate tasks such as sending emails, updating CRM records, or posting social media updates. Workflow automation platforms connect various applications, services, and…

Riding the Wave, Protecting the Blue

Riding the Wave, Protecting the Blue Surfing and Environmental Harmony As surfers, we have a natural bond with the ocean. Yet, this vast blue world faces threats from plastic pollution, climate change, and more. At AMAS, we aim not only…

async function sendMessage() { const userInput = document.getElementById('userInput').value; const chatResponseDiv = document.getElementById('chatResponse'); if (!userInput) { chatResponseDiv.innerHTML = "

Please enter a message.

"; return; } chatResponseDiv.innerHTML = "

Sending...

"; try { const response = await fetch('http://44.222.167.138:5000/chat', { // Replace with your ECS public IP method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify({ message: userInput }) }); if (response.ok) { const data = await response.json(); chatResponseDiv.innerHTML = `

Bot: ${data.message}

`; } else { chatResponseDiv.innerHTML = "

Error communicating with chatbot.

"; } } catch (error) { console.error('Error:', error); chatResponseDiv.innerHTML = "

Unable to reach chatbot server.

"; } }