SC999 commited on
Commit
d5cde43
1 Parent(s): 1e807cc

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -34,7 +34,7 @@ def response(message, history):
34
  # 將 Gradio 的歷史紀錄轉換為 Gemini 的格式
35
  chat.history = transform_history(history)
36
 
37
- prompt = "你是一個半導體智慧製造專家,請用專業的角度回應接下來的問題!"
38
  if len(history) == 0:
39
  prompt_message = f"{prompt} \n {message}"
40
  else:
@@ -52,5 +52,5 @@ def response(message, history):
52
 
53
  # 建立 Gradio 聊天界面
54
  gr.ChatInterface(response,
55
- title='Gemini Chat',
56
  textbox=gr.Textbox(placeholder="Question to Gemini")).launch(share=True)
 
34
  # 將 Gradio 的歷史紀錄轉換為 Gemini 的格式
35
  chat.history = transform_history(history)
36
 
37
+ prompt = "你是一個半導體智慧製造專家,熟悉半導體製程及生產過程,請用專業的角度回應接下來的問題!"
38
  if len(history) == 0:
39
  prompt_message = f"{prompt} \n {message}"
40
  else:
 
52
 
53
  # 建立 Gradio 聊天界面
54
  gr.ChatInterface(response,
55
+ title='智慧製造小幫手',
56
  textbox=gr.Textbox(placeholder="Question to Gemini")).launch(share=True)