Metadata-Version: 2.4
Name: web-agent-sdk
Version: 0.2.0
Summary: Python SDK for quick search and agentic search in web-agent.
Project-URL: Homepage, https://github.com/Nickbohm555/web-agent
Project-URL: Repository, https://github.com/Nickbohm555/web-agent
Project-URL: Issues, https://github.com/Nickbohm555/web-agent/issues
Requires-Python: >=3.11
Description-Content-Type: text/markdown
Requires-Dist: openai<3.0.0,>=2.30.0
Requires-Dist: pydantic<3.0.0,>=2.11
Provides-Extra: dev
Requires-Dist: pytest<10.0.0,>=9.0.0; extra == "dev"

# web-agent-sdk

Small Python SDK for stateless OpenAI-backed search runs:

- `quick_search(query)` for a fast web-backed answer
- `agentic_search(query)` for a deeper single-run investigation

Project links:

- PyPI: `https://pypi.org/project/web-agent-sdk/0.2.0/`
- GitHub: `https://github.com/Nickbohm555/web-agent`

## Install

```bash
pip install web-agent-sdk
```

## Usage

```python
from web_agent_sdk import WebAgentClient

client = WebAgentClient(api_key="your-openai-key", model="gpt-5.4")

quick = client.quick_search("Find pricing")
agentic = client.agentic_search("Investigate this company")
```
