### Overview Major restructuring from monolithic `arcade-ai` package to modular library architecture with standardized uv-based dependency management.  ### New Package Structure - **`arcade-tdk`** - Lightweight toolkit development kit (core decorators, auth) - **`arcade-core`** - Core execution engine and catalog functionality - **`arcade-serve`** - FastAPI/MCP server components - **`arcade-ai`** - Meta package that includes CLI functionality. Optionally include evals via the `evals` extra. Optionally include all packages via the `all` extra. ### Key Benefits - **Lighter Dependencies**: Toolkits now depend only on `arcade-tdk` (~2 deps) vs full `arcade-ai` (~30+ deps) - **Faster Builds**: uv provides 10-100x faster dependency resolution and installation - **Better Modularity**: Clear separation of concerns, consumers import only what they need - **Standard Tooling**: Eliminates custom poetry scripts, uses standard Python packaging ### Migration Impact - All 20 toolkits converted from poetry → uv with `arcade-tdk` dependencies plus `arcade-ai[evals]` and `arcade-serve` dev dependencies. When developing locally, devs should install toolkits via `make install-local`. - Modern Python 3.10+ type hints throughout - Standardized build system with hatchling backend - Enhanced Makefile with robust toolkit management commands - Removed `arcade dev` CLI command - Reduce the number of files created by `arcade new` and add an option to not generate a tests and evals folder. This foundation enables faster development cycles and cleaner dependency chains for the growing toolkit ecosystem. ### Todo After this PR is merged - [ ] Post-merge workflow(s) (release & publish containers, etc) - [ ] Release order plan. @EricGustin suggests releasing in the following order: 1. `arcade-core` version 0.1.0 2. `arcade-serve` version 0.1.0 and `arcade-tdk` version 0.1.0 3. `arcade-ai` version 2.0.0 4. Patch release for all toolkits (all changes in toolkits are internal refactors) - [ ] [Update docs](https://github.com/ArcadeAI/docs/pull/318) --------- Co-authored-by: Eric Gustin <eric@arcade.dev> Co-authored-by: Eric Gustin <34000337+EricGustin@users.noreply.github.com>
95 lines
3.1 KiB
Python
95 lines
3.1 KiB
Python
from typing import Annotated, Any
|
|
|
|
from arcade_tdk import ToolContext
|
|
from arcade_tdk.errors import ToolExecutionError
|
|
from arcade_tdk.tool import tool
|
|
|
|
from arcade_search.enums import WalmartSortBy
|
|
from arcade_search.utils import (
|
|
call_serpapi,
|
|
extract_walmart_product_details,
|
|
extract_walmart_results,
|
|
get_walmart_last_page_integer,
|
|
prepare_params,
|
|
)
|
|
|
|
|
|
@tool(requires_secrets=["SERP_API_KEY"])
|
|
async def search_walmart_products(
|
|
context: ToolContext,
|
|
keywords: Annotated[str, "Keywords to search for. E.g. 'apple iphone' or 'samsung galaxy'"],
|
|
sort_by: Annotated[
|
|
WalmartSortBy,
|
|
"Sort the results by the specified criteria. "
|
|
f"Defaults to '{WalmartSortBy.RELEVANCE.value}'.",
|
|
] = WalmartSortBy.RELEVANCE,
|
|
min_price: Annotated[
|
|
float | None,
|
|
"Minimum price to filter the results by. E.g. 100.00",
|
|
] = None,
|
|
max_price: Annotated[
|
|
float | None,
|
|
"Maximum price to filter the results by. E.g. 100.00",
|
|
] = None,
|
|
next_day_delivery: Annotated[
|
|
bool,
|
|
"Filters products that are eligible for next day delivery. "
|
|
"Defaults to False (returns all products, regardless of delivery status).",
|
|
] = False,
|
|
page: Annotated[
|
|
int,
|
|
"Page number to fetch. Defaults to 1 (first page of results). "
|
|
"The maximum page value is 100.",
|
|
] = 1,
|
|
) -> Annotated[dict[str, Any], "List of Walmart products matching the search query."]:
|
|
"""Search Walmart products using SerpAPI."""
|
|
if page > 100:
|
|
raise ToolExecutionError(f"The maximum page value for Walmart search is 100, got {page}.")
|
|
|
|
sort_by_value = sort_by.to_api_value()
|
|
|
|
params = prepare_params(
|
|
"walmart",
|
|
query=keywords,
|
|
sort=sort_by_value,
|
|
# When the user selects a sorting option, we have to disable the relevance sorting
|
|
# using the soft_sort parameter.
|
|
soft_sort=not sort_by_value,
|
|
min_price=min_price,
|
|
max_price=max_price,
|
|
nd_en=next_day_delivery,
|
|
page=page,
|
|
include_filters=False,
|
|
)
|
|
|
|
response = call_serpapi(context, params)
|
|
|
|
return {
|
|
"products": extract_walmart_results(response.get("organic_results", [])),
|
|
"current_page": page,
|
|
"last_available_page": get_walmart_last_page_integer(response),
|
|
}
|
|
|
|
|
|
@tool(requires_secrets=["SERP_API_KEY"])
|
|
async def get_walmart_product_details(
|
|
context: ToolContext,
|
|
item_id: Annotated[
|
|
str,
|
|
"Item ID. E.g. '414600577'. This can be retrieved from the search results of the "
|
|
f"{search_walmart_products.__tool_name__} tool.",
|
|
],
|
|
) -> Annotated[dict[str, Any], "Product details"]:
|
|
"""Get product details from Walmart."""
|
|
params = prepare_params("walmart_product", product_id=item_id)
|
|
response = call_serpapi(context, params)
|
|
|
|
product_result = response.get("product_result")
|
|
|
|
if not product_result:
|
|
return {
|
|
"product_details": None,
|
|
"message": f"No product details found for item ID '{item_id}'.",
|
|
}
|
|
|
|
return {"product_details": extract_walmart_product_details(product_result)}
|