### 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>
197 lines
6.3 KiB
Python
197 lines
6.3 KiB
Python
from arcade_evals import (
|
|
BinaryCritic,
|
|
EvalRubric,
|
|
EvalSuite,
|
|
ExpectedToolCall,
|
|
tool_eval,
|
|
)
|
|
from arcade_tdk import ToolCatalog
|
|
|
|
import arcade_hubspot
|
|
from arcade_hubspot.custom_critics import ValueInListCritic
|
|
from arcade_hubspot.tools import create_contact, get_contact_data_by_keywords
|
|
|
|
rubric = EvalRubric(
|
|
fail_threshold=0.8,
|
|
warn_threshold=0.9,
|
|
)
|
|
|
|
|
|
catalog = ToolCatalog()
|
|
catalog.add_module(arcade_hubspot)
|
|
|
|
|
|
@tool_eval()
|
|
def get_contact_data_by_keywords_eval_suite() -> EvalSuite:
|
|
"""Create an evaluation suite for the get_contact_data_by_keywords tool."""
|
|
suite = EvalSuite(
|
|
name="Get Contact Data by Keywords",
|
|
system_message="You are an AI assistant that can interact with Hubspot CRM using the provided tools.",
|
|
catalog=catalog,
|
|
rubric=rubric,
|
|
)
|
|
|
|
suite.add_case(
|
|
name="Get contact data by keywords",
|
|
user_message="Get information about the Jason Bourne contact.",
|
|
expected_tool_calls=[
|
|
ExpectedToolCall(
|
|
func=get_contact_data_by_keywords,
|
|
args={
|
|
"keywords": "Jason Bourne",
|
|
"limit": 10,
|
|
"next_page_token": None,
|
|
},
|
|
),
|
|
],
|
|
rubric=rubric,
|
|
critics=[
|
|
BinaryCritic(critic_field="keywords", weight=0.8),
|
|
BinaryCritic(critic_field="next_page_token", weight=0.2),
|
|
],
|
|
)
|
|
|
|
suite.add_case(
|
|
name="Get contact data by keywords with limit",
|
|
user_message="Get information of up to 3 contacts with last name 'Bourne'.",
|
|
expected_tool_calls=[
|
|
ExpectedToolCall(
|
|
func=get_contact_data_by_keywords,
|
|
args={
|
|
"keywords": "Bourne",
|
|
"limit": 3,
|
|
"next_page_token": None,
|
|
},
|
|
),
|
|
],
|
|
rubric=rubric,
|
|
critics=[
|
|
BinaryCritic(critic_field="keywords", weight=0.7),
|
|
BinaryCritic(critic_field="limit", weight=0.15),
|
|
BinaryCritic(critic_field="next_page_token", weight=0.15),
|
|
],
|
|
)
|
|
|
|
suite.add_case(
|
|
name="Get summary of contact activity",
|
|
user_message="Get a summary of the latest activities with the Jason Bourne contact.",
|
|
expected_tool_calls=[
|
|
ExpectedToolCall(
|
|
func=get_contact_data_by_keywords,
|
|
args={
|
|
"keywords": "Jason Bourne",
|
|
"limit": 10,
|
|
"next_page_token": None,
|
|
},
|
|
),
|
|
],
|
|
rubric=rubric,
|
|
critics=[
|
|
BinaryCritic(critic_field="keywords", weight=0.8),
|
|
BinaryCritic(critic_field="next_page_token", weight=0.2),
|
|
],
|
|
)
|
|
|
|
suite.add_case(
|
|
name="Interactions with contacts of an account",
|
|
user_message="Get me the interactions with the Jason Bourne contact from Acme.",
|
|
expected_tool_calls=[
|
|
ExpectedToolCall(
|
|
func=get_contact_data_by_keywords,
|
|
args={
|
|
"keywords": ["Jason Bourne", "Jason Bourne Acme"],
|
|
"limit": 10,
|
|
"next_page_token": None,
|
|
},
|
|
),
|
|
],
|
|
rubric=rubric,
|
|
critics=[
|
|
ValueInListCritic(critic_field="keywords", weight=0.8),
|
|
BinaryCritic(critic_field="next_page_token", weight=0.2),
|
|
],
|
|
)
|
|
|
|
suite.add_case(
|
|
name="Emails or calls with contacts of an account",
|
|
user_message="Were there any emails or calls with the Jason Bourne contact from Acme this week?",
|
|
expected_tool_calls=[
|
|
ExpectedToolCall(
|
|
func=get_contact_data_by_keywords,
|
|
args={
|
|
"keywords": ["Jason Bourne", "Jason Bourne Acme"],
|
|
"limit": 10,
|
|
"next_page_token": None,
|
|
},
|
|
),
|
|
],
|
|
rubric=rubric,
|
|
critics=[
|
|
ValueInListCritic(critic_field="keywords", weight=0.8),
|
|
BinaryCritic(critic_field="next_page_token", weight=0.2),
|
|
],
|
|
)
|
|
|
|
suite.add_case(
|
|
name="Get overdue tasks",
|
|
user_message="Are there any tasks overdue for the Jason Bourne contact from Acme?",
|
|
expected_tool_calls=[
|
|
ExpectedToolCall(
|
|
func=get_contact_data_by_keywords,
|
|
args={
|
|
"keywords": ["Jason Bourne", "Jason Bourne Acme"],
|
|
"limit": 10,
|
|
"next_page_token": None,
|
|
},
|
|
),
|
|
],
|
|
rubric=rubric,
|
|
critics=[
|
|
ValueInListCritic(critic_field="keywords", weight=0.8),
|
|
BinaryCritic(critic_field="next_page_token", weight=0.2),
|
|
],
|
|
)
|
|
|
|
return suite
|
|
|
|
|
|
@tool_eval()
|
|
def create_contact_eval_suite() -> EvalSuite:
|
|
"""Create an evaluation suite for the create_contact tool."""
|
|
suite = EvalSuite(
|
|
name="Create Contact",
|
|
system_message="You are an AI assistant that can interact with Hubspot CRM using the provided tools.",
|
|
catalog=catalog,
|
|
rubric=rubric,
|
|
)
|
|
|
|
suite.add_case(
|
|
name="Create contact",
|
|
user_message="Create a contact with the following information: first name 'Jason', "
|
|
"last name 'Bourne', email 'jason.bourne@acme.com', phone '+1234567890', "
|
|
"and job title 'Unbeatable', and associated with company id '1234567890'",
|
|
expected_tool_calls=[
|
|
ExpectedToolCall(
|
|
func=create_contact,
|
|
args={
|
|
"company_id": "1234567890",
|
|
"first_name": "Jason",
|
|
"last_name": "Bourne",
|
|
"email": "jason.bourne@acme.com",
|
|
"phone": "+1234567890",
|
|
"job_title": "Unbeatable",
|
|
},
|
|
),
|
|
],
|
|
rubric=rubric,
|
|
critics=[
|
|
BinaryCritic(critic_field="company_id", weight=1 / 6),
|
|
BinaryCritic(critic_field="first_name", weight=1 / 6),
|
|
BinaryCritic(critic_field="last_name", weight=1 / 6),
|
|
BinaryCritic(critic_field="email", weight=1 / 6),
|
|
BinaryCritic(critic_field="phone", weight=1 / 6),
|
|
BinaryCritic(critic_field="job_title", weight=1 / 6),
|
|
],
|
|
)
|
|
|
|
return suite
|