@semiont/cli 0.2.45 → 0.3.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.
@@ -36,6 +36,8 @@ static_resources:
36
36
  - name: envoy.filters.http.router
37
37
  typed_config:
38
38
  "@type": type.googleapis.com/envoy.extensions.filters.http.router.v3.Router
39
+ upgrade_configs:
40
+ - upgrade_type: websocket
39
41
  route_config:
40
42
  name: local_route
41
43
  virtual_hosts:
@@ -0,0 +1,11 @@
1
+ {
2
+ "services": {
3
+ "inference": {
4
+ "platform": { "type": "container" },
5
+ "type": "ollama",
6
+ "model": "llama3.1:8b",
7
+ "port": 11434,
8
+ "image": "ollama/ollama"
9
+ }
10
+ }
11
+ }
@@ -0,0 +1,10 @@
1
+ {
2
+ "services": {
3
+ "inference": {
4
+ "platform": { "type": "external" },
5
+ "type": "ollama",
6
+ "model": "gemma2:9b",
7
+ "endpoint": "http://localhost:11434"
8
+ }
9
+ }
10
+ }
@@ -0,0 +1,10 @@
1
+ {
2
+ "services": {
3
+ "inference": {
4
+ "platform": { "type": "posix" },
5
+ "type": "ollama",
6
+ "model": "gemma2:9b",
7
+ "port": 11434
8
+ }
9
+ }
10
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@semiont/cli",
3
- "version": "0.2.45",
3
+ "version": "0.3.0",
4
4
  "description": "Semiont CLI - Unified environment management tool",
5
5
  "_comment": "AWS SDK dependencies (@aws-sdk/*) are only used by platforms/aws",
6
6
  "type": "module",
@@ -64,38 +64,34 @@
64
64
  "@aws-sdk/client-secrets-manager": "^3.600.0",
65
65
  "@aws-sdk/client-sts": "^3.859.0",
66
66
  "@aws-sdk/client-wafv2": "^3.859.0",
67
- "@semiont/api-client": "0.2.45",
68
- "@semiont/core": "0.2.45",
69
- "@testcontainers/postgresql": "^11.5.1",
67
+ "@semiont/api-client": "0.3.0",
68
+ "@semiont/content": "0.3.0",
69
+ "@semiont/core": "0.3.0",
70
+ "@semiont/event-sourcing": "0.3.0",
71
+ "@semiont/graph": "0.3.0",
72
+ "@semiont/make-meaning": "0.3.0",
70
73
  "arg": "^5.0.2",
71
74
  "argon2": "^0.43.0",
72
- "commander": "^14.0.0",
73
75
  "express": "^4.18.2",
74
- "ink": "^4.4.1",
75
- "is-ci": "^3.0.1",
76
- "is-upper-case": "^2.0.2",
76
+ "ink": "^6.8.0",
77
77
  "js-yaml": "^4.1.0",
78
- "neo4j-driver": "^5.0.0",
79
- "openai": "^5.21.0",
80
- "react": "^18.3.1",
81
- "simple-git": "^3.27.0",
78
+ "neo4j-driver": "^6.0.1",
79
+ "react": "^19.2.4",
82
80
  "socket.io": "^4.5.4",
83
81
  "zod": "^3.23.8"
84
82
  },
85
83
  "devDependencies": {
86
84
  "@prisma/client": "^6.13.0",
87
85
  "@types/express": "^4.17.17",
88
- "@types/ink": "^0.5.2",
89
86
  "@types/js-yaml": "^4.0.9",
90
- "@types/react": "^18.3.0",
91
- "@types/yargs": "^17.0.0",
92
- "@vitest/coverage-v8": "^3.2.4",
87
+ "@types/react": "^19.2.14",
88
+ "@vitest/coverage-v8": "^4.1.0",
93
89
  "chalk": "^5.3.0",
94
90
  "typescript": "^5.9.2",
95
- "vitest": "^3.2.4",
96
- "yargs": "^17.7.0"
91
+ "vitest": "^4.1.0"
97
92
  },
98
93
  "overrides": {
99
94
  "esbuild": "0.27.2"
100
- }
95
+ },
96
+ "bundleDependencies": []
101
97
  }
@@ -1,16 +0,0 @@
1
- {
2
- "services": {
3
- "inference": {
4
- "platform": {
5
- "type": "external"
6
- },
7
- "type": "openai",
8
- "model": "gpt-3.5-turbo",
9
- "maxTokens": 1000,
10
- "temperature": 0.7,
11
- "endpoint": "https://api.openai.com/v1",
12
- "apiKey": "${OPENAI_API_KEY}",
13
- "organization": "${OPENAI_ORG_ID}"
14
- }
15
- }
16
- }