circular-fix
Some checks failed
Deploy on push / deploy (push) Failing after 17s

This commit is contained in:
2025-08-17 16:33:54 +03:00
parent bc8447a444
commit e78e12eeee
65 changed files with 3304 additions and 1051 deletions

View File

@@ -4,7 +4,7 @@ import logging
import os
import secrets
import time
from typing import Any, Optional, cast
from typing import Any, cast
from httpx import AsyncClient, Response
@@ -80,7 +80,7 @@ class SearchCache:
logger.info(f"Cached {len(results)} search results for query '{query}' in memory")
return True
async def get(self, query: str, limit: int = 10, offset: int = 0) -> Optional[list]:
async def get(self, query: str, limit: int = 10, offset: int = 0) -> list | None:
"""Get paginated results for a query"""
normalized_query = self._normalize_query(query)
all_results = None