Skip to content

Commit

Permalink
fix: issue #528
Browse files Browse the repository at this point in the history
  • Loading branch information
manhphim committed Oct 14, 2024
1 parent e8b9336 commit 41855ab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from selenium.webdriver.chrome.service import Service as ChromeService
from webdriver_manager.chrome import ChromeDriverManager
from selenium.common.exceptions import WebDriverException
from lib_resume_builder_AIHawk import Resume, FacadeManager, ResumeGenerator
from lib_resume_builder_AIHawk import Resume, FacadeManager, ResumeGenerator, StyleManager
from src.utils import chrome_browser_options
from src.llm.llm_manager import GPTAnswerer
from src.aihawk_authenticator import AIHawkAuthenticator
Expand Down Expand Up @@ -158,7 +158,7 @@ def init_browser() -> webdriver.Chrome:

def create_and_run_bot(parameters, llm_api_key):
try:
style_manager = FacadeManager.StyleManager()
style_manager = StyleManager()
resume_generator = ResumeGenerator()
with open(parameters['uploads']['plainTextResume'], "r", encoding='utf-8') as file:
plain_text_resume = file.read()
Expand Down

0 comments on commit 41855ab

Please sign in to comment.