gvartanian2010 commited on
Commit
656c3d4
·
verified ·
1 Parent(s): 2c48b02

error correction

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -1,6 +1,6 @@
1
  import random
2
  import gradio as gr
3
- import huggingface_hub import InferenceClient
4
 
5
  client = InferenceClient("Qwen/Qwen2.5-7B-Instruct")
6
 
@@ -21,3 +21,5 @@ def respond(message, history):
21
 
22
  chatbot = gr.ChatInterface(respond)
23
  chatbot.launch()
 
 
 
1
  import random
2
  import gradio as gr
3
+ from huggingface_hub import InferenceClient
4
 
5
  client = InferenceClient("Qwen/Qwen2.5-7B-Instruct")
6
 
 
21
 
22
  chatbot = gr.ChatInterface(respond)
23
  chatbot.launch()
24
+
25
+