Metadata-Version: 2.4
Name: dydact
Version: 0.0.1
Summary: dydact platform SDK — umbrella package (preview)
Author-email: dydact LLC <auto@dydact.io>
License: Apache-2.0
Project-URL: Homepage, https://dydact.io
Project-URL: Lab, https://lab.dydact.io
Project-URL: Documentation, https://orthogonalabs.dydact.io
Keywords: dydact,reasoning,sdk,ai
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Scientific/Engineering
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: dydact-lab<1.0,>=0.3
Dynamic: license-file

# dydact

Umbrella SDK for the **dydact** platform.

This package is the canonical Python entry point for dydact's hosted reasoning surfaces. The current public surface is the **dydact Lab** API; future releases will add additional verticals (clinical, financial, research, voice) as they reach public availability.

## Install

```bash
pip install dydact
```

This pulls in `dydact-lab` (the Lab API SDK) as the underlying transport.

## Quickstart

```python
from dydact import Lab

lab = Lab(api_key="sk-dol-...")             # or set env DOLAS_API_KEY
result = lab.math.evaluate("sqrt(3**2 + 4**2)")
print(result.result["value"])               # → 5.0
```

For the full Lab API surface (math · sudoku · SAT · SMILES · circuit equivalence), see [`dydact-lab` on PyPI](https://pypi.org/project/dydact-lab/) and the docs at <https://orthogonalabs.dydact.io>.

## What ships in this umbrella

| Module | Status | Source |
|---|---|---|
| `dydact.Lab` (alias of `dydact_lab.Lab`) | preview | `dydact-lab>=0.3` |
| `dydact.AsyncLab` | preview | `dydact-lab>=0.3` |
| Additional verticals | TBD | future releases |

## Tiers + auth

API keys are minted at <https://lab.dydact.io/signup>. Tier model:

- **Academic** — free for verified `.edu` researchers (citation required)
- **Pro Researcher** — $79/mo
- **Lab Enterprise** — $2,500/mo
- **dydact Strategic** — contracted

## License

Apache-2.0. © dydact LLC.
