Metadata-Version: 2.5
Name: wing-gateway
Version: 0.5.0
Summary: General-purpose agent runtime — session, event, context, tools, WebSocket gateway
Project-URL: Homepage, https://github.com/lpdink/wing-agent
Project-URL: Repository, https://github.com/lpdink/wing-agent
Project-URL: Issues, https://github.com/lpdink/wing-agent/issues
Project-URL: Changelog, https://github.com/lpdink/wing-agent/releases
Project-URL: Documentation, https://github.com/lpdink/wing-agent/blob/develop/docs/zh/README.md
License-Expression: Apache-2.0
Keywords: agent,llm,runtime,session,websocket
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Requires-Python: >=3.12
Requires-Dist: aioconsole>=0.8.2
Requires-Dist: fastapi>=0.139.0
Requires-Dist: httpx>=0.27
Requires-Dist: pydantic-settings>=2.13.1
Requires-Dist: python-frontmatter>=1.1.0
Requires-Dist: pyyaml>=6.0.3
Requires-Dist: uvicorn[standard]>=0.51.0
Description-Content-Type: text/markdown

# wing-gateway

The Python runtime behind [wing](https://github.com/lpdink/wing-agent): session lifecycle, context window tracking and compaction, tool registry, event bus, and the FastAPI + WebSocket gateway the `wing` frontends talk to.

Most users want the meta package instead — it installs the `wing` binary and this runtime together:

```bash
pip install wing-agent
```

`wing-gateway` is published separately for deployments that only need the runtime. It is started directly (`wing-gateway`), or by the CLI (`wing start`).

- Documentation: [docs/zh/README.md](https://github.com/lpdink/wing-agent/blob/develop/docs/zh/README.md)
- HTTP / WebSocket protocol: [docs/dev/http-api.md](https://github.com/lpdink/wing-agent/blob/develop/docs/dev/http-api.md)
- License: Apache-2.0
