From bd0f6680f311327b0790f573ec51bb6084203c45 Mon Sep 17 00:00:00 2001 From: queukat Date: Fri, 22 Nov 2024 22:07:04 +0300 Subject: [PATCH] fix --- config.py | 51 ++++++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 50 insertions(+), 1 deletion(-) diff --git a/config.py b/config.py index dfda8f1f..358ae6b4 100644 --- a/config.py +++ b/config.py @@ -22,4 +22,53 @@ LLM_MODEL_TYPE = 'openai' LLM_MODEL = 'gpt-4o-mini' # Only required for OLLAMA models -LLM_API_URL = '' \ No newline at end of file +LLM_API_URL = '' + +ABBREVIATIONS = { + "Senior": "Sr", + "Junior": "Jr", + "Data Engineer": "DE", + "Data engineer": "DE", + "data engineer": "DE", + "Software Engineer": "SWE", + "Developer": "Dev", + "Python": "Py", + "Data Scientist": "DS", + "Machine Learning Engineer": "MLE", + "Frontend Developer": "FE Dev", + "Backend Developer": "BE Dev", + "Full Stack Developer": "FS Dev", + "DevOps Engineer": "DevOps", + "Quality Assurance Engineer": "QA", + "Product Manager": "PM", + "Project Manager": "ProjM", + "Business Analyst": "BA", + "Scrum Master": "ScrumM", + "UI/UX Designer": "UIUX", + "Database Administrator": "DBA", + "System Administrator": "SysAdmin", + "Cloud Engineer": "CloudE", + "Security Engineer": "SecE", + "Network Engineer": "NetE", + "IT Support Specialist": "ITSupport", + "Solution Architect": "SA", + "Technical Lead": "TechLead", + "Chief Technology Officer": "CTO", + "Chief Information Officer": "CIO", + "Cybersecurity Specialist": "CyberSec", + "Mobile App Developer": "MobileDev", + "Blockchain Developer": "BlockDev", + "Site Reliability Engineer": "SRE", + "AI Engineer": "AIE", + "Big Data Engineer": "BigDE", + "Embedded Systems Engineer": "EmbedE", + "Hardware Engineer": "HwE", + "Network Administrator": "NetAdmin", + "Game Developer": "GameDev", + "Research Scientist": "RS", + "Test Automation Engineer": "TestAuto", + "Digital Marketing Specialist": "DMS", + "Technical Support Engineer": "TechSupport", + "Data Analyst": "DA", + "Cloud Architect": "CloudArch" +} \ No newline at end of file