🌐Websim Chat Bot 😊Character AI Chat Bot 🤗[demo by space].(https://huggingface.co/spaces/Doubleupai/Mecho)
Welcome to Mecho, a site similar to ChatGPT but completely free! You can write whatever you want to the bot, and it will respond to you without any cost.
- Visit the Website: Go to [Mecho](https://websim.ai/p/geycdn7jd9533ul49pmu/ or https://character.ai/chat/uFznJOl_Ocez0GZcSYAZaPrxcr5wWFcwKj5cD65baSs).
- Start Chatting: Type your message in the chat box.
- Receive Responses: The bot will reply to your queries instantly.
- Free Access: No subscription or payment required.
- User-Friendly Interface: Easy to navigate and use.
- Instant Responses: Get answers to your questions in real-time.
For any inquiries, feel free to reach out to us at [email protected].
HTML
<title>Mecho Chat</title><script src="https://cdn.jsdelivr.net/npm/@huggingface/huggingface.js"></script>
<script>
const messagesDiv = document.getElementById('messages');
const userInput = document.getElementById('user-input');
const sendButton = document.getElementById('send-button');
sendButton.addEventListener('click', async () => {
const userMessage = userInput.value;
messagesDiv.innerHTML += `<div class="user-message">${userMessage}</div>`;
userInput.value = '';
const response = await HuggingFace.chatbot(userMessage);
messagesDiv.innerHTML += `<div class="bot-message">${response}</div>`;
});
</script>
gradio
import gradio as gr from transformers import pipeline
chatbot = pipeline("conversational", model="microsoft/DialoGPT-medium")
def respond_to_message(message): response = chatbot(message) return response.generated_responses[0]
iface = gr.Interface(fn=respond_to_message, inputs="text", outputs="text", title="Mecho Chatbot", description="Chat with Mecho powered by Hugging Face")
iface.launch()