wangzhang commited on
Commit
488b5be
·
1 Parent(s): 7d95e72

Upload app.py

Browse files
Files changed (1) hide show
  1. app.py +21 -1
app.py CHANGED
@@ -1,3 +1,23 @@
1
  import gradio as gr
 
2
 
3
- gr.Interface.load("models/wangzhang/nlp-sdb-7b").launch()
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  import gradio as gr
2
+ from huggingface_hub import InferenceClient
3
 
4
+ client = InferenceClient(model="https://pl0u0mrj2ag4o0-80.proxy.runpod.net")
5
+
6
+ def inference(message, history):
7
+ partial_message = ""
8
+ for token in client.text_generation(message, max_new_tokens=1024, stream=True):
9
+ partial_message += token
10
+ yield partial_message
11
+
12
+ gr.ChatInterface(
13
+ inference,
14
+ chatbot=gr.Chatbot(height=300),
15
+ textbox=gr.Textbox(placeholder="你可以问我任何关于巨杉数据库的问题!", container=False, scale=7),
16
+ description="这是巨杉数据库旗下的AI智能助手由Llama2-7b为原型打造.",
17
+ title="巨杉数据库AI智能助手",
18
+ examples=["巨杉数据库有哪些优势?" "巨杉数据库有哪些功能"],
19
+ retry_btn="重试",
20
+ undo_btn="撤销",
21
+ clear_btn="清除",
22
+ submit_btn="提问",
23
+ ).queue().launch()