import platform
import pathlib
import os
import gradio as gr
import random
import time
from gradio_client import Client
plt = platform.system()
pathlib.WindowsPath = pathlib.PosixPath
api = os.environ['API']
def chat(message,history):
client = Client(api)
result = client.predict(
message,
api_name="/chat"
)
return result
description='''
🌍 AI Chat Bot is available worldwide in over **160 languages**.
💬 This space is powered by **Huggingface Hosting**.
🚀 This space runs **very fast** even on **CPU**.
🔗 Facebook Account.
🔗 Github Account.
'''
gr.ChatInterface(chat, title='Mohammed Alakhras AI Chat Bot 💬', description=description).launch(share=True)