Prathamesh1420 commited on
Commit
51269d3
1 Parent(s): a143b00

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -30,7 +30,7 @@ if not hasattr(st, 'llm'):
30
  # Initialize tools
31
  search_tool = SerperDevTool()
32
  scrape_tool = ScrapeWebsiteTool()
33
- read_resume = FileReadTool(file_path='./fake_resume.md')
34
 
35
  # Initialize semantic_search_resume with error handling
36
  semantic_search_resume = None
@@ -51,7 +51,7 @@ try:
51
  ),
52
  ),
53
  ),
54
- mdx='./fake_resume.md'
55
  )
56
  except Exception as e:
57
  st.error(f"Failed to initialize MDXSearchTool: {e}")
 
30
  # Initialize tools
31
  search_tool = SerperDevTool()
32
  scrape_tool = ScrapeWebsiteTool()
33
+ read_resume = FileReadTool(file_path='fake_resume.md')
34
 
35
  # Initialize semantic_search_resume with error handling
36
  semantic_search_resume = None
 
51
  ),
52
  ),
53
  ),
54
+ mdx='fake_resume.md'
55
  )
56
  except Exception as e:
57
  st.error(f"Failed to initialize MDXSearchTool: {e}")