<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Éditeur Intelligent</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 20px;
}
#conversation {
margin-top: 20px;
font-size: 18px;
}
#voice-button {
padding: 10px 20px;
font-size: 16px;
cursor: pointer;
background-color: #007bff;
color: white;
border: none;
border-radius: 5px;
}
#voice-button:active {
background-color: #0056b3;
}
#user-input {
width: 100%;
padding: 10px;
font-size: 16px;
margin-top: 20px;
}
</style>
</head>
<body>
<h1>Éditeur Intelligent</h1>
<button id="voice-button">🎤 Parler</button>
<input type="text" id="user-input" placeholder="Tapez votre question ici...">
<div id="conversation"></div>
<script>
const voiceButton = document.getElementById('voice-button');
const userInput = document.getElementById('user-input');
const conversationDiv = document.getElementById('conversation');
// Fonction pour interroger une API gratuite (exemple : OpenAssistant)
async function getResponseFromAI(prompt) {
try {
const response = await fetch(
'https://api.openassistant.io/v1/chat',
{
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify({
prompt: prompt,
max_tokens: 100
})
}
);
const data = await response.json();
return data.choices[0].text.trim(); // Retourne la réponse de l'IA
} catch (error) {
console.error('Erreur lors de la requête API :', error);
return "Désolé, je n'ai pas pu obtenir de réponse pour le moment.";
}
}
// Fonction pour activer la reconnaissance vocale
function startVoiceRecognition() {
const recognition = new (window.SpeechRecognition || window.webkitSpeechRecognition)();
recognition.lang = 'fr-FR';
recognition.interimResults = false;
recognition.maxAlternatives = 1;
recognition.onresult = async (event) => {
const spokenText = event.results[0][0].transcript.toLowerCase();
userInput.value = spokenText; // Afficher la question dans l'input
await sendQuestionToAI(spokenText); // Envoyer la question à l'IA
};
recognition.onerror = (event) => {
console.error('Erreur de reconnaissance vocale :', event.error);
conversationDiv.innerHTML += `<p><strong>Moi :</strong> Je n'ai pas compris. Pouvez-vous répéter, s'il vous plaît ?</p>`;
};
recognition.start();
}
// Fonction pour envoyer une question à l'IA et afficher la réponse
async function sendQuestionToAI(question) {
conversationDiv.innerHTML += `<p><strong>Vous :</strong> ${question}</p>`;
// Obtenir une réponse de l'IA
const responseText = await getResponseFromAI(question);
conversationDiv.innerHTML += `<p><strong>Moi :</strong> ${responseText}</p>`;
// Lire la réponse à voix haute
const utterance = new SpeechSynthesisUtterance(responseText);
const voices = speechSynthesis.getVoices();
const frenchVoice = voices.find(voice => voice.lang === 'fr-FR');
if (frenchVoice) {
utterance.voice = frenchVoice;
}
utterance.rate = 0.9;
utterance.pitch = 1.2;
speechSynthesis.speak(utterance);
}
// Activer la reconnaissance vocale lors du clic sur le bouton
voiceButton.addEventListener('click', startVoiceRecognition);
// Envoyer la question lors de la pression sur "Entrée"
userInput.addEventListener('keypress', async (event) => {
if (event.key === 'Enter') {
const question = userInput.value.trim();
if (question) {
await sendQuestionToAI(question);
userInput.value = ''; // Effacer l'input après envoi
}
}
});
</script>
</body>
</html>