https://github.com/nex-agi/weaver
Python SDK for Weaver.
https://github.com/nex-agi/weaver
finetune llm python sdk training-as-a-service weaver
Last synced: about 2 months ago
JSON representation
Python SDK for Weaver.
- Host: GitHub
- URL: https://github.com/nex-agi/weaver
- Owner: nex-agi
- License: apache-2.0
- Created: 2025-12-30T07:34:49.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2026-01-22T09:51:06.000Z (5 months ago)
- Last Synced: 2026-01-22T20:53:33.046Z (5 months ago)
- Topics: finetune, llm, python, sdk, training-as-a-service, weaver
- Language: Python
- Homepage: https://weaver.nex-agi.com
- Size: 104 KB
- Stars: 12
- Watchers: 0
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# Weaver Python SDK
Python client for the NexWeave Weaver server. The SDK mirrors the REST API exposed by
`weaver-server` and provides ergonomic helpers for training, sampling, telemetry, and
operations management.
## Installing locally
```bash
pip install nex-weaver
```
## Configuration
Configuration can be provided via keyword arguments or environment variables:
- `WEAVER_API_KEY`
## Quickstart
```python
from weaver import ServiceClient
def main():
with ServiceClient() as client:
session = client.ensure_session()
print(session)
if __name__ == "__main__":
main()
```
For a full demonstration see `weaver/examples/pig_latin.py`.