Metadata-Version: 2.4
Name: ddg-opentine
Version: 0.1.0
Summary: Opt-in DDG provider for opentine — use DDG (x402 pay-per-call) as your opentine agent's model, without any change to opentine core.
Author-email: 0xcircuitbreaker <0xcircuitbreaker@protonmail.com>
License-Expression: MIT
Keywords: ai-agents,base,openai,opentine,usdc,x402
Requires-Python: >=3.11
Requires-Dist: ddg-router>=0.1.0
Requires-Dist: opentine>=0.2.0
Description-Content-Type: text/markdown

# ddg-opentine

Use [DDG Agent-Payable Services](https://agents.daedalusdevelopmentgroup.com) as
your [opentine](https://pypi.org/project/opentine/) agent's model — **opt-in, with
zero changes to opentine.** opentine stays universal and provider-neutral; DDG
lives entirely in this package.

```bash
pip install ddg-opentine ddg-router
ddg-router &            # local x402-paying proxy (free-trial by default)
```
```python
from ddg_opentine import ddg_agent
agent = ddg_agent(tools=[...])          # an opentine Agent that uses DDG
# or bring DDG to plain opentine yourself:
from opentine.runtime import Agent
from ddg_opentine import DDG
agent = Agent(model=DDG())
```
opentine core has no DDG dependency and no default — this is the zero-lock-in way.
