@elizaos/schemas 2.0.0-alpha.49 → 2.0.0-alpha.501

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 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
@@ -3,6 +3,8 @@ version: v2
3
3
  modules:
4
4
  - path: .
5
5
  name: buf.build/elizaos/eliza
6
+ excludes:
7
+ - node_modules
6
8
  lint:
7
9
  use:
8
10
  - STANDARD
@@ -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 bootstrap_defllmoff = 4;
45
+ optional bool basic_capabilities_defllmoff = 4;
46
46
  // Whether to keep responses when superseded
47
- optional bool bootstrap_keep_resp = 5;
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
- SHOULD_RESPOND_MODEL_TYPE_SMALL = 1;
14
- SHOULD_RESPOND_MODEL_TYPE_LARGE = 2;
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.
@@ -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
- MODEL_TYPE_TEXT_REASONING_SMALL = 6;
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
@@ -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.49",
3
+ "version": "2.0.0-alpha.501",
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": "5020ece2db4c07aaa7e25c4490f26f6b44e277d7"
29
+ "gitHead": "eaa5140a69c112693471d6571ec9985d8c3fea8d"
30
30
  }