An open API service indexing awesome lists of open source software.

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.

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`.