dball commited on
Commit
5fb9663
·
verified ·
1 Parent(s): ae6c007

Remove remaining langchain code

Browse files

Remove code `requests_get_tool = Tool.from_langchain(RequestsGetTool())`
that I forgot to remove before.
It is not needed but causes a crash because `Tool` is no longer imported.

Files changed (1) hide show
  1. app.py +0 -1
app.py CHANGED
@@ -65,7 +65,6 @@ model_id='Qwen/Qwen2.5-Coder-32B-Instruct',# it is possible that this model may
65
  custom_role_conversions=None,
66
  )
67
 
68
- requests_get_tool = Tool.from_langchain(RequestsGetTool())
69
  search_tool = DuckDuckGoSearchTool()
70
 
71
  with open("prompts.yaml", 'r') as stream:
 
65
  custom_role_conversions=None,
66
  )
67
 
 
68
  search_tool = DuckDuckGoSearchTool()
69
 
70
  with open("prompts.yaml", 'r') as stream: