easytyga 1.0.0 → 1.0.1

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.
Files changed (3) hide show
  1. package/README.md +2 -2
  2. package/bin/cli.js +3 -3
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -10,13 +10,13 @@ npx easytyga
10
10
 
11
11
  ```
12
12
  ┌─────────────────────────────────────┐
13
- │ easytyga v1.0.0
13
+ │ easytyga v1.0.1
14
14
  │ Tunnel your local AI to the web │
15
15
  └─────────────────────────────────────┘
16
16
 
17
17
  GPU: NVIDIA GeForce RTX 4090
18
18
  Target: http://localhost:11434
19
- Relay: wss://relay.easytyga.com/ws
19
+ Relay: wss://easytyga.com/ws
20
20
 
21
21
  ┌─────────────────────────────────────┐
22
22
  │ Tunnel active │
package/bin/cli.js CHANGED
@@ -36,7 +36,7 @@ if (hasFlag('help') || hasFlag('h')) {
36
36
 
37
37
  Options:
38
38
  --target <url> Local endpoint (default: http://localhost:11434)
39
- --server <url> Relay server (default: wss://relay.easytyga.com/ws)
39
+ --server <url> Relay server (default: wss://easytyga.com/ws)
40
40
  --key <key> Connection key
41
41
  --list Register on the GPU marketplace
42
42
  --memory Enable persistent memory
@@ -53,7 +53,7 @@ if (hasFlag('help') || hasFlag('h')) {
53
53
  }
54
54
 
55
55
  const targetUrl = (getArg('target', '') || getArg('ollama', '') || 'http://localhost:11434').replace(/\/$/, '');
56
- const serverUrl = getArg('server', 'wss://relay.easytyga.com/ws');
56
+ const serverUrl = getArg('server', 'wss://easytyga.com/ws');
57
57
  const key = getArg('key', '') || process.env.EASYTYGA_KEY || '';
58
58
  const listMode = hasFlag('list');
59
59
  const memoryMode = hasFlag('memory');
@@ -61,7 +61,7 @@ const memoryMode = hasFlag('memory');
61
61
  // -- Main --
62
62
  (async () => {
63
63
  console.log('');
64
- console.log(' easytyga v1.0.0');
64
+ console.log(' easytyga v1.0.1');
65
65
  console.log(' Tunnel your local AI to the web');
66
66
  console.log('');
67
67
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "easytyga",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Tunnel your local AI to the internet. Secure. One command. Works with Ollama, vLLM, and any HTTP service.",
5
5
  "bin": {
6
6
  "easytyga": "bin/cli.js"