refactor(backend): Update references from document summary LLM to agent LLM across multiple files

This commit is contained in:
Anish Sarkar 2026-06-04 01:50:44 +05:30
parent ddfe60c2f0
commit e4d7b01b09
9 changed files with 10 additions and 12 deletions

View file

@ -2963,7 +2963,7 @@ async def shielded_async_session():
async def setup_indexes():
async with engine.begin() as conn:
# Create indexes
# Document Summary Indexes
# Document embedding indexes
await conn.execute(
text(
"CREATE INDEX IF NOT EXISTS document_vector_index ON documents USING hnsw (embedding public.vector_cosine_ops)"