AI_Chat / app.py
MohammedAlakhras's picture
Create app.py
e3ce00c
raw
history blame
No virus
843 Bytes
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='''
<br/>
🌍 AI Chat Bot is available worldwide in over **160 languages**.<br/>
πŸ’¬ This space is powered by **Huggingface Hosting**.<br/>
πŸš€ This space runs **very fast** even on **CPU**.<br/>
<a href="https://www.facebook.com/MohammedAlakras">πŸ”— Facebook Account. </a><br/>
<a href="https://github.com/mohammedalakhras/">πŸ”— Github Account. </a><br/>
'''
gr.ChatInterface(chat, title='Mohammed Alakhras AI Chat Bot πŸ’¬', description=description).launch(share=True)