Skip to main content

Easy Programmatic Tool Calling — framework-agnostic multi-tool execution for any LLM

Project description

ez-ptc

Easy Programmatic Tool Calling -- a lightweight, zero-dependency, framework-agnostic library for multi-tool execution with any LLM.

PyPI version Python 3.11+ License: MIT

What is programmatic tool calling?

The idea of programmatic tool calling (PTC) was introduced by Anthropic. Instead of the traditional pattern where an LLM makes one tool call per turn, the LLM writes code that calls multiple tools, uses variables, branches on results, and loops -- all executed in a single round-trip. Anthropic described this approach in their engineering blog post and provides a first-party implementation for the Claude API.

ez-ptc takes this pattern and makes it easy to use with any LLM provider -- OpenAI, Anthropic, Google, Groq, or any framework that talks to them.

Why ez-ptc?

  • Works with any LLM provider -- OpenAI, Anthropic, Google, Groq, LiteLLM, and more. Not locked to a single API.
  • Zero dependencies -- pure Python, no runtime dependencies. Bring your own LLM client.
  • Two modes -- prompt mode (inject into any system prompt, no framework needed) or tool mode (native integration with OpenAI, LangChain, Pydantic AI, etc.).
  • Tool chaining with return types -- documents the exact return shape of each tool so the LLM doesn't guess wrong keys and cause KeyError at runtime.

Installation

# Using uv (recommended)
uv add ez-ptc

# Using pip
pip install ez-ptc

Zero runtime dependencies. Bring your own LLM client.

Quick start

1. Define tools

from typing import TypedDict
from ez_ptc import Toolkit, ez_tool

class WeatherResult(TypedDict):
    location: str
    temp: int
    unit: str
    condition: str

@ez_tool
def get_weather(location: str, unit: str = "celsius") -> WeatherResult:
    """Get current weather for a location.

    Args:
        location: City and state, e.g. "San Francisco, CA"
        unit: Temperature unit - "celsius" or "fahrenheit"
    """
    # Your actual API call here
    return {"location": location, "temp": 22, "unit": unit, "condition": "sunny"}

@ez_tool
def search_products(query: str, limit: int = 5) -> list[dict]:
    """Search the product catalog.

    Args:
        query: Search query string
        limit: Maximum number of results
    """
    return [{"name": "Umbrella", "price": 24.99}]

toolkit = Toolkit([get_weather, search_products])

2. Choose your mode

Prompt mode -- framework-free, inject into any system prompt:

from openai import OpenAI

client = OpenAI()
response = client.chat.completions.create(
    model="gpt-4.1-mini",
    messages=[
        {"role": "system", "content": toolkit.prompt()},
        {"role": "user", "content": "What's the weather in NYC and SF?"},
    ],
)

code = toolkit.extract_code(response.choices[0].message.content)
result = toolkit.execute(code)
print(result.output)

Tool mode -- native integration with any framework:

from openai import OpenAI
import json

client = OpenAI()
execute_fn = toolkit.as_tool()
tool_schema = toolkit.tool_schema(format="openai")

messages = [
    {"role": "system", "content": "You are a helpful assistant."},
    {"role": "user", "content": "What's the weather in NYC and SF?"},
]

for turn in range(10):
    response = client.chat.completions.create(
        model="gpt-4.1-mini",
        messages=messages,
        tools=[tool_schema],
    )
    choice = response.choices[0]
    if choice.message.tool_calls:
        messages.append(choice.message)
        for tc in choice.message.tool_calls:
            args = json.loads(tc.function.arguments)
            result = execute_fn(**args)
            messages.append({"role": "tool", "tool_call_id": tc.id, "content": result})
    else:
        print(choice.message.content)
        break

What the LLM writes

Instead of separate tool calls, the LLM writes a single code block:

import asyncio

async def main():
    sf, ny = await asyncio.gather(
        asyncio.to_thread(get_weather, "San Francisco, CA"),
        asyncio.to_thread(get_weather, "New York, NY"),
    )
    print(f"SF: {sf['temp']}°C, {sf['condition']}")
    print(f"NY: {ny['temp']}°C, {ny['condition']}")

asyncio.run(main())

Multiple tool calls, parallel execution, variable passing -- one round-trip.

Tool chaining

When the LLM chains tool outputs -- passing the result of one tool into a conditional or another tool call -- it needs to know the exact shape of each return value. Without that information, the LLM guesses key names, and guesses are often wrong:

# The LLM writes this...
weather = get_weather("San Francisco, CA")
print(weather["temperature"])  # KeyError! The actual key is "temp"

The fix: use TypedDict return types (or Pydantic BaseModel) and enable assist_tool_chaining:

toolkit = Toolkit([get_weather, search_products], assist_tool_chaining=True)

Now the LLM sees return type annotations alongside each tool:

def get_weather(location: str, unit: str = 'celsius') -> WeatherResult:
    """Get current weather for a location.
    ...
    """
    # Returns: {location: str, temp: int, unit: str, condition: str}

The LLM knows the exact keys and types -- weather["temp"], weather["condition"] -- and can chain tool outputs without guessing. This works in all three output methods: prompt(), as_tool(), and tool_schema().

See Tool Chaining for TypedDict, Pydantic, and explicit schema examples.

Framework support

ez-ptc works with any LLM provider or framework:

Framework Mode Example
Raw API (OpenAI, Anthropic) Prompt or Tool prompt mode, openai, anthropic
LangChain Tool example
Pydantic AI Tool example
LiteLLM Tool example
Google GenAI Tool example

How ez-ptc compares to Anthropic's native PTC

Anthropic offers first-party programmatic tool calling through their API. It runs in a managed container and is tightly integrated with the Claude model.

ez-ptc takes a different approach:

  • Any LLM provider -- works with OpenAI, Anthropic, Google, Groq, or any API. Anthropic's native PTC is Claude-only.
  • Any framework -- integrates with LangChain, Pydantic AI, LiteLLM, or plain HTTP calls. No vendor lock-in.
  • Zero dependencies -- pure Python, no managed containers, no external services. Runs entirely in your process.
  • Full sandbox control -- you configure the execution environment: allowed builtins, timeouts, and what the LLM can access.

If you are already using the Claude API and want a managed solution, Anthropic's native PTC is a good choice. If you want provider flexibility, local execution, or framework integration, ez-ptc fills that gap.

Key features

  • Zero dependencies -- pure Python, bring your own LLM client
  • Two modes -- prompt mode (framework-free) or tool mode (native integration)
  • Sandboxed execution -- restricted builtins, no file I/O, no networking, configurable timeout
  • Tool chaining -- assist_tool_chaining=True documents return types so the LLM chains outputs correctly
  • Async support -- asyncio is pre-imported, LLMs can use asyncio.gather for parallel execution

Documentation

Full documentation is available in the docs/ directory:

Contributing

Contributions are welcome. See CONTRIBUTING.md for the full guide.

Quick setup:

git clone https://github.com/abhisheksatish/ez-ptc.git
cd ez-ptc
uv sync
uv run pytest tests/

Found a bug or have a feature request? Open an issue.

License

MIT

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ez_ptc-0.1.4.tar.gz (248.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

ez_ptc-0.1.4-py3-none-any.whl (18.3 kB view details)

Uploaded Python 3

File details

Details for the file ez_ptc-0.1.4.tar.gz.

File metadata

  • Download URL: ez_ptc-0.1.4.tar.gz
  • Upload date:
  • Size: 248.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.6.5

File hashes

Hashes for ez_ptc-0.1.4.tar.gz
Algorithm Hash digest
SHA256 3bd5d9a2afc36d5622b5120d73cf22aeb6565a41c0782bf7ecc83f93eda58e51
MD5 0142e7da2987819c7e30a660686d73df
BLAKE2b-256 1c26e688048a87aed494aaff87154bc99d4def6a3d9921124ccee79d32490796

See more details on using hashes here.

File details

Details for the file ez_ptc-0.1.4-py3-none-any.whl.

File metadata

  • Download URL: ez_ptc-0.1.4-py3-none-any.whl
  • Upload date:
  • Size: 18.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.6.5

File hashes

Hashes for ez_ptc-0.1.4-py3-none-any.whl
Algorithm Hash digest
SHA256 093a9e7307b24e8f53ae5cb80211f212aced1b884abb89d96be52ca1260c02b9
MD5 f5ce10b0aec046298447e3e63d148307
BLAKE2b-256 88bae1876c906b48d6e9eababff86cf423c28f51e59b5fee84c6cab7cdd7d818

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page