vertex-ai-proxy 1.0.2 → 1.1.0
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 +526 -104
- package/dist/cli.d.ts +23 -0
- package/dist/cli.d.ts.map +1 -1
- package/dist/cli.js +1161 -59
- package/dist/cli.js.map +1 -1
- package/dist/index.d.ts +29 -2
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1025 -2
- package/dist/index.js.map +1 -1
- package/dist/setup.js +0 -1
- package/dist/setup.js.map +1 -1
- package/package.json +1 -1
- package/dist/server.d.ts +0 -22
- package/dist/server.d.ts.map +0 -1
- package/dist/server.js +0 -383
- package/dist/server.js.map +0 -1
package/dist/cli.d.ts
CHANGED
|
@@ -1,3 +1,26 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
+
/**
|
|
3
|
+
* Vertex AI Proxy CLI
|
|
4
|
+
*
|
|
5
|
+
* Commands:
|
|
6
|
+
* vertex-ai-proxy Start the proxy server
|
|
7
|
+
* vertex-ai-proxy start Start as background daemon
|
|
8
|
+
* vertex-ai-proxy stop Stop the daemon
|
|
9
|
+
* vertex-ai-proxy restart Restart the daemon
|
|
10
|
+
* vertex-ai-proxy status Show proxy status
|
|
11
|
+
* vertex-ai-proxy logs Show proxy logs
|
|
12
|
+
* vertex-ai-proxy models List all available models
|
|
13
|
+
* vertex-ai-proxy models fetch Fetch/verify models from Vertex AI
|
|
14
|
+
* vertex-ai-proxy models info <model> Show detailed model info
|
|
15
|
+
* vertex-ai-proxy models enable <model> Enable a model
|
|
16
|
+
* vertex-ai-proxy config Show current config
|
|
17
|
+
* vertex-ai-proxy config set Interactive config setup
|
|
18
|
+
* vertex-ai-proxy config set-default Set default model
|
|
19
|
+
* vertex-ai-proxy config add-alias Add model alias
|
|
20
|
+
* vertex-ai-proxy config export Export for OpenClaw
|
|
21
|
+
* vertex-ai-proxy setup-openclaw Configure OpenClaw integration
|
|
22
|
+
* vertex-ai-proxy check Check Google Cloud setup
|
|
23
|
+
* vertex-ai-proxy install-service Install as systemd service
|
|
24
|
+
*/
|
|
2
25
|
export {};
|
|
3
26
|
//# sourceMappingURL=cli.d.ts.map
|
package/dist/cli.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"cli.d.ts","sourceRoot":"","sources":["../src/cli.ts"],"names":[],"mappings":""}
|
|
1
|
+
{"version":3,"file":"cli.d.ts","sourceRoot":"","sources":["../src/cli.ts"],"names":[],"mappings":";AAEA;;;;;;;;;;;;;;;;;;;;;;GAsBG"}
|