Update app.py
Browse files
app.py
CHANGED
|
@@ -1,6 +1,8 @@
|
|
| 1 |
import gradio as gr
|
| 2 |
from huggingface_hub import InferenceClient
|
|
|
|
| 3 |
client = InferenceClient("microsoft/phi-4")
|
|
|
|
| 4 |
def respond(message, history):
|
| 5 |
|
| 6 |
messages = [{"role": "system", "content": "You are a friendly chatbot."}]
|
|
|
|
| 1 |
import gradio as gr
|
| 2 |
from huggingface_hub import InferenceClient
|
| 3 |
+
|
| 4 |
client = InferenceClient("microsoft/phi-4")
|
| 5 |
+
|
| 6 |
def respond(message, history):
|
| 7 |
|
| 8 |
messages = [{"role": "system", "content": "You are a friendly chatbot."}]
|