├── resume ├── 把简历放这里.txt └── .DS_Store ├── .DS_Store ├── requirements.txt ├── config.py ├── README ├── test.py ├── functions.py ├── langchain_functions.py ├── finding_jobs.py └── write_response.py /resume/把简历放这里.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisCaixuran/auto_job_find_azure/HEAD/.DS_Store -------------------------------------------------------------------------------- /resume/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisCaixuran/auto_job_find_azure/HEAD/resume/.DS_Store -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | langchain==0.0.354 2 | openai==1.6.1 3 | packaging==23.2 4 | python-dotenv==1.0.0 5 | selenium==4.16.0 6 | robotframework 7 | robotframework-seleniumlibrary 8 | robotframework-pythonlibcore 9 | -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- 1 | #replace the values with your own 2 | 3 | OPENAI_BASE_URL= #e.g. "https://hkust.azure-api.net" 4 | OPENAI_API_KEY= #your azure openai key 5 | OPENAI_VERSION= #your api version e.g. "2023-05-15" 6 | OPENAI_DEPLOYMENT= #deployment e.g. "gpt-35-turbo-16k" 7 | LABEL=