peregrine/config/search_profiles.yaml
pyr0ball 84eb647348 feat: LGBTQIA+ focus + Phase 2/3 audit fixes
LGBTQIA+ inclusion section in research briefs:
- user_profile.py: add candidate_lgbtq_focus bool accessor
- user.yaml.example: add candidate_lgbtq_focus flag (default false)
- company_research.py: gate new LGBTQIA+ section behind flag; section
  count now dynamic (7 base + 1 per opt-in section, max 9)
- 2_Settings.py: add "Research Brief Preferences" expander with
  checkboxes for both accessibility and LGBTQIA+ focus flags;
  mission_preferences now round-trips through save (no silent drop)

Phase 2 fixes:
- manage-vllm.sh: MODEL_DIR and VLLM_BIN now read from env vars
  (VLLM_MODELS_DIR, VLLM_BIN) with portable defaults
- search_profiles.yaml: replace personal CS/TAM/Bay Area profiles
  with a documented generic starter profile

Phase 3 fix:
- llm.yaml: rename alex-cover-writer:latest → llama3.2:3b with
  inline comment for users to substitute their fine-tuned model;
  fix model-exclusion comment

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-02-24 20:02:03 -08:00

39 lines
1.2 KiB
YAML

# Search profiles — define one or more named profiles with different
# job titles, locations, boards, and keyword filters.
# The first profile is used by default in the Job Review and Discovery pages.
#
# Each profile supports:
# name — identifier shown in the UI
# titles — job titles to search (exact phrases)
# locations — "Remote" or city/metro strings
# boards — standard boards: linkedin, indeed, glassdoor, zip_recruiter, google
# custom_boards — extra boards: adzuna, theladders, craigslist
# exclude_keywords — filter out postings containing these phrases
# hours_old — only return jobs posted within this many hours
# results_per_board — max results per board per run
# mission_tags — optional tags that influence cover-letter mission alignment
# (must match a key in mission_preferences in user.yaml)
profiles:
- name: primary
boards:
- linkedin
- indeed
- glassdoor
- zip_recruiter
- google
custom_boards:
- adzuna
- craigslist
titles:
- "Your Target Title"
- "Alternative Title"
locations:
- Remote
exclude_keywords:
- sales
- account executive
- SDR
- BDR
hours_old: 240
results_per_board: 50