fix: replace deprecated regex with pattern in search Query param
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -42,7 +42,7 @@ async def search(
|
|||||||
q: str,
|
q: str,
|
||||||
user: Annotated[User, Depends(get_current_user)],
|
user: Annotated[User, Depends(get_current_user)],
|
||||||
session: Annotated[AsyncSession, Depends(get_session)],
|
session: Annotated[AsyncSession, Depends(get_session)],
|
||||||
mode: str = Query("hybrid", regex="^(fts|trgm|vector|hybrid)$"),
|
mode: str = Query("hybrid", pattern="^(fts|trgm|vector|hybrid)$"),
|
||||||
limit: int = Query(20, ge=1, le=100),
|
limit: int = Query(20, ge=1, le=100),
|
||||||
):
|
):
|
||||||
"""문서 검색
|
"""문서 검색
|
||||||
|
|||||||
Reference in New Issue
Block a user