nxtgauge-backend-rust/crates/cache/src/lib.rs
Ashwin Kumar Sivakumar 8260d54534 feat: Add Ask Ash AI credit system endpoints
- Add AI credit management endpoints for companies
- Add AI usage history tracking
- Add AI content generation with Ollama integration
- Add Ollama client for generating job descriptions, resume analysis, and cover letters
- Integrate AI router into companies service
2026-05-29 20:53:51 +05:30

10 lines
159 B
Rust

pub mod ai;
pub mod client;
pub mod ollama;
pub mod otp;
pub mod rate_limit;
pub mod token;
pub mod lead;
pub mod jobs;
pub use client::{RedisPool, connect};