@elizaos/schemas 2.0.0-alpha.51 → 2.0.0-alpha.511
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/buf.gen.yaml +2 -2
- package/buf.yaml +2 -0
- package/eliza/v1/agent.proto +10 -2
- package/eliza/v1/message_service.proto +5 -2
- package/eliza/v1/model.proto +7 -2
- package/eliza/v1/plugin.proto +1 -1
- package/package.json +4 -4
package/buf.gen.yaml
CHANGED
|
@@ -16,11 +16,11 @@ plugins:
|
|
|
16
16
|
- import_extension=.js
|
|
17
17
|
|
|
18
18
|
# Python generation using standard protobuf
|
|
19
|
-
- remote: buf.build/protocolbuffers/python
|
|
19
|
+
- remote: buf.build/protocolbuffers/python:v29.3
|
|
20
20
|
out: ../python/elizaos/types/generated
|
|
21
21
|
|
|
22
22
|
# Python type stubs
|
|
23
|
-
- remote: buf.build/protocolbuffers/pyi
|
|
23
|
+
- remote: buf.build/protocolbuffers/pyi:v29.3
|
|
24
24
|
out: ../python/elizaos/types/generated
|
|
25
25
|
|
|
26
26
|
# Rust generation using prost (WASM-compatible)
|
package/buf.yaml
CHANGED
package/eliza/v1/agent.proto
CHANGED
|
@@ -42,9 +42,9 @@ message CharacterSettings {
|
|
|
42
42
|
// Maximum iterations for multi-step
|
|
43
43
|
optional int32 max_multistep_iterations = 3;
|
|
44
44
|
// Whether LLM is off by default in rooms
|
|
45
|
-
optional bool
|
|
45
|
+
optional bool basic_capabilities_defllmoff = 4;
|
|
46
46
|
// Whether to keep responses when superseded
|
|
47
|
-
optional bool
|
|
47
|
+
optional bool basic_capabilities_keep_resp = 5;
|
|
48
48
|
// Provider execution timeout in ms
|
|
49
49
|
optional int32 providers_total_timeout_ms = 6;
|
|
50
50
|
// Maximum working memory entries
|
|
@@ -63,8 +63,16 @@ message CharacterSettings {
|
|
|
63
63
|
optional double default_presence_penalty = 13;
|
|
64
64
|
// Disable basic capabilities
|
|
65
65
|
optional bool disable_basic_capabilities = 14;
|
|
66
|
+
// Enable extended capabilities
|
|
67
|
+
optional bool enable_extended_capabilities = 15;
|
|
66
68
|
// Additional dynamic settings
|
|
67
69
|
google.protobuf.Struct extra = 16;
|
|
70
|
+
// Enable native knowledge runtime feature
|
|
71
|
+
optional bool enable_knowledge = 17;
|
|
72
|
+
// Enable native relationships runtime feature
|
|
73
|
+
optional bool enable_relationships = 18;
|
|
74
|
+
// Enable native trajectories runtime feature
|
|
75
|
+
optional bool enable_trajectories = 19;
|
|
68
76
|
}
|
|
69
77
|
|
|
70
78
|
// Writing style guides
|
|
@@ -10,8 +10,11 @@ import "eliza/v1/state.proto";
|
|
|
10
10
|
// Model type configuration for shouldRespond evaluation.
|
|
11
11
|
enum ShouldRespondModelType {
|
|
12
12
|
SHOULD_RESPOND_MODEL_TYPE_UNSPECIFIED = 0;
|
|
13
|
-
|
|
14
|
-
|
|
13
|
+
SHOULD_RESPOND_MODEL_TYPE_NANO = 1;
|
|
14
|
+
SHOULD_RESPOND_MODEL_TYPE_SMALL = 2;
|
|
15
|
+
SHOULD_RESPOND_MODEL_TYPE_LARGE = 3;
|
|
16
|
+
SHOULD_RESPOND_MODEL_TYPE_MEGA = 4;
|
|
17
|
+
SHOULD_RESPOND_MODEL_TYPE_RESPONSE_HANDLER = 5;
|
|
15
18
|
}
|
|
16
19
|
|
|
17
20
|
// Configuration options for message processing.
|
package/eliza/v1/model.proto
CHANGED
|
@@ -21,8 +21,7 @@ enum ModelType {
|
|
|
21
21
|
MODEL_TYPE_TEXT_EMBEDDING = 3;
|
|
22
22
|
MODEL_TYPE_TEXT_TOKENIZER_ENCODE = 4;
|
|
23
23
|
MODEL_TYPE_TEXT_TOKENIZER_DECODE = 5;
|
|
24
|
-
|
|
25
|
-
MODEL_TYPE_TEXT_REASONING_LARGE = 7;
|
|
24
|
+
reserved 6, 7; // removed: TEXT_REASONING_SMALL, TEXT_REASONING_LARGE
|
|
26
25
|
MODEL_TYPE_TEXT_COMPLETION = 8;
|
|
27
26
|
MODEL_TYPE_IMAGE = 9;
|
|
28
27
|
MODEL_TYPE_IMAGE_DESCRIPTION = 10;
|
|
@@ -32,6 +31,12 @@ enum ModelType {
|
|
|
32
31
|
MODEL_TYPE_VIDEO = 14;
|
|
33
32
|
MODEL_TYPE_OBJECT_SMALL = 15;
|
|
34
33
|
MODEL_TYPE_OBJECT_LARGE = 16;
|
|
34
|
+
MODEL_TYPE_TEXT_NANO = 17;
|
|
35
|
+
MODEL_TYPE_TEXT_MEDIUM = 18;
|
|
36
|
+
MODEL_TYPE_TEXT_MEGA = 19;
|
|
37
|
+
MODEL_TYPE_RESPONSE_HANDLER = 20;
|
|
38
|
+
MODEL_TYPE_ACTION_PLANNER = 21;
|
|
39
|
+
MODEL_TYPE_RESEARCH = 22;
|
|
35
40
|
}
|
|
36
41
|
|
|
37
42
|
// Response format specification
|
package/eliza/v1/plugin.proto
CHANGED
|
@@ -5,9 +5,9 @@ package eliza.v1;
|
|
|
5
5
|
|
|
6
6
|
import "eliza/v1/agent.proto";
|
|
7
7
|
import "eliza/v1/components.proto";
|
|
8
|
+
import "eliza/v1/payment.proto";
|
|
8
9
|
import "eliza/v1/service.proto";
|
|
9
10
|
import "google/protobuf/struct.proto";
|
|
10
|
-
import "eliza/v1/payment.proto";
|
|
11
11
|
|
|
12
12
|
// HTTP method enumeration for routes
|
|
13
13
|
enum HttpMethod {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elizaos/schemas",
|
|
3
|
-
"version": "2.0.0-alpha.
|
|
3
|
+
"version": "2.0.0-alpha.511",
|
|
4
4
|
"description": "Protocol Buffer schemas for elizaOS - single source of truth for all types",
|
|
5
5
|
"files": [
|
|
6
6
|
"eliza",
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"access": "public"
|
|
13
13
|
},
|
|
14
14
|
"scripts": {
|
|
15
|
-
"lint": "buf lint",
|
|
15
|
+
"lint": "buf lint --path eliza --disable-symlinks",
|
|
16
16
|
"format": "buf format -w",
|
|
17
17
|
"breaking": "buf breaking --against '.git#branch=main'",
|
|
18
18
|
"generate": "buf generate",
|
|
@@ -21,10 +21,10 @@
|
|
|
21
21
|
"generate:rs": "buf generate --template buf.gen.rs.yaml",
|
|
22
22
|
"clean": "rm -rf ../typescript/src/types/generated ../python/elizaos/types/generated ../rust/src/types/generated",
|
|
23
23
|
"build": "npm run lint && npm run generate",
|
|
24
|
-
"test": "buf lint"
|
|
24
|
+
"test": "buf lint --path eliza --disable-symlinks"
|
|
25
25
|
},
|
|
26
26
|
"devDependencies": {
|
|
27
27
|
"@bufbuild/buf": "^1.47.2"
|
|
28
28
|
},
|
|
29
|
-
"gitHead": "
|
|
29
|
+
"gitHead": "d93ee4b4c172e482a9fd488b775961b0fb1728d5"
|
|
30
30
|
}
|