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): from gradio_client import Client client = Client("ysharma/Chat_with_Meta_llama3_8b") result = client.predict( message=message, request=0.95, param_3=512, 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.
BY: Mohammed Alakhras ☑️

''' #gr.ChatInterface(chat, title='Mohammed Alakhras AI Chat Bot 💬', description=description).launch() gr.Interface(fn=chat, inputs="text",outputs="text", title='Mohammed Alakhras AI Chat Bot 💬', description=description).launch()