Spaces:
No application file
No application file
| import gradio as gr | |
| def chat(message, history): | |
| return f"Eissa AI: {message}" | |
| demo = gr.ChatInterface(chat) | |
| demo.launch() |
| import gradio as gr | |
| def chat(message, history): | |
| return f"Eissa AI: {message}" | |
| demo = gr.ChatInterface(chat) | |
| demo.launch() |