@elizaos/schemas 2.0.0-alpha.85 → 2.0.0-alpha.89
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/eliza/v1/agent.proto +2 -2
- package/eliza/v1/plugin.proto +1 -1
- package/package.json +2 -2
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
|
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.89",
|
|
4
4
|
"description": "Protocol Buffer schemas for elizaOS - single source of truth for all types",
|
|
5
5
|
"files": [
|
|
6
6
|
"eliza",
|
|
@@ -26,5 +26,5 @@
|
|
|
26
26
|
"devDependencies": {
|
|
27
27
|
"@bufbuild/buf": "^1.47.2"
|
|
28
28
|
},
|
|
29
|
-
"gitHead": "
|
|
29
|
+
"gitHead": "28c487421a8b91b5cc191d721d47c96c0b5d8ba1"
|
|
30
30
|
}
|