aweshare 0.2.7 → 0.2.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +10 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
<a href="https://ko-fi.com/mugpeng"><img src="https://img.shields.io/badge/Ko--fi-Buy%20me%20a%20coffee-FF5E5B?style=flat-square&logo=ko-fi&logoColor=white" alt="Ko-fi"></a>
|
|
15
15
|
</p>
|
|
16
16
|
<p>
|
|
17
|
-
<a href="https://github.com/wehuman01/aweshare-source/releases"><img src="https://img.shields.io/badge/version-0.2.
|
|
17
|
+
<a href="https://github.com/wehuman01/aweshare-source/releases"><img src="https://img.shields.io/badge/version-0.2.8-7C3AED?style=flat-square" alt="Version"></a>
|
|
18
18
|
<a href="https://github.com/wehuman01/aweshare"><img src="https://img.shields.io/badge/node-%E2%89%A522-0EA5E9?style=flat-square" alt="Node"></a>
|
|
19
19
|
<a href="https://github.com/wehuman01/aweshare/blob/main/LICENSE"><img src="https://img.shields.io/badge/license-proprietary-E34F26?style=flat-square" alt="License"></a>
|
|
20
20
|
<a href="https://www.npmjs.com/package/aweshare"><img src="https://img.shields.io/badge/npm-aweshare-7C3AED?style=flat-square" alt="npm package"></a>
|
|
@@ -83,7 +83,7 @@ aweshare hub serve # listens on :8787 (put Caddy/nginx TLS in front)
|
|
|
83
83
|
```bash
|
|
84
84
|
docker run -d --name aweshare-hub --restart unless-stopped \
|
|
85
85
|
-p 127.0.0.1:8787:8787 -v "$PWD/data:/data" ghcr.io/wehuman01/aweshare:latest
|
|
86
|
-
docker exec aweshare-hub
|
|
86
|
+
docker exec aweshare-hub aweshare hub init # first run: prints the admin token, save it
|
|
87
87
|
```
|
|
88
88
|
|
|
89
89
|
Then issue tokens (admin token in hand):
|
|
@@ -93,6 +93,14 @@ aweshare hub token issue --role producer --name peng # → asp_..., give to
|
|
|
93
93
|
aweshare hub token issue --role consumer --name alice # → asc_..., give to the consumer
|
|
94
94
|
```
|
|
95
95
|
|
|
96
|
+
Three token roles, one per party:
|
|
97
|
+
|
|
98
|
+
| Role | Who holds it | How it's used |
|
|
99
|
+
|---|---|---|
|
|
100
|
+
| `admin` | hub operator (you only) | management commands: `hub token issue` / `grant add` / `token revoke` / `usage` |
|
|
101
|
+
| `producer` (`asp_...`) | the agent on the producer's machine | set as `token` in `~/.aweshare/config.toml`; the agent registers its offerings with it |
|
|
102
|
+
| `consumer` (`asc_...`) | whoever calls the models | set in SDK env vars (`ANTHROPIC_AUTH_TOKEN` / `OPENAI_API_KEY`); the hub uses it to decide which aliases they may call |
|
|
103
|
+
|
|
96
104
|
The producer's `name` becomes their alias namespace (the `peng/` in `peng/gpt-4o`).
|
|
97
105
|
|
|
98
106
|
### 2. Producer first run (in this order)
|