@reverbia/portal 1.0.0-next.20251118181949 → 1.0.0-next.20251119174623
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 +16 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -71,4 +71,19 @@ This will:
|
|
|
71
71
|
3. Worker detects contracts and starts processing
|
|
72
72
|
4. Show logs and keep running
|
|
73
73
|
|
|
74
|
-
|
|
74
|
+
### Running with Frontend
|
|
75
|
+
|
|
76
|
+
To run the local development environment with the frontend UI:
|
|
77
|
+
|
|
78
|
+
```bash
|
|
79
|
+
make localnet-frontend
|
|
80
|
+
```
|
|
81
|
+
|
|
82
|
+
**Note**: The frontend image (`ai-memoryless-client`) must be built first from the [ai-memoryless-client](https://github.com/zeta-chain/ai-memoryless-client) repository:
|
|
83
|
+
|
|
84
|
+
```bash
|
|
85
|
+
# In the ai-memoryless-client repository
|
|
86
|
+
docker build -f apps/web/Dockerfile -t ai-memoryless-client .
|
|
87
|
+
```
|
|
88
|
+
|
|
89
|
+
The frontend will be available at http://localhost:8787 and requires `NEXT_PUBLIC_PRIVY_APP_ID` to be set in your `.env` file.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@reverbia/portal",
|
|
3
|
-
"version": "1.0.0-next.
|
|
3
|
+
"version": "1.0.0-next.20251119174623",
|
|
4
4
|
"description": "AI Portal is a prepaid escrow-based API gateway for wallet-authenticated LLM usage. It provides an OpenAI-compatible API with on-chain settlement for AI inference costs.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"directories": {
|