├── .actrc ├── .env.template ├── .gitattributes ├── .github ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug-issue.yml │ ├── config.yml │ ├── documentation-issue.yml │ └── enhancement-issue.yml └── workflows │ ├── auto_assign.yaml │ ├── cla.yml │ ├── py_test.yml │ ├── stale.yml │ └── test_env_setup_and_run_workflow.yml ├── .gitignore ├── .pylintrc ├── .vscode ├── launch.json └── settings.json ├── LICENSE ├── README.md ├── api_playground ├── google_custom_search.http └── readme.md ├── assets ├── AIHawk.png └── resume_schema.yaml ├── data_folder ├── plain_text_resume.yaml ├── secrets.yaml └── work_preferences.yaml ├── docker-compose-tensorzero.yml ├── docs ├── CONTRIBUTING.md ├── Job Search Assistant demo.mp4 ├── LICENSE ├── configuration.md ├── data_folder_example │ ├── plain_text_resume.yaml │ ├── secrets.yaml │ └── work_preferences.yaml ├── development_diagrams.md ├── getting_web_search_engine_creds.md ├── guide_to_autostart_aihawk.pdf ├── guide_to_setup_ollama_and_gemini.pdf ├── guide_yaml_sections.pdf ├── planning.md ├── project_management.md ├── tensorzero_setup.md ├── tools.md ├── troubleshooting.md └── workflow_diagrams.md ├── funny_sounds ├── readme.md └── security_check.wav ├── poetry.lock ├── pyproject.toml ├── pytest.ini ├── src ├── __init__.py ├── authenticator.py ├── bot_facade.py ├── config.py ├── constants.py ├── custom_exception.py ├── job.py ├── jobContext.py ├── job_application.py ├── job_application_profile.py ├── job_application_saver.py ├── job_applier.py ├── job_manager.py ├── job_portals │ ├── __init__.py │ ├── application_form_elements.py │ ├── base_job_portal.py │ └── lever │ │ ├── __init__.py │ │ ├── application_page.py │ │ ├── authenticator.py │ │ ├── job_page.py │ │ ├── jobs_page.py │ │ └── lever.py ├── llm │ ├── ai_answerer.py │ ├── llm_manager.py │ └── prompts.py ├── logger.py ├── main.py ├── regex_utils.py ├── services │ ├── __init__.py │ └── web_search_engine.py └── utils │ ├── __init__.py │ ├── browser_utils.py │ ├── chrome_utils.py │ ├── string_utils.py │ └── time_utils.py ├── tensorzero_config └── tensorzero.toml └── tests ├── integration ├── __init__.py ├── test_application_saver_integration.py ├── test_integration_tests.py ├── test_lever_job_portal.py └── test_web_search_engine_integration.py ├── resources └── lever_application_pages │ ├── job1 │ ├── Foodstuffs North Island - Commercial Analyst - Wholesale_application_page.html │ ├── Foodstuffs North Island - Commercial Analyst - Wholesale_application_page_files │ │ ├── api.js │ │ ├── application.js │ │ ├── awliUtil.js │ │ ├── awliV3.js │ │ ├── bug-snag.js │ │ ├── cbb7f07c-dfbf-4253-a20c-d516f64d7941-1505174008497.png │ │ ├── debounce.min.js │ │ ├── hcaptcha(1).html │ │ ├── hcaptcha(2).html │ │ ├── hcaptcha(3).html │ │ ├── hcaptcha-enclave(1).html │ │ ├── hcaptcha-enclave.html │ │ ├── hcaptcha.html │ │ ├── in.js │ │ ├── jquery-3.6.1.min.js │ │ ├── js │ │ ├── lever-logo-full.svg │ │ ├── parseResume.js │ │ ├── retrieveLocations.js │ │ └── secure-api.js │ ├── Foodstuffs North Island - Commercial Analyst - Wholesale_confirmation_page.html │ ├── Foodstuffs North Island - Commercial Analyst - Wholesale_confirmation_page_files │ │ ├── awliWidget │ │ ├── bug-snag.js │ │ ├── cbb7f07c-dfbf-4253-a20c-d516f64d7941-1505174008497.png │ │ ├── js │ │ ├── lever-logo-full.svg │ │ └── saved_resource │ ├── Foodstuffs North Island - Commercial Analyst - Wholesale_job_page.html │ └── Foodstuffs North Island - Commercial Analyst - Wholesale_job_page_files │ │ ├── bug-snag.js │ │ ├── cbb7f07c-dfbf-4253-a20c-d516f64d7941-1505174008497.png │ │ ├── js │ │ └── lever-logo-full.svg │ └── job2 │ ├── Agiloft - Senior Software Engineer, Full Stack_application_page.html │ ├── Agiloft - Senior Software Engineer, Full Stack_application_page_files │ ├── 3e6f9e40-90d3-496a-820d-7ae3201a4d71-1704481877156.png │ ├── api.js │ ├── application.js │ ├── bug-snag.js │ ├── debounce.min.js │ ├── hcaptcha(1).html │ ├── hcaptcha(2).html │ ├── hcaptcha(3).html │ ├── hcaptcha-enclave(1).html │ ├── hcaptcha-enclave.html │ ├── hcaptcha.html │ ├── jquery-3.6.1.min.js │ ├── js │ ├── lever-logo-full.svg │ ├── parseResume.js │ ├── retrieveLocations.js │ └── secure-api.js │ ├── Agiloft - Senior Software Engineer, Full Stack_confirmation_page.html │ ├── Agiloft - Senior Software Engineer, Full Stack_confirmation_page_files │ ├── 3e6f9e40-90d3-496a-820d-7ae3201a4d71-1704481877156.png │ ├── bug-snag.js │ ├── js │ └── lever-logo-full.svg │ ├── Agiloft - Senior Software Engineer, Full Stack_job_page.html │ └── Agiloft - Senior Software Engineer, Full Stack_job_page_files │ ├── 3e6f9e40-90d3-496a-820d-7ae3201a4d71-1704481877156.png │ ├── bug-snag.js │ ├── js │ └── lever-logo-full.svg └── unit ├── __init__.py ├── lever └── test_application_page.py ├── search_engine ├── test_search_engine_query_builder.py ├── test_web_search_engine.py └── test_web_search_engine_factory.py ├── test_aihawk_bot_facade.py ├── test_aihawk_easy_applier.py ├── test_aihawk_job_manager.py ├── test_job_application_profile.py └── test_regex_utils.py /.actrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/.actrc -------------------------------------------------------------------------------- /.env.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/.env.template -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | custom: 2 | - https://giveth.io/project/job_hunt_assistant -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-issue.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/.github/ISSUE_TEMPLATE/bug-issue.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/documentation-issue.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/.github/ISSUE_TEMPLATE/documentation-issue.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/enhancement-issue.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/.github/ISSUE_TEMPLATE/enhancement-issue.yml -------------------------------------------------------------------------------- /.github/workflows/auto_assign.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/.github/workflows/auto_assign.yaml -------------------------------------------------------------------------------- /.github/workflows/cla.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/.github/workflows/cla.yml -------------------------------------------------------------------------------- /.github/workflows/py_test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/.github/workflows/py_test.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.github/workflows/test_env_setup_and_run_workflow.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/.github/workflows/test_env_setup_and_run_workflow.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/.gitignore -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/.pylintrc -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/README.md -------------------------------------------------------------------------------- /api_playground/google_custom_search.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/api_playground/google_custom_search.http -------------------------------------------------------------------------------- /api_playground/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/api_playground/readme.md -------------------------------------------------------------------------------- /assets/AIHawk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/assets/AIHawk.png -------------------------------------------------------------------------------- /assets/resume_schema.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/assets/resume_schema.yaml -------------------------------------------------------------------------------- /data_folder/plain_text_resume.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/data_folder/plain_text_resume.yaml -------------------------------------------------------------------------------- /data_folder/secrets.yaml: -------------------------------------------------------------------------------- 1 | llm_api_key: 'sk-11KRr4uuTwpRGfeRTfj1T9BlbkFJjP8QTrswHU1yGruru2FR' 2 | -------------------------------------------------------------------------------- /data_folder/work_preferences.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/data_folder/work_preferences.yaml -------------------------------------------------------------------------------- /docker-compose-tensorzero.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/docker-compose-tensorzero.yml -------------------------------------------------------------------------------- /docs/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/docs/CONTRIBUTING.md -------------------------------------------------------------------------------- /docs/Job Search Assistant demo.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/docs/Job Search Assistant demo.mp4 -------------------------------------------------------------------------------- /docs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/docs/LICENSE -------------------------------------------------------------------------------- /docs/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/docs/configuration.md -------------------------------------------------------------------------------- /docs/data_folder_example/plain_text_resume.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/docs/data_folder_example/plain_text_resume.yaml -------------------------------------------------------------------------------- /docs/data_folder_example/secrets.yaml: -------------------------------------------------------------------------------- 1 | llm_api_key: 'sk-11KRr4uuTwpRGfeRTfj1T9BlbkFJjP8QTrswHU1yGruru2FR' -------------------------------------------------------------------------------- /docs/data_folder_example/work_preferences.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/docs/data_folder_example/work_preferences.yaml -------------------------------------------------------------------------------- /docs/development_diagrams.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/docs/development_diagrams.md -------------------------------------------------------------------------------- /docs/getting_web_search_engine_creds.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/docs/getting_web_search_engine_creds.md -------------------------------------------------------------------------------- /docs/guide_to_autostart_aihawk.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/docs/guide_to_autostart_aihawk.pdf -------------------------------------------------------------------------------- /docs/guide_to_setup_ollama_and_gemini.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/docs/guide_to_setup_ollama_and_gemini.pdf -------------------------------------------------------------------------------- /docs/guide_yaml_sections.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/docs/guide_yaml_sections.pdf -------------------------------------------------------------------------------- /docs/planning.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/project_management.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/docs/project_management.md -------------------------------------------------------------------------------- /docs/tensorzero_setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/docs/tensorzero_setup.md -------------------------------------------------------------------------------- /docs/tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/docs/tools.md -------------------------------------------------------------------------------- /docs/troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/docs/troubleshooting.md -------------------------------------------------------------------------------- /docs/workflow_diagrams.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/docs/workflow_diagrams.md -------------------------------------------------------------------------------- /funny_sounds/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/funny_sounds/readme.md -------------------------------------------------------------------------------- /funny_sounds/security_check.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/funny_sounds/security_check.wav -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/pytest.ini -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/authenticator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/src/authenticator.py -------------------------------------------------------------------------------- /src/bot_facade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/src/bot_facade.py -------------------------------------------------------------------------------- /src/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/src/config.py -------------------------------------------------------------------------------- /src/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/src/constants.py -------------------------------------------------------------------------------- /src/custom_exception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/src/custom_exception.py -------------------------------------------------------------------------------- /src/job.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/src/job.py -------------------------------------------------------------------------------- /src/jobContext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/src/jobContext.py -------------------------------------------------------------------------------- /src/job_application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/src/job_application.py -------------------------------------------------------------------------------- /src/job_application_profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/src/job_application_profile.py -------------------------------------------------------------------------------- /src/job_application_saver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/src/job_application_saver.py -------------------------------------------------------------------------------- /src/job_applier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/src/job_applier.py -------------------------------------------------------------------------------- /src/job_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/src/job_manager.py -------------------------------------------------------------------------------- /src/job_portals/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/job_portals/application_form_elements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/src/job_portals/application_form_elements.py -------------------------------------------------------------------------------- /src/job_portals/base_job_portal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/src/job_portals/base_job_portal.py -------------------------------------------------------------------------------- /src/job_portals/lever/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/job_portals/lever/application_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/src/job_portals/lever/application_page.py -------------------------------------------------------------------------------- /src/job_portals/lever/authenticator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/src/job_portals/lever/authenticator.py -------------------------------------------------------------------------------- /src/job_portals/lever/job_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/src/job_portals/lever/job_page.py -------------------------------------------------------------------------------- /src/job_portals/lever/jobs_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/src/job_portals/lever/jobs_page.py -------------------------------------------------------------------------------- /src/job_portals/lever/lever.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/src/job_portals/lever/lever.py -------------------------------------------------------------------------------- /src/llm/ai_answerer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/src/llm/ai_answerer.py -------------------------------------------------------------------------------- /src/llm/llm_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/src/llm/llm_manager.py -------------------------------------------------------------------------------- /src/llm/prompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/src/llm/prompts.py -------------------------------------------------------------------------------- /src/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/src/logger.py -------------------------------------------------------------------------------- /src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/src/main.py -------------------------------------------------------------------------------- /src/regex_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/src/regex_utils.py -------------------------------------------------------------------------------- /src/services/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/services/web_search_engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/src/services/web_search_engine.py -------------------------------------------------------------------------------- /src/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/utils/browser_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/src/utils/browser_utils.py -------------------------------------------------------------------------------- /src/utils/chrome_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/src/utils/chrome_utils.py -------------------------------------------------------------------------------- /src/utils/string_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/src/utils/string_utils.py -------------------------------------------------------------------------------- /src/utils/time_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/src/utils/time_utils.py -------------------------------------------------------------------------------- /tensorzero_config/tensorzero.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/tensorzero_config/tensorzero.toml -------------------------------------------------------------------------------- /tests/integration/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/test_application_saver_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/tests/integration/test_application_saver_integration.py -------------------------------------------------------------------------------- /tests/integration/test_integration_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/tests/integration/test_integration_tests.py -------------------------------------------------------------------------------- /tests/integration/test_lever_job_portal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/tests/integration/test_lever_job_portal.py -------------------------------------------------------------------------------- /tests/integration/test_web_search_engine_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/tests/integration/test_web_search_engine_integration.py -------------------------------------------------------------------------------- /tests/resources/lever_application_pages/job1/Foodstuffs North Island - Commercial Analyst - Wholesale_application_page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/tests/resources/lever_application_pages/job1/Foodstuffs North Island - Commercial Analyst - Wholesale_application_page.html -------------------------------------------------------------------------------- /tests/resources/lever_application_pages/job1/Foodstuffs North Island - Commercial Analyst - Wholesale_application_page_files/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/tests/resources/lever_application_pages/job1/Foodstuffs North Island - Commercial Analyst - Wholesale_application_page_files/api.js -------------------------------------------------------------------------------- /tests/resources/lever_application_pages/job1/Foodstuffs North Island - Commercial Analyst - Wholesale_application_page_files/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/tests/resources/lever_application_pages/job1/Foodstuffs North Island - Commercial Analyst - Wholesale_application_page_files/application.js -------------------------------------------------------------------------------- /tests/resources/lever_application_pages/job1/Foodstuffs North Island - Commercial Analyst - Wholesale_application_page_files/awliUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/tests/resources/lever_application_pages/job1/Foodstuffs North Island - Commercial Analyst - Wholesale_application_page_files/awliUtil.js -------------------------------------------------------------------------------- /tests/resources/lever_application_pages/job1/Foodstuffs North Island - Commercial Analyst - Wholesale_application_page_files/awliV3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/tests/resources/lever_application_pages/job1/Foodstuffs North Island - Commercial Analyst - Wholesale_application_page_files/awliV3.js -------------------------------------------------------------------------------- /tests/resources/lever_application_pages/job1/Foodstuffs North Island - Commercial Analyst - Wholesale_application_page_files/bug-snag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/tests/resources/lever_application_pages/job1/Foodstuffs North Island - Commercial Analyst - Wholesale_application_page_files/bug-snag.js -------------------------------------------------------------------------------- /tests/resources/lever_application_pages/job1/Foodstuffs North Island - Commercial Analyst - Wholesale_application_page_files/cbb7f07c-dfbf-4253-a20c-d516f64d7941-1505174008497.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/tests/resources/lever_application_pages/job1/Foodstuffs North Island - Commercial Analyst - Wholesale_application_page_files/cbb7f07c-dfbf-4253-a20c-d516f64d7941-1505174008497.png -------------------------------------------------------------------------------- /tests/resources/lever_application_pages/job1/Foodstuffs North Island - Commercial Analyst - Wholesale_application_page_files/debounce.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/tests/resources/lever_application_pages/job1/Foodstuffs North Island - Commercial Analyst - Wholesale_application_page_files/debounce.min.js -------------------------------------------------------------------------------- /tests/resources/lever_application_pages/job1/Foodstuffs North Island - Commercial Analyst - Wholesale_application_page_files/hcaptcha(1).html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/tests/resources/lever_application_pages/job1/Foodstuffs North Island - Commercial Analyst - Wholesale_application_page_files/hcaptcha(1).html -------------------------------------------------------------------------------- /tests/resources/lever_application_pages/job1/Foodstuffs North Island - Commercial Analyst - Wholesale_application_page_files/hcaptcha(2).html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/tests/resources/lever_application_pages/job1/Foodstuffs North Island - Commercial Analyst - Wholesale_application_page_files/hcaptcha(2).html -------------------------------------------------------------------------------- /tests/resources/lever_application_pages/job1/Foodstuffs North Island - Commercial Analyst - Wholesale_application_page_files/hcaptcha(3).html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/tests/resources/lever_application_pages/job1/Foodstuffs North Island - Commercial Analyst - Wholesale_application_page_files/hcaptcha(3).html -------------------------------------------------------------------------------- /tests/resources/lever_application_pages/job1/Foodstuffs North Island - Commercial Analyst - Wholesale_application_page_files/hcaptcha-enclave(1).html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/tests/resources/lever_application_pages/job1/Foodstuffs North Island - Commercial Analyst - Wholesale_application_page_files/hcaptcha-enclave(1).html -------------------------------------------------------------------------------- /tests/resources/lever_application_pages/job1/Foodstuffs North Island - Commercial Analyst - Wholesale_application_page_files/hcaptcha-enclave.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/tests/resources/lever_application_pages/job1/Foodstuffs North Island - Commercial Analyst - Wholesale_application_page_files/hcaptcha-enclave.html -------------------------------------------------------------------------------- /tests/resources/lever_application_pages/job1/Foodstuffs North Island - Commercial Analyst - Wholesale_application_page_files/hcaptcha.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/tests/resources/lever_application_pages/job1/Foodstuffs North Island - Commercial Analyst - Wholesale_application_page_files/hcaptcha.html -------------------------------------------------------------------------------- /tests/resources/lever_application_pages/job1/Foodstuffs North Island - Commercial Analyst - Wholesale_application_page_files/in.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/tests/resources/lever_application_pages/job1/Foodstuffs North Island - Commercial Analyst - Wholesale_application_page_files/in.js -------------------------------------------------------------------------------- /tests/resources/lever_application_pages/job1/Foodstuffs North Island - Commercial Analyst - Wholesale_application_page_files/jquery-3.6.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/tests/resources/lever_application_pages/job1/Foodstuffs North Island - Commercial Analyst - Wholesale_application_page_files/jquery-3.6.1.min.js -------------------------------------------------------------------------------- /tests/resources/lever_application_pages/job1/Foodstuffs North Island - Commercial Analyst - Wholesale_application_page_files/js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/tests/resources/lever_application_pages/job1/Foodstuffs North Island - Commercial Analyst - Wholesale_application_page_files/js -------------------------------------------------------------------------------- /tests/resources/lever_application_pages/job1/Foodstuffs North Island - Commercial Analyst - Wholesale_application_page_files/lever-logo-full.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/tests/resources/lever_application_pages/job1/Foodstuffs North Island - Commercial Analyst - Wholesale_application_page_files/lever-logo-full.svg -------------------------------------------------------------------------------- /tests/resources/lever_application_pages/job1/Foodstuffs North Island - Commercial Analyst - Wholesale_application_page_files/parseResume.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/tests/resources/lever_application_pages/job1/Foodstuffs North Island - Commercial Analyst - Wholesale_application_page_files/parseResume.js -------------------------------------------------------------------------------- /tests/resources/lever_application_pages/job1/Foodstuffs North Island - Commercial Analyst - Wholesale_application_page_files/retrieveLocations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/tests/resources/lever_application_pages/job1/Foodstuffs North Island - Commercial Analyst - Wholesale_application_page_files/retrieveLocations.js -------------------------------------------------------------------------------- /tests/resources/lever_application_pages/job1/Foodstuffs North Island - Commercial Analyst - Wholesale_application_page_files/secure-api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/tests/resources/lever_application_pages/job1/Foodstuffs North Island - Commercial Analyst - Wholesale_application_page_files/secure-api.js -------------------------------------------------------------------------------- /tests/resources/lever_application_pages/job1/Foodstuffs North Island - Commercial Analyst - Wholesale_confirmation_page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/tests/resources/lever_application_pages/job1/Foodstuffs North Island - Commercial Analyst - Wholesale_confirmation_page.html -------------------------------------------------------------------------------- /tests/resources/lever_application_pages/job1/Foodstuffs North Island - Commercial Analyst - Wholesale_confirmation_page_files/awliWidget: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/tests/resources/lever_application_pages/job1/Foodstuffs North Island - Commercial Analyst - Wholesale_confirmation_page_files/awliWidget -------------------------------------------------------------------------------- /tests/resources/lever_application_pages/job1/Foodstuffs North Island - Commercial Analyst - Wholesale_confirmation_page_files/bug-snag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/tests/resources/lever_application_pages/job1/Foodstuffs North Island - Commercial Analyst - Wholesale_confirmation_page_files/bug-snag.js -------------------------------------------------------------------------------- /tests/resources/lever_application_pages/job1/Foodstuffs North Island - Commercial Analyst - Wholesale_confirmation_page_files/cbb7f07c-dfbf-4253-a20c-d516f64d7941-1505174008497.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/tests/resources/lever_application_pages/job1/Foodstuffs North Island - Commercial Analyst - Wholesale_confirmation_page_files/cbb7f07c-dfbf-4253-a20c-d516f64d7941-1505174008497.png -------------------------------------------------------------------------------- /tests/resources/lever_application_pages/job1/Foodstuffs North Island - Commercial Analyst - Wholesale_confirmation_page_files/js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/tests/resources/lever_application_pages/job1/Foodstuffs North Island - Commercial Analyst - Wholesale_confirmation_page_files/js -------------------------------------------------------------------------------- /tests/resources/lever_application_pages/job1/Foodstuffs North Island - Commercial Analyst - Wholesale_confirmation_page_files/lever-logo-full.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/tests/resources/lever_application_pages/job1/Foodstuffs North Island - Commercial Analyst - Wholesale_confirmation_page_files/lever-logo-full.svg -------------------------------------------------------------------------------- /tests/resources/lever_application_pages/job1/Foodstuffs North Island - Commercial Analyst - Wholesale_confirmation_page_files/saved_resource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/tests/resources/lever_application_pages/job1/Foodstuffs North Island - Commercial Analyst - Wholesale_confirmation_page_files/saved_resource -------------------------------------------------------------------------------- /tests/resources/lever_application_pages/job1/Foodstuffs North Island - Commercial Analyst - Wholesale_job_page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/tests/resources/lever_application_pages/job1/Foodstuffs North Island - Commercial Analyst - Wholesale_job_page.html -------------------------------------------------------------------------------- /tests/resources/lever_application_pages/job1/Foodstuffs North Island - Commercial Analyst - Wholesale_job_page_files/bug-snag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/tests/resources/lever_application_pages/job1/Foodstuffs North Island - Commercial Analyst - Wholesale_job_page_files/bug-snag.js -------------------------------------------------------------------------------- /tests/resources/lever_application_pages/job1/Foodstuffs North Island - Commercial Analyst - Wholesale_job_page_files/cbb7f07c-dfbf-4253-a20c-d516f64d7941-1505174008497.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/tests/resources/lever_application_pages/job1/Foodstuffs North Island - Commercial Analyst - Wholesale_job_page_files/cbb7f07c-dfbf-4253-a20c-d516f64d7941-1505174008497.png -------------------------------------------------------------------------------- /tests/resources/lever_application_pages/job1/Foodstuffs North Island - Commercial Analyst - Wholesale_job_page_files/js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/tests/resources/lever_application_pages/job1/Foodstuffs North Island - Commercial Analyst - Wholesale_job_page_files/js -------------------------------------------------------------------------------- /tests/resources/lever_application_pages/job1/Foodstuffs North Island - Commercial Analyst - Wholesale_job_page_files/lever-logo-full.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/tests/resources/lever_application_pages/job1/Foodstuffs North Island - Commercial Analyst - Wholesale_job_page_files/lever-logo-full.svg -------------------------------------------------------------------------------- /tests/resources/lever_application_pages/job2/Agiloft - Senior Software Engineer, Full Stack_application_page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/tests/resources/lever_application_pages/job2/Agiloft - Senior Software Engineer, Full Stack_application_page.html -------------------------------------------------------------------------------- /tests/resources/lever_application_pages/job2/Agiloft - Senior Software Engineer, Full Stack_application_page_files/3e6f9e40-90d3-496a-820d-7ae3201a4d71-1704481877156.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/tests/resources/lever_application_pages/job2/Agiloft - Senior Software Engineer, Full Stack_application_page_files/3e6f9e40-90d3-496a-820d-7ae3201a4d71-1704481877156.png -------------------------------------------------------------------------------- /tests/resources/lever_application_pages/job2/Agiloft - Senior Software Engineer, Full Stack_application_page_files/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/tests/resources/lever_application_pages/job2/Agiloft - Senior Software Engineer, Full Stack_application_page_files/api.js -------------------------------------------------------------------------------- /tests/resources/lever_application_pages/job2/Agiloft - Senior Software Engineer, Full Stack_application_page_files/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/tests/resources/lever_application_pages/job2/Agiloft - Senior Software Engineer, Full Stack_application_page_files/application.js -------------------------------------------------------------------------------- /tests/resources/lever_application_pages/job2/Agiloft - Senior Software Engineer, Full Stack_application_page_files/bug-snag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/tests/resources/lever_application_pages/job2/Agiloft - Senior Software Engineer, Full Stack_application_page_files/bug-snag.js -------------------------------------------------------------------------------- /tests/resources/lever_application_pages/job2/Agiloft - Senior Software Engineer, Full Stack_application_page_files/debounce.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/tests/resources/lever_application_pages/job2/Agiloft - Senior Software Engineer, Full Stack_application_page_files/debounce.min.js -------------------------------------------------------------------------------- /tests/resources/lever_application_pages/job2/Agiloft - Senior Software Engineer, Full Stack_application_page_files/hcaptcha(1).html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/tests/resources/lever_application_pages/job2/Agiloft - Senior Software Engineer, Full Stack_application_page_files/hcaptcha(1).html -------------------------------------------------------------------------------- /tests/resources/lever_application_pages/job2/Agiloft - Senior Software Engineer, Full Stack_application_page_files/hcaptcha(2).html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/tests/resources/lever_application_pages/job2/Agiloft - Senior Software Engineer, Full Stack_application_page_files/hcaptcha(2).html -------------------------------------------------------------------------------- /tests/resources/lever_application_pages/job2/Agiloft - Senior Software Engineer, Full Stack_application_page_files/hcaptcha(3).html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/tests/resources/lever_application_pages/job2/Agiloft - Senior Software Engineer, Full Stack_application_page_files/hcaptcha(3).html -------------------------------------------------------------------------------- /tests/resources/lever_application_pages/job2/Agiloft - Senior Software Engineer, Full Stack_application_page_files/hcaptcha-enclave(1).html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/tests/resources/lever_application_pages/job2/Agiloft - Senior Software Engineer, Full Stack_application_page_files/hcaptcha-enclave(1).html -------------------------------------------------------------------------------- /tests/resources/lever_application_pages/job2/Agiloft - Senior Software Engineer, Full Stack_application_page_files/hcaptcha-enclave.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/tests/resources/lever_application_pages/job2/Agiloft - Senior Software Engineer, Full Stack_application_page_files/hcaptcha-enclave.html -------------------------------------------------------------------------------- /tests/resources/lever_application_pages/job2/Agiloft - Senior Software Engineer, Full Stack_application_page_files/hcaptcha.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/tests/resources/lever_application_pages/job2/Agiloft - Senior Software Engineer, Full Stack_application_page_files/hcaptcha.html -------------------------------------------------------------------------------- /tests/resources/lever_application_pages/job2/Agiloft - Senior Software Engineer, Full Stack_application_page_files/jquery-3.6.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/tests/resources/lever_application_pages/job2/Agiloft - Senior Software Engineer, Full Stack_application_page_files/jquery-3.6.1.min.js -------------------------------------------------------------------------------- /tests/resources/lever_application_pages/job2/Agiloft - Senior Software Engineer, Full Stack_application_page_files/js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/tests/resources/lever_application_pages/job2/Agiloft - Senior Software Engineer, Full Stack_application_page_files/js -------------------------------------------------------------------------------- /tests/resources/lever_application_pages/job2/Agiloft - Senior Software Engineer, Full Stack_application_page_files/lever-logo-full.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/tests/resources/lever_application_pages/job2/Agiloft - Senior Software Engineer, Full Stack_application_page_files/lever-logo-full.svg -------------------------------------------------------------------------------- /tests/resources/lever_application_pages/job2/Agiloft - Senior Software Engineer, Full Stack_application_page_files/parseResume.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/tests/resources/lever_application_pages/job2/Agiloft - Senior Software Engineer, Full Stack_application_page_files/parseResume.js -------------------------------------------------------------------------------- /tests/resources/lever_application_pages/job2/Agiloft - Senior Software Engineer, Full Stack_application_page_files/retrieveLocations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/tests/resources/lever_application_pages/job2/Agiloft - Senior Software Engineer, Full Stack_application_page_files/retrieveLocations.js -------------------------------------------------------------------------------- /tests/resources/lever_application_pages/job2/Agiloft - Senior Software Engineer, Full Stack_application_page_files/secure-api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/tests/resources/lever_application_pages/job2/Agiloft - Senior Software Engineer, Full Stack_application_page_files/secure-api.js -------------------------------------------------------------------------------- /tests/resources/lever_application_pages/job2/Agiloft - Senior Software Engineer, Full Stack_confirmation_page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/tests/resources/lever_application_pages/job2/Agiloft - Senior Software Engineer, Full Stack_confirmation_page.html -------------------------------------------------------------------------------- /tests/resources/lever_application_pages/job2/Agiloft - Senior Software Engineer, Full Stack_confirmation_page_files/3e6f9e40-90d3-496a-820d-7ae3201a4d71-1704481877156.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/tests/resources/lever_application_pages/job2/Agiloft - Senior Software Engineer, Full Stack_confirmation_page_files/3e6f9e40-90d3-496a-820d-7ae3201a4d71-1704481877156.png -------------------------------------------------------------------------------- /tests/resources/lever_application_pages/job2/Agiloft - Senior Software Engineer, Full Stack_confirmation_page_files/bug-snag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/tests/resources/lever_application_pages/job2/Agiloft - Senior Software Engineer, Full Stack_confirmation_page_files/bug-snag.js -------------------------------------------------------------------------------- /tests/resources/lever_application_pages/job2/Agiloft - Senior Software Engineer, Full Stack_confirmation_page_files/js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/tests/resources/lever_application_pages/job2/Agiloft - Senior Software Engineer, Full Stack_confirmation_page_files/js -------------------------------------------------------------------------------- /tests/resources/lever_application_pages/job2/Agiloft - Senior Software Engineer, Full Stack_confirmation_page_files/lever-logo-full.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/tests/resources/lever_application_pages/job2/Agiloft - Senior Software Engineer, Full Stack_confirmation_page_files/lever-logo-full.svg -------------------------------------------------------------------------------- /tests/resources/lever_application_pages/job2/Agiloft - Senior Software Engineer, Full Stack_job_page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/tests/resources/lever_application_pages/job2/Agiloft - Senior Software Engineer, Full Stack_job_page.html -------------------------------------------------------------------------------- /tests/resources/lever_application_pages/job2/Agiloft - Senior Software Engineer, Full Stack_job_page_files/3e6f9e40-90d3-496a-820d-7ae3201a4d71-1704481877156.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/tests/resources/lever_application_pages/job2/Agiloft - Senior Software Engineer, Full Stack_job_page_files/3e6f9e40-90d3-496a-820d-7ae3201a4d71-1704481877156.png -------------------------------------------------------------------------------- /tests/resources/lever_application_pages/job2/Agiloft - Senior Software Engineer, Full Stack_job_page_files/bug-snag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/tests/resources/lever_application_pages/job2/Agiloft - Senior Software Engineer, Full Stack_job_page_files/bug-snag.js -------------------------------------------------------------------------------- /tests/resources/lever_application_pages/job2/Agiloft - Senior Software Engineer, Full Stack_job_page_files/js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/tests/resources/lever_application_pages/job2/Agiloft - Senior Software Engineer, Full Stack_job_page_files/js -------------------------------------------------------------------------------- /tests/resources/lever_application_pages/job2/Agiloft - Senior Software Engineer, Full Stack_job_page_files/lever-logo-full.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/tests/resources/lever_application_pages/job2/Agiloft - Senior Software Engineer, Full Stack_job_page_files/lever-logo-full.svg -------------------------------------------------------------------------------- /tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/lever/test_application_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/tests/unit/lever/test_application_page.py -------------------------------------------------------------------------------- /tests/unit/search_engine/test_search_engine_query_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/tests/unit/search_engine/test_search_engine_query_builder.py -------------------------------------------------------------------------------- /tests/unit/search_engine/test_web_search_engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/tests/unit/search_engine/test_web_search_engine.py -------------------------------------------------------------------------------- /tests/unit/search_engine/test_web_search_engine_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/tests/unit/search_engine/test_web_search_engine_factory.py -------------------------------------------------------------------------------- /tests/unit/test_aihawk_bot_facade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/tests/unit/test_aihawk_bot_facade.py -------------------------------------------------------------------------------- /tests/unit/test_aihawk_easy_applier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/tests/unit/test_aihawk_easy_applier.py -------------------------------------------------------------------------------- /tests/unit/test_aihawk_job_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/tests/unit/test_aihawk_job_manager.py -------------------------------------------------------------------------------- /tests/unit/test_job_application_profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/tests/unit/test_job_application_profile.py -------------------------------------------------------------------------------- /tests/unit/test_regex_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surapuramakhil-org/Job_search_agent/HEAD/tests/unit/test_regex_utils.py --------------------------------------------------------------------------------