fakeym commited on
Commit
09809e6
1 Parent(s): 4ed1c06

Update travel/travel.py

Browse files
Files changed (1) hide show
  1. travel/travel.py +9 -8
travel/travel.py CHANGED
@@ -220,14 +220,15 @@ work_flow.set_entry_point("supervisor")
220
 
221
  graph = work_flow.compile()
222
  history_message = []
223
- chat("北京的旅游攻略")
224
-
225
- # iface_chat_file = gr.ChatInterface(
226
- # fn=chat,
227
- # examples=['北京的经纬度是多少', '天安门附近的餐馆有哪些','北京的旅游攻略'],
228
- # title="Chat File Interface",
229
- # )
230
- # iface_chat_file.launch(share=True, server_name='0.0.0.0', server_port=5001)
 
231
  # a=time.time()
232
  # res = graph.invoke({"messages":[HumanMessage(content="天安门附近的餐馆有哪些")]})
233
  # print(time.time()-a)
 
220
 
221
  graph = work_flow.compile()
222
  history_message = []
223
+ # chat("北京的旅游攻略")
224
+
225
+ iface_chat_file = gr.ChatInterface(
226
+ fn=chat,
227
+ examples=['北京天安门的经纬度是多少', '天安门附近的餐馆有哪些','北京的旅游攻略'],
228
+ title="聊天机器人",
229
+ description="我是一个聊天机器人可以帮你查找地址的经纬度以及周边信息,并且可以提供旅游攻略",
230
+ )
231
+ iface_chat_file.launch(share=True, server_name='0.0.0.0', server_port=5001)
232
  # a=time.time()
233
  # res = graph.invoke({"messages":[HumanMessage(content="天安门附近的餐馆有哪些")]})
234
  # print(time.time()-a)