- Add get_llm_base_url() and get_llm_model() helper functions - Update call_ollama_inline to route to LiteLLM when LLM_PROVIDER=litellm - Add auto-apply cron task for background job matching - Auto-apply matches job seekers to new jobs based on skills - Generate cover letters via LiteLLM for each application
21 lines
454 B
TOML
21 lines
454 B
TOML
[package]
|
|
name = "cron"
|
|
version = "0.1.0"
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[dependencies]
|
|
# Intra-workspace
|
|
db = { path = "../../crates/db" }
|
|
email = { path = "../../crates/email" }
|
|
|
|
# Workspace dependencies
|
|
tokio.workspace = true
|
|
sqlx.workspace = true
|
|
tracing.workspace = true
|
|
tracing-subscriber.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
chrono.workspace = true
|
|
uuid.workspace = true
|
|
reqwest.workspace = true
|