-
Notifications
You must be signed in to change notification settings - Fork 892
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(typespec,agents-api): Update metadata_filter to have object type
Signed-off-by: Diwank Singh Tomer <[email protected]>
- Loading branch information
Showing
6 changed files
with
78 additions
and
44 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
from typing import Any, Callable | ||
|
||
from fastapi import Request | ||
from pydantic import BaseModel | ||
|
||
|
||
class FilterModel(BaseModel): | ||
class Config: | ||
extra = "allow" # Allow arbitrary fields | ||
|
||
|
||
def convert_value(value: str) -> Any: | ||
""" | ||
Attempts to convert a string value to an int or float. Returns the original string if conversion fails. | ||
""" | ||
for convert in (int, float): | ||
try: | ||
return convert(value) | ||
except ValueError: | ||
continue | ||
return value | ||
|
||
def create_filter_extractor(prefix: str = "filter") -> Callable[[Request], FilterModel]: | ||
""" | ||
Creates a dependency function to extract filter parameters with a given prefix. | ||
Args: | ||
prefix (str): The prefix to identify filter parameters. | ||
Returns: | ||
Callable[[Request], FilterModel]: The dependency function. | ||
""" | ||
|
||
def extract_filters(request: Request) -> FilterModel: | ||
""" | ||
Extracts query parameters that start with the specified prefix and returns them as a dictionary. | ||
Args: | ||
request (Request): The incoming HTTP request. | ||
Returns: | ||
FilterModel: A FilterModel instance containing the filter parameters. | ||
""" | ||
nonlocal prefix | ||
prefix += "." | ||
|
||
filters: dict[str, Any] = {} | ||
for key, value in request.query_params.items(): | ||
if key.startswith(prefix): | ||
filter_key = key[len(prefix):] | ||
filters[filter_key] = convert_value(value) | ||
|
||
return FilterModel(**filters) | ||
|
||
return extract_filters |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,40 +1,38 @@ | ||
import json | ||
from json import JSONDecodeError | ||
from typing import Annotated, Literal | ||
from uuid import UUID | ||
|
||
from fastapi import Depends, HTTPException, status | ||
from fastapi import Depends | ||
|
||
from ...autogen.openapi_model import Agent, ListResponse | ||
from ...dependencies.developer_id import get_developer_id | ||
from ...dependencies.query_filter import FilterModel, create_filter_extractor | ||
from ...models.agent.list_agents import list_agents as list_agents_query | ||
from .router import router | ||
|
||
|
||
@router.get("/agents", tags=["agents"]) | ||
async def list_agents( | ||
x_developer_id: Annotated[UUID, Depends(get_developer_id)], | ||
# Expects the dot notation of object in query params | ||
# Example: | ||
# > ?metadata_filter.name=John&metadata_filter.age=30 | ||
metadata_filter: Annotated[ | ||
FilterModel | None, | ||
Depends(create_filter_extractor("metadata_filter")) | ||
], | ||
limit: int = 100, | ||
offset: int = 0, | ||
sort_by: Literal["created_at", "updated_at"] = "created_at", | ||
direction: Literal["asc", "desc"] = "desc", | ||
metadata_filter: str = "{}", | ||
) -> ListResponse[Agent]: | ||
try: | ||
metadata_filter = json.loads(metadata_filter) | ||
except JSONDecodeError: | ||
raise HTTPException( | ||
status_code=status.HTTP_400_BAD_REQUEST, | ||
detail="metadata_filter is not a valid JSON", | ||
) | ||
|
||
agents = list_agents_query( | ||
developer_id=x_developer_id, | ||
limit=limit, | ||
offset=offset, | ||
sort_by=sort_by, | ||
direction=direction, | ||
metadata_filter=metadata_filter, | ||
metadata_filter=metadata_filter.model_dump(mode="json"), | ||
) | ||
|
||
return ListResponse[Agent](items=agents) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters