Skip to main content

optionsahoy-pydantic-ai

PyPI version Python versions License: MIT

Pydantic AI tools for the OptionsAhoy equity-compensation calculators. One pydantic_ai.Tool per OptionsAhoy REST endpoint, built on the keyless optionsahoy client. No OptionsAhoy account, no application programming interface (API) key, full federal tax code plus all 50 states and the District of Columbia (DC).

Why not just ask the model?

We benchmarked five frontier large language models (LLMs), 3 runs each, 15 trials total, on the same multi-year incentive stock option (ISO) exercise problem. Every trial overshot the true after-tax outcome, by 2x to 20x. See the benchmark, updated for the latest models, at https://optionsahoy.com/benchmark. Multi-year scheduling has a search space larger than an LLM can reason through in-context; these tools return the verifiable answer instead.

Raw responses and scoring: llm-iso-benchmark. Full write-up: But can it do taxes though?.

Verified

Beyond determinism, the tax math is independently verified, every release: every 2026 federal constant matches its IRS Rev. Proc. 2025-32 value, worked federal cases reproduce to the cent against the independently-maintained PSL Tax-Calculator, and state tax reproduces to the cent against OpenTaxSolver across CA, NY, NJ, PA, and MA, with the headline answer recomputed live in your browser. Proof, shown beside the public sources: https://optionsahoy.com/verification

What it provides

get_optionsahoy_tools() returns seven pydantic_ai.Tools, each with a JSON schema mirroring its endpoint:

  • optionsahoy_amt_iso_optimize - multi-year ISO exercise optimizer under the alternative minimum tax (AMT)
  • optionsahoy_nso_calculate - non-qualified stock option (NSO) exercise tax, sell-at-exercise versus hold
  • optionsahoy_rsu_sell_vs_hold - restricted stock unit (RSU) sell at vest versus hold for long-term capital gains
  • optionsahoy_concentration_analyze - single-stock concentration risk and the after-tax cost of diversifying
  • optionsahoy_protective_put_price - protective put, zero-cost collar, and put spread pricing
  • optionsahoy_qsbs_check - qualified small business stock (QSBS) Section 1202 eligibility and exclusion
  • optionsahoy_equity_funding_plan - multi-year plan to fund a cash goal from equity by a target date

Each tool returns an independent calculation for one decision. They are not a single joint optimization across your whole equity portfolio; the integrated, cross-asset optimizer is the OptionsAhoy product, currently in invite-only beta.

Coverage spans the full federal tax code plus all 50 states and DC. The adapter pulls in the keyless optionsahoy client automatically. No API key is read, stored, or sent anywhere.

Install

pip install optionsahoy-pydantic-ai

This depends on pydantic-ai-slim (the Pydantic AI core); the full pydantic-ai distribution installs it too, so either satisfies the requirement.

Quickstart

Pass the tools to an Agent. You bring your own model key (for example OPENAI_API_KEY).

from pydantic_ai import Agent

from optionsahoy_pydantic_ai import get_optionsahoy_tools

agent = Agent(
    "openai:gpt-4o-mini",
    system_prompt=(
        "You are an equity-compensation assistant. Use the OptionsAhoy tools to "
        "compute exact tax-aware answers; do not estimate the math yourself."
    ),
    tools=get_optionsahoy_tools(),
)

result = agent.run_sync(
    "I have 8000 ISOs at a $3 strike, current fair market value $40, granted "
    "2022-03-01, still employed. I file single in California with $250000 of "
    "ordinary income, no AMT carryforward, 4% cash return, 5-year horizon, and "
    "expect 12% annual growth at 50% volatility. How many shares should I "
    "exercise each year?"
)
print(result.output)

Three ways to attach the tools, pick one:

  • Agent(..., tools=get_optionsahoy_tools()) - pass the tool list at construction.
  • Agent(..., toolsets=[optionsahoy_toolset()]) - pass a ready-made FunctionToolset.
  • register_optionsahoy_tools(agent) - add all seven onto an already-constructed Agent.

Pass your own configured client to any of them with client=OptionsAhoyClient(...).

The seven endpoints accept forward-looking fields (such as expectedSalePrice or volatility) that the schema marks optional but the API requires at call time; set a covered ticker (for example "NVDA") to let the API derive them, or pass explicit values. Omitting both returns a clear 400 explaining which field is needed.

To read the full input schema for any tool, inspect tools[0].function_schema.json_schema (substitute the tool you want). The authoritative request schemas are the OpenAPI spec at https://optionsahoy.com/openapi.json and the agent docs at https://optionsahoy.com/for-agents.

Runnable example and source

Related

Sibling packages wrapping the same calculators:

Other surfaces for the same calculators:

Built by AlphaLatitude Inc., the company behind OptionsAhoy.

Download files

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

Source Distribution

optionsahoy_pydantic_ai-0.1.8.tar.gz (11.3 kB view details)

Uploaded Source

Built Distribution

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

optionsahoy_pydantic_ai-0.1.8-py3-none-any.whl (9.4 kB view details)

Uploaded Python 3

File details

Details for the file optionsahoy_pydantic_ai-0.1.8.tar.gz.

File metadata

  • Download URL: optionsahoy_pydantic_ai-0.1.8.tar.gz
  • Upload date:
  • Size: 11.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for optionsahoy_pydantic_ai-0.1.8.tar.gz
Algorithm Hash digest
SHA256 2dc590242736db8b36fd68798fb05b81da68b41864b8fec293db472c8212c967
MD5 30d57147585bcd322757acbed7de69bb
BLAKE2b-256 b98702450bddae27d317e284268d27f03ec18bc91e4aff94ec86004f7b6781bc

See more details on using hashes here.

Provenance

The following attestation bundles were made for optionsahoy_pydantic_ai-0.1.8.tar.gz:

Publisher: publish-python.yml on AlvisoOculus/optionsahoy-mcp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file optionsahoy_pydantic_ai-0.1.8-py3-none-any.whl.

File metadata

File hashes

Hashes for optionsahoy_pydantic_ai-0.1.8-py3-none-any.whl
Algorithm Hash digest
SHA256 ad789d6a55e83d51c12c35a700bf6ed8ec7a2381ce0a1316d32593f30411ecc8
MD5 3445c04f1e81c63454ce9fc3c1f8259c
BLAKE2b-256 35438bfc733c8447e77797a508e6ae497d81863bb7a403e9665824703d8cb3dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for optionsahoy_pydantic_ai-0.1.8-py3-none-any.whl:

Publisher: publish-python.yml on AlvisoOculus/optionsahoy-mcp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

This release

0.1.8 This release

2 files

0.1.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page