-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsrc.txt
More file actions
93 lines (93 loc) · 2.76 KB
/
src.txt
File metadata and controls
93 lines (93 loc) · 2.76 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
coboarding/
├── README.md
├── docker-compose.yml
├── requirements.txt
├── .env.example
├── config/
│ ├── settings.py
│ ├── languages.yaml
│ └── models.yaml
├── core/
│ ├── __init__.py
│ ├── automation/
│ │ ├── __init__.py
│ │ ├── form_detector.py
│ │ ├── field_mapper.py
│ │ ├── stealth_browser.py
│ │ └── captcha_solver.py
│ ├── ai/
│ │ ├── __init__.py
│ │ ├── llm_client.py
│ │ ├── cv_parser.py
│ │ ├── form_analyzer.py
│ │ └── vision_processor.py
│ ├── integrations/
│ │ ├── __init__.py
│ │ ├── linkedin_api.py
│ │ ├── slack_bot.py
│ │ ├── teams_webhook.py
│ │ ├── gmail_client.py
│ │ └── whatsapp_client.py
│ └── storage/
│ ├── __init__.py
│ ├── redis_client.py
│ ├── models.py
│ └── ttl_manager.py
├── api/
│ ├── __init__.py
│ ├── main.py
│ ├── routes/
│ │ ├── __init__.py
│ │ ├── upload.py
│ │ ├── automation.py
│ │ ├── candidates.py
│ │ └── admin.py
│ └── middleware/
│ ├── __init__.py
│ ├── auth.py
│ ├── rate_limit.py
│ └── compliance.py
├── ui/
│ ├── app.py
│ ├── components/
│ │ ├── __init__.py
│ │ ├── chat.py
│ │ ├── upload.py
│ │ ├── company_selector.py
│ │ └── progress_tracker.py
│ ├── locales/
│ │ ├── en.yaml
│ │ ├── pl.yaml
│ │ └── de.yaml
│ └── assets/
│ ├── style.css
│ └── logo.png
├── workers/
│ ├── __init__.py
│ ├── form_automation_worker.py
│ ├── notification_worker.py
│ └── data_cleanup_worker.py
├── data/
│ ├── companies/
│ │ ├── companies.json
│ │ └── job_boards.json
│ ├── prompts/
│ │ ├── cv_extraction.txt
│ │ ├── form_analysis.txt
│ │ └── field_mapping.txt
│ └── models/
│ └── spacy_cv_model/
├── tests/
│ ├── __init__.py
│ ├── test_automation.py
│ ├── test_ai.py
│ └── test_integrations.py
├── deployment/
│ ├── Dockerfile
│ ├── docker-compose.prod.yml
│ ├── nginx.conf
│ └── supervisord.conf
└── docs/
├── setup.md
├── api.md
└── compliance.md