Spaces:
Sleeping
Sleeping
File size: 6,315 Bytes
37b0787 3603c1b 37b0787 | 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 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 | from __future__ import annotations
from functools import cache
from pathlib import Path
from typing import Any
import yaml
from pydantic_settings import BaseSettings
PROJECT_ROOT = Path(__file__).resolve().parent.parent.parent
CONFIGS_DIR = PROJECT_ROOT / "configs"
DATA_DIR = PROJECT_ROOT / "data"
class Settings(BaseSettings):
database_url: str = "postgresql://postgres:postgres@localhost:5432/india_runs"
redis_url: str = "redis://localhost:6379/0"
llm_provider: str = "openai"
openai_api_key: str = ""
openai_model: str = "gpt-4o-mini"
gemini_api_key: str = ""
gemini_model: str = "gemini-2.0-flash"
ollama_base_url: str = "http://localhost:11434"
ollama_model: str = "llama3.1:8b"
log_level: str = "INFO"
max_replan_cycles: int = 1
cross_encoder_timeout_ms: int = 0
model_config = {"env_file": ".env", "extra": "ignore"}
def load_yaml_config(filename: str) -> dict[str, Any]:
path = CONFIGS_DIR / filename
if not path.exists():
raise FileNotFoundError(f"Config file not found: {path}")
with open(path) as f:
return yaml.safe_load(f)
@cache
def get_settings() -> Settings:
return Settings()
@cache
def get_scoring_config() -> dict[str, Any]:
return load_yaml_config("scoring_weights.yaml")
@cache
def get_model_config() -> dict[str, Any]:
return load_yaml_config("models.yaml")
@cache
def get_app_config() -> dict[str, Any]:
return load_yaml_config("settings.yaml")
def build_orchestrator(
faiss_path: Path,
id_map_path: Path,
bm25_path: Path,
cross_encoder_timeout_ms: int = 0,
) -> tuple[Any, Any, Any]:
"""Build the full search dependency chain.
Shared between main.py (FastAPI lifespan) and app.py (Gradio UI)
to avoid duplicating the ~40-line initialization block.
Returns (Orchestrator, VectorSearch, ProfileStore).
"""
from src.agents.executor import ExecutorAgent
from src.agents.orchestrator import Orchestrator
from src.agents.planner import PlannerAgent
from src.agents.reflector import ReflectorAgent
from src.core.profile_store import ProfileStore
import json
import numpy as np
from sklearn.feature_extraction.text import HashingVectorizer
from src.matching.scorer import CandidateScorer
from src.search.bm25_search import BM25Search
from src.search.hybrid import HybridSearch
from src.search.reranker import CrossEncoderReranker
from src.search.vector_search import VectorSearch
class HashingEmbedder:
def __init__(self) -> None:
self.dimension = 384
self._vectorizer = HashingVectorizer(
n_features=384,
alternate_sign=False,
norm="l2",
lowercase=True,
token_pattern=r"(?u)\b\w+\b",
)
def embed(self, text: str) -> np.ndarray:
return self._vectorizer.transform([text]).astype(np.float32).toarray()[0]
def embed_query(self, query: str) -> np.ndarray:
return self.embed(query)
meta_path = faiss_path.parent / "index_meta.json"
use_hashing = False
if meta_path.exists():
with open(meta_path) as f:
use_hashing = json.load(f).get("embedding") == "hashing"
if use_hashing:
embedder = HashingEmbedder()
else:
from src.language.multilingual import MultilingualEmbedder
embedder = MultilingualEmbedder()
_ = embedder.model
_ = embedder.embed("warmup")
vector_search = VectorSearch()
vector_search.load(faiss_path, id_map_path)
bm25_search = BM25Search()
bm25_search.lazy_load(bm25_path) # background thread — first search will wait if needed
hybrid_search = HybridSearch(vector_search, bm25_search, embedder)
reranker = CrossEncoderReranker(timeout_ms=cross_encoder_timeout_ms)
scorer = CandidateScorer()
profiles = ProfileStore()
offset_idx = faiss_path.parent / "offset_index.json"
if offset_idx.exists():
profiles.load_offset_index(offset_idx)
sample = faiss_path.parent.parent / "samples" / "sample_candidates.json"
if sample.exists():
profiles.load_sample(sample)
planner = PlannerAgent()
executor = ExecutorAgent(hybrid_search, reranker, scorer, profiles)
reflector = ReflectorAgent()
orchestrator = Orchestrator(planner, executor, reflector)
return orchestrator, vector_search, profiles
def get_llm_client() -> Any:
from langchain_google_genai import ChatGoogleGenerativeAI
from langchain_ollama import ChatOllama
from langchain_openai import ChatOpenAI
settings = get_settings()
provider = settings.llm_provider
if provider == "openai":
from pydantic import SecretStr
return ChatOpenAI(
model=settings.openai_model,
api_key=SecretStr(settings.openai_api_key),
temperature=0.1,
)
elif provider == "gemini":
return ChatGoogleGenerativeAI(
model=settings.gemini_model,
google_api_key=settings.gemini_api_key,
temperature=0.1,
)
elif provider == "ollama":
return ChatOllama(
model=settings.ollama_model,
base_url=settings.ollama_base_url,
temperature=0.1,
)
else:
raise ValueError(f"Unknown LLM provider: {provider}")
def check_llm_provider_connected() -> bool:
"""Check if the configured LLM provider is connected and accessible."""
settings = get_settings()
provider = settings.llm_provider
if provider == "openai":
key = settings.openai_api_key
if not key or key == "sk-..." or not key.strip():
return False
return True
elif provider == "gemini":
key = settings.gemini_api_key
if not key or key == "..." or not key.strip():
return False
return True
elif provider == "ollama":
import urllib.request
try:
# Query base url, e.g. http://localhost:11434/
# Set timeout to 1.0 seconds so it doesn't hang
response = urllib.request.urlopen(settings.ollama_base_url, timeout=1.0)
return response.status == 200
except Exception:
return False
return False
|