IvanLee commited on
Commit
469f4d9
·
verified ·
1 Parent(s): fc2b0bc

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -5
app.py CHANGED
@@ -25,11 +25,11 @@ def generate_response(prompt):
25
  return chain.invoke(prompt)
26
 
27
  iface = gr.Interface(
28
- fn=generate_response, # 函數
29
- inputs="text", # 輸入類型
30
- outputs="text", # 輸出類型
31
- title="GPT-3.5 Chatbot with LangChain", # 標題
32
- description="Ask anything and get a response from GPT-3.5." # 描述
33
 
34
  )
35
 
 
25
  return chain.invoke(prompt)
26
 
27
  iface = gr.Interface(
28
+ fn=generate_response,
29
+ inputs="text",
30
+ outputs="text",
31
+ title="A cow",
32
+ description="哞哞哞"
33
 
34
  )
35