wangzhang commited on
Commit
949d71e
·
1 Parent(s): 488b5be

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +12 -8
app.py CHANGED
@@ -1,9 +1,13 @@
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
@@ -12,12 +16,12 @@ def inference(message, history):
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()
 
1
  import gradio as gr
2
  from huggingface_hub import InferenceClient
3
+ from googletrans import Translator
4
 
5
  client = InferenceClient(model="https://pl0u0mrj2ag4o0-80.proxy.runpod.net")
6
+ translator = Translator()
7
 
8
  def inference(message, history):
9
+ # Translate to English
10
+ message = translator.translate(message, dest="en").text
11
  partial_message = ""
12
  for token in client.text_generation(message, max_new_tokens=1024, stream=True):
13
  partial_message += token
 
16
  gr.ChatInterface(
17
  inference,
18
  chatbot=gr.Chatbot(height=300),
19
+ textbox=gr.Textbox(placeholder="Please ask your question here...", container=False, scale=7),
20
+ description="This is a chatbot trained on the Llama2-7b model.",
21
+ title="SequoiaDB AI",
22
+ examples=["What is SequioaDB?", "What is SequioaDB's license?", "What is SequioaDB's official website?"],
23
+ retry_btn="Retry",
24
+ undo_btn="Undo",
25
+ clear_btn="Clear",
26
+ submit_btn="Submit",
27
  ).queue().launch()