Siddartha10 commited on
Commit
2fdb7f1
·
verified ·
1 Parent(s): 0a32e01

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +0 -4
app.py CHANGED
@@ -176,10 +176,6 @@ chain_rag_tool = Tool(name="RAG_Chain",
176
  description="RAG chain for question answering."
177
  )
178
 
179
- app = FastAPI(
180
- title='Example',
181
- )
182
-
183
  tools = [chain_rag_tool, api_tool]
184
  llm_with_tools = llm_1.bind(functions=[format_tool_to_openai_function(t) for t in tools])
185
 
 
176
  description="RAG chain for question answering."
177
  )
178
 
 
 
 
 
179
  tools = [chain_rag_tool, api_tool]
180
  llm_with_tools = llm_1.bind(functions=[format_tool_to_openai_function(t) for t in tools])
181