@elizaos/python 2.0.0-alpha.10 → 2.0.0-alpha.26
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/elizaos/__init__.py +0 -1
- package/elizaos/advanced_capabilities/__init__.py +6 -41
- package/elizaos/advanced_capabilities/actions/__init__.py +1 -21
- package/elizaos/advanced_capabilities/actions/add_contact.py +21 -11
- package/elizaos/advanced_capabilities/actions/follow_room.py +28 -28
- package/elizaos/advanced_capabilities/actions/image_generation.py +13 -26
- package/elizaos/advanced_capabilities/actions/mute_room.py +13 -26
- package/elizaos/advanced_capabilities/actions/remove_contact.py +16 -2
- package/elizaos/advanced_capabilities/actions/roles.py +13 -27
- package/elizaos/advanced_capabilities/actions/schedule_follow_up.py +70 -15
- package/elizaos/advanced_capabilities/actions/search_contacts.py +17 -3
- package/elizaos/advanced_capabilities/actions/send_message.py +183 -50
- package/elizaos/advanced_capabilities/actions/settings.py +16 -2
- package/elizaos/advanced_capabilities/actions/unfollow_room.py +13 -26
- package/elizaos/advanced_capabilities/actions/unmute_room.py +13 -26
- package/elizaos/advanced_capabilities/actions/update_contact.py +16 -2
- package/elizaos/advanced_capabilities/actions/update_entity.py +16 -2
- package/elizaos/advanced_capabilities/evaluators/__init__.py +2 -9
- package/elizaos/advanced_capabilities/evaluators/reflection.py +3 -132
- package/elizaos/advanced_capabilities/evaluators/relationship_extraction.py +5 -201
- package/elizaos/advanced_capabilities/providers/__init__.py +1 -12
- package/elizaos/advanced_capabilities/providers/knowledge.py +24 -3
- package/elizaos/advanced_capabilities/services/__init__.py +2 -9
- package/elizaos/advanced_memory/actions/reset_session.py +11 -0
- package/elizaos/advanced_memory/evaluators/reflection.py +134 -0
- package/elizaos/advanced_memory/evaluators/relationship_extraction.py +203 -0
- package/elizaos/advanced_memory/memory_service.py +15 -17
- package/elizaos/advanced_memory/test_advanced_memory.py +357 -0
- package/elizaos/advanced_planning/actions/schedule_follow_up.py +222 -0
- package/elizaos/advanced_planning/planning_service.py +26 -14
- package/elizaos/basic_capabilities/__init__.py +0 -2
- package/elizaos/basic_capabilities/providers/__init__.py +0 -3
- package/elizaos/basic_capabilities/providers/actions.py +118 -29
- package/elizaos/basic_capabilities/providers/agent_settings.py +64 -0
- package/elizaos/basic_capabilities/providers/character.py +19 -21
- package/elizaos/basic_capabilities/providers/contacts.py +79 -0
- package/elizaos/basic_capabilities/providers/current_time.py +7 -4
- package/elizaos/basic_capabilities/providers/facts.py +87 -0
- package/elizaos/basic_capabilities/providers/follow_ups.py +117 -0
- package/elizaos/basic_capabilities/providers/knowledge.py +97 -0
- package/elizaos/basic_capabilities/providers/relationships.py +107 -0
- package/elizaos/basic_capabilities/providers/roles.py +96 -0
- package/elizaos/basic_capabilities/providers/settings.py +56 -0
- package/elizaos/basic_capabilities/providers/time.py +7 -4
- package/elizaos/bootstrap/__init__.py +21 -2
- package/elizaos/bootstrap/actions/schedule_follow_up.py +65 -7
- package/elizaos/bootstrap/actions/send_message.py +162 -15
- package/elizaos/bootstrap/autonomy/__init__.py +5 -1
- package/elizaos/bootstrap/autonomy/action.py +161 -0
- package/elizaos/bootstrap/autonomy/evaluators.py +217 -0
- package/elizaos/bootstrap/autonomy/service.py +238 -28
- package/elizaos/bootstrap/plugin.py +7 -0
- package/elizaos/bootstrap/providers/actions.py +118 -27
- package/elizaos/bootstrap/providers/agent_settings.py +1 -0
- package/elizaos/bootstrap/providers/attachments.py +1 -0
- package/elizaos/bootstrap/providers/capabilities.py +1 -0
- package/elizaos/bootstrap/providers/character.py +1 -0
- package/elizaos/bootstrap/providers/choice.py +1 -0
- package/elizaos/bootstrap/providers/contacts.py +1 -0
- package/elizaos/bootstrap/providers/current_time.py +8 -2
- package/elizaos/bootstrap/providers/entities.py +1 -0
- package/elizaos/bootstrap/providers/evaluators.py +1 -0
- package/elizaos/bootstrap/providers/facts.py +1 -0
- package/elizaos/bootstrap/providers/follow_ups.py +1 -0
- package/elizaos/bootstrap/providers/knowledge.py +27 -3
- package/elizaos/bootstrap/providers/providers_list.py +1 -0
- package/elizaos/bootstrap/providers/relationships.py +1 -0
- package/elizaos/bootstrap/providers/roles.py +1 -0
- package/elizaos/bootstrap/providers/settings.py +1 -0
- package/elizaos/bootstrap/providers/time.py +8 -4
- package/elizaos/bootstrap/providers/world.py +1 -0
- package/elizaos/bootstrap/services/embedding.py +156 -1
- package/elizaos/deterministic.py +193 -0
- package/elizaos/generated/__init__.py +1 -0
- package/elizaos/generated/action_docs.py +3181 -0
- package/elizaos/generated/spec_helpers.py +175 -0
- package/elizaos/media/mime.py +2 -2
- package/elizaos/media/search.py +23 -23
- package/elizaos/runtime.py +215 -57
- package/elizaos/services/message_service.py +175 -29
- package/elizaos/types/components.py +2 -2
- package/elizaos/types/generated/__init__.py +12 -0
- package/elizaos/types/generated/eliza/v1/agent_pb2.py +63 -0
- package/elizaos/types/generated/eliza/v1/agent_pb2.pyi +159 -0
- package/elizaos/types/generated/eliza/v1/components_pb2.py +65 -0
- package/elizaos/types/generated/eliza/v1/components_pb2.pyi +160 -0
- package/elizaos/types/generated/eliza/v1/database_pb2.py +78 -0
- package/elizaos/types/generated/eliza/v1/database_pb2.pyi +305 -0
- package/elizaos/types/generated/eliza/v1/environment_pb2.py +58 -0
- package/elizaos/types/generated/eliza/v1/environment_pb2.pyi +135 -0
- package/elizaos/types/generated/eliza/v1/events_pb2.py +82 -0
- package/elizaos/types/generated/eliza/v1/events_pb2.pyi +322 -0
- package/elizaos/types/generated/eliza/v1/ipc_pb2.py +113 -0
- package/elizaos/types/generated/eliza/v1/ipc_pb2.pyi +367 -0
- package/elizaos/types/generated/eliza/v1/knowledge_pb2.py +41 -0
- package/elizaos/types/generated/eliza/v1/knowledge_pb2.pyi +26 -0
- package/elizaos/types/generated/eliza/v1/memory_pb2.py +55 -0
- package/elizaos/types/generated/eliza/v1/memory_pb2.pyi +111 -0
- package/elizaos/types/generated/eliza/v1/message_service_pb2.py +48 -0
- package/elizaos/types/generated/eliza/v1/message_service_pb2.pyi +69 -0
- package/elizaos/types/generated/eliza/v1/messaging_pb2.py +51 -0
- package/elizaos/types/generated/eliza/v1/messaging_pb2.pyi +97 -0
- package/elizaos/types/generated/eliza/v1/model_pb2.py +84 -0
- package/elizaos/types/generated/eliza/v1/model_pb2.pyi +280 -0
- package/elizaos/types/generated/eliza/v1/payment_pb2.py +44 -0
- package/elizaos/types/generated/eliza/v1/payment_pb2.pyi +70 -0
- package/elizaos/types/generated/eliza/v1/plugin_pb2.py +68 -0
- package/elizaos/types/generated/eliza/v1/plugin_pb2.pyi +145 -0
- package/elizaos/types/generated/eliza/v1/primitives_pb2.py +48 -0
- package/elizaos/types/generated/eliza/v1/primitives_pb2.pyi +92 -0
- package/elizaos/types/generated/eliza/v1/prompts_pb2.py +52 -0
- package/elizaos/types/generated/eliza/v1/prompts_pb2.pyi +74 -0
- package/elizaos/types/generated/eliza/v1/service_interfaces_pb2.py +211 -0
- package/elizaos/types/generated/eliza/v1/service_interfaces_pb2.pyi +1296 -0
- package/elizaos/types/generated/eliza/v1/service_pb2.py +42 -0
- package/elizaos/types/generated/eliza/v1/service_pb2.pyi +69 -0
- package/elizaos/types/generated/eliza/v1/settings_pb2.py +58 -0
- package/elizaos/types/generated/eliza/v1/settings_pb2.pyi +85 -0
- package/elizaos/types/generated/eliza/v1/state_pb2.py +60 -0
- package/elizaos/types/generated/eliza/v1/state_pb2.pyi +114 -0
- package/elizaos/types/generated/eliza/v1/task_pb2.py +42 -0
- package/elizaos/types/generated/eliza/v1/task_pb2.pyi +58 -0
- package/elizaos/types/generated/eliza/v1/tee_pb2.py +52 -0
- package/elizaos/types/generated/eliza/v1/tee_pb2.pyi +90 -0
- package/elizaos/types/generated/eliza/v1/testing_pb2.py +39 -0
- package/elizaos/types/generated/eliza/v1/testing_pb2.pyi +23 -0
- package/elizaos/types/model.py +30 -0
- package/elizaos/types/runtime.py +6 -2
- package/elizaos/utils/validation.py +76 -0
- package/package.json +3 -2
- package/tests/test_action_parameters.py +2 -3
- package/tests/test_actions_provider_examples.py +58 -1
- package/tests/test_advanced_memory_behavior.py +0 -2
- package/tests/test_advanced_memory_flag.py +0 -2
- package/tests/test_advanced_planning_behavior.py +11 -5
- package/tests/test_async_embedding.py +124 -0
- package/tests/test_autonomy.py +24 -3
- package/tests/test_runtime.py +8 -17
- package/tests/test_schedule_follow_up_action.py +260 -0
- package/tests/test_send_message_action_targets.py +114 -0
- package/tests/test_settings_crypto.py +0 -2
- package/tests/test_validation.py +141 -0
- package/tests/verify_memory_architecture.py +192 -0
- package/uv.lock +1565 -0
- package/elizaos/basic_capabilities/providers/capabilities.py +0 -62
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
|
+
# NO CHECKED-IN PROTOBUF GENCODE
|
|
4
|
+
# source: eliza/v1/service.proto
|
|
5
|
+
# Protobuf Python Version: 6.33.5
|
|
6
|
+
"""Generated protocol buffer code."""
|
|
7
|
+
from google.protobuf import descriptor as _descriptor
|
|
8
|
+
from google.protobuf import descriptor_pool as _descriptor_pool
|
|
9
|
+
from google.protobuf import runtime_version as _runtime_version
|
|
10
|
+
from google.protobuf import symbol_database as _symbol_database
|
|
11
|
+
from google.protobuf.internal import builder as _builder
|
|
12
|
+
_runtime_version.ValidateProtobufRuntimeVersion(
|
|
13
|
+
_runtime_version.Domain.PUBLIC,
|
|
14
|
+
6,
|
|
15
|
+
33,
|
|
16
|
+
5,
|
|
17
|
+
'',
|
|
18
|
+
'eliza/v1/service.proto'
|
|
19
|
+
)
|
|
20
|
+
# @@protoc_insertion_point(imports)
|
|
21
|
+
|
|
22
|
+
_sym_db = _symbol_database.Default()
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
from google.protobuf import struct_pb2 as google_dot_protobuf_dot_struct__pb2
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x16\x65liza/v1/service.proto\x12\x08\x65liza.v1\x1a\x1cgoogle/protobuf/struct.proto\"\xfb\x01\n\x0fServiceManifest\x12)\n\x04type\x18\x01 \x01(\x0e\x32\x15.eliza.v1.ServiceTypeR\x04type\x12%\n\x0b\x64\x65scription\x18\x02 \x01(\tH\x00R\x0b\x64\x65scription\x88\x01\x01\x12:\n\x16\x63\x61pability_description\x18\x03 \x01(\tH\x01R\x15\x63\x61pabilityDescription\x88\x01\x01\x12/\n\x06\x63onfig\x18\x04 \x01(\x0b\x32\x17.google.protobuf.StructR\x06\x63onfigB\x0e\n\x0c_descriptionB\x19\n\x17_capability_description\"\x94\x01\n\x0cServiceError\x12\x12\n\x04\x63ode\x18\x01 \x01(\tR\x04\x63ode\x12\x18\n\x07message\x18\x02 \x01(\tR\x07message\x12\x31\n\x07\x64\x65tails\x18\x03 \x01(\x0b\x32\x17.google.protobuf.StructR\x07\x64\x65tails\x12\x19\n\x05\x63\x61use\x18\x04 \x01(\tH\x00R\x05\x63\x61use\x88\x01\x01\x42\x08\n\x06_cause*\xd1\x03\n\x0bServiceType\x12\x1c\n\x18SERVICE_TYPE_UNSPECIFIED\x10\x00\x12\x1e\n\x1aSERVICE_TYPE_TRANSCRIPTION\x10\x01\x12\x16\n\x12SERVICE_TYPE_VIDEO\x10\x02\x12\x18\n\x14SERVICE_TYPE_BROWSER\x10\x03\x12\x14\n\x10SERVICE_TYPE_PDF\x10\x04\x12\x1d\n\x19SERVICE_TYPE_REMOTE_FILES\x10\x05\x12\x1b\n\x17SERVICE_TYPE_WEB_SEARCH\x10\x06\x12\x16\n\x12SERVICE_TYPE_EMAIL\x10\x07\x12\x14\n\x10SERVICE_TYPE_TEE\x10\x08\x12\x15\n\x11SERVICE_TYPE_TASK\x10\t\x12\x17\n\x13SERVICE_TYPE_WALLET\x10\n\x12\x18\n\x14SERVICE_TYPE_LP_POOL\x10\x0b\x12\x1b\n\x17SERVICE_TYPE_TOKEN_DATA\x10\x0c\x12 \n\x1cSERVICE_TYPE_MESSAGE_SERVICE\x10\r\x12\x18\n\x14SERVICE_TYPE_MESSAGE\x10\x0e\x12\x15\n\x11SERVICE_TYPE_POST\x10\x0f\x12\x18\n\x14SERVICE_TYPE_UNKNOWN\x10\x10\x42\x8f\x01\n\x0c\x63om.eliza.v1B\x0cServiceProtoP\x01Z0github.com/elizaos/eliza/gen/go/eliza/v1;elizav1\xa2\x02\x03\x45XX\xaa\x02\x08\x45liza.V1\xca\x02\x08\x45liza\\V1\xe2\x02\x14\x45liza\\V1\\GPBMetadata\xea\x02\tEliza::V1b\x06proto3')
|
|
29
|
+
|
|
30
|
+
_globals = globals()
|
|
31
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
32
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'eliza.v1.service_pb2', _globals)
|
|
33
|
+
if not _descriptor._USE_C_DESCRIPTORS:
|
|
34
|
+
_globals['DESCRIPTOR']._loaded_options = None
|
|
35
|
+
_globals['DESCRIPTOR']._serialized_options = b'\n\014com.eliza.v1B\014ServiceProtoP\001Z0github.com/elizaos/eliza/gen/go/eliza/v1;elizav1\242\002\003EXX\252\002\010Eliza.V1\312\002\010Eliza\\V1\342\002\024Eliza\\V1\\GPBMetadata\352\002\tEliza::V1'
|
|
36
|
+
_globals['_SERVICETYPE']._serialized_start=472
|
|
37
|
+
_globals['_SERVICETYPE']._serialized_end=937
|
|
38
|
+
_globals['_SERVICEMANIFEST']._serialized_start=67
|
|
39
|
+
_globals['_SERVICEMANIFEST']._serialized_end=318
|
|
40
|
+
_globals['_SERVICEERROR']._serialized_start=321
|
|
41
|
+
_globals['_SERVICEERROR']._serialized_end=469
|
|
42
|
+
# @@protoc_insertion_point(module_scope)
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
from google.protobuf import struct_pb2 as _struct_pb2
|
|
2
|
+
from google.protobuf.internal import enum_type_wrapper as _enum_type_wrapper
|
|
3
|
+
from google.protobuf import descriptor as _descriptor
|
|
4
|
+
from google.protobuf import message as _message
|
|
5
|
+
from collections.abc import Mapping as _Mapping
|
|
6
|
+
from typing import ClassVar as _ClassVar, Optional as _Optional, Union as _Union
|
|
7
|
+
|
|
8
|
+
DESCRIPTOR: _descriptor.FileDescriptor
|
|
9
|
+
|
|
10
|
+
class ServiceType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
11
|
+
__slots__ = ()
|
|
12
|
+
SERVICE_TYPE_UNSPECIFIED: _ClassVar[ServiceType]
|
|
13
|
+
SERVICE_TYPE_TRANSCRIPTION: _ClassVar[ServiceType]
|
|
14
|
+
SERVICE_TYPE_VIDEO: _ClassVar[ServiceType]
|
|
15
|
+
SERVICE_TYPE_BROWSER: _ClassVar[ServiceType]
|
|
16
|
+
SERVICE_TYPE_PDF: _ClassVar[ServiceType]
|
|
17
|
+
SERVICE_TYPE_REMOTE_FILES: _ClassVar[ServiceType]
|
|
18
|
+
SERVICE_TYPE_WEB_SEARCH: _ClassVar[ServiceType]
|
|
19
|
+
SERVICE_TYPE_EMAIL: _ClassVar[ServiceType]
|
|
20
|
+
SERVICE_TYPE_TEE: _ClassVar[ServiceType]
|
|
21
|
+
SERVICE_TYPE_TASK: _ClassVar[ServiceType]
|
|
22
|
+
SERVICE_TYPE_WALLET: _ClassVar[ServiceType]
|
|
23
|
+
SERVICE_TYPE_LP_POOL: _ClassVar[ServiceType]
|
|
24
|
+
SERVICE_TYPE_TOKEN_DATA: _ClassVar[ServiceType]
|
|
25
|
+
SERVICE_TYPE_MESSAGE_SERVICE: _ClassVar[ServiceType]
|
|
26
|
+
SERVICE_TYPE_MESSAGE: _ClassVar[ServiceType]
|
|
27
|
+
SERVICE_TYPE_POST: _ClassVar[ServiceType]
|
|
28
|
+
SERVICE_TYPE_UNKNOWN: _ClassVar[ServiceType]
|
|
29
|
+
SERVICE_TYPE_UNSPECIFIED: ServiceType
|
|
30
|
+
SERVICE_TYPE_TRANSCRIPTION: ServiceType
|
|
31
|
+
SERVICE_TYPE_VIDEO: ServiceType
|
|
32
|
+
SERVICE_TYPE_BROWSER: ServiceType
|
|
33
|
+
SERVICE_TYPE_PDF: ServiceType
|
|
34
|
+
SERVICE_TYPE_REMOTE_FILES: ServiceType
|
|
35
|
+
SERVICE_TYPE_WEB_SEARCH: ServiceType
|
|
36
|
+
SERVICE_TYPE_EMAIL: ServiceType
|
|
37
|
+
SERVICE_TYPE_TEE: ServiceType
|
|
38
|
+
SERVICE_TYPE_TASK: ServiceType
|
|
39
|
+
SERVICE_TYPE_WALLET: ServiceType
|
|
40
|
+
SERVICE_TYPE_LP_POOL: ServiceType
|
|
41
|
+
SERVICE_TYPE_TOKEN_DATA: ServiceType
|
|
42
|
+
SERVICE_TYPE_MESSAGE_SERVICE: ServiceType
|
|
43
|
+
SERVICE_TYPE_MESSAGE: ServiceType
|
|
44
|
+
SERVICE_TYPE_POST: ServiceType
|
|
45
|
+
SERVICE_TYPE_UNKNOWN: ServiceType
|
|
46
|
+
|
|
47
|
+
class ServiceManifest(_message.Message):
|
|
48
|
+
__slots__ = ("type", "description", "capability_description", "config")
|
|
49
|
+
TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
50
|
+
DESCRIPTION_FIELD_NUMBER: _ClassVar[int]
|
|
51
|
+
CAPABILITY_DESCRIPTION_FIELD_NUMBER: _ClassVar[int]
|
|
52
|
+
CONFIG_FIELD_NUMBER: _ClassVar[int]
|
|
53
|
+
type: ServiceType
|
|
54
|
+
description: str
|
|
55
|
+
capability_description: str
|
|
56
|
+
config: _struct_pb2.Struct
|
|
57
|
+
def __init__(self, type: _Optional[_Union[ServiceType, str]] = ..., description: _Optional[str] = ..., capability_description: _Optional[str] = ..., config: _Optional[_Union[_struct_pb2.Struct, _Mapping]] = ...) -> None: ...
|
|
58
|
+
|
|
59
|
+
class ServiceError(_message.Message):
|
|
60
|
+
__slots__ = ("code", "message", "details", "cause")
|
|
61
|
+
CODE_FIELD_NUMBER: _ClassVar[int]
|
|
62
|
+
MESSAGE_FIELD_NUMBER: _ClassVar[int]
|
|
63
|
+
DETAILS_FIELD_NUMBER: _ClassVar[int]
|
|
64
|
+
CAUSE_FIELD_NUMBER: _ClassVar[int]
|
|
65
|
+
code: str
|
|
66
|
+
message: str
|
|
67
|
+
details: _struct_pb2.Struct
|
|
68
|
+
cause: str
|
|
69
|
+
def __init__(self, code: _Optional[str] = ..., message: _Optional[str] = ..., details: _Optional[_Union[_struct_pb2.Struct, _Mapping]] = ..., cause: _Optional[str] = ...) -> None: ...
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
|
+
# NO CHECKED-IN PROTOBUF GENCODE
|
|
4
|
+
# source: eliza/v1/settings.proto
|
|
5
|
+
# Protobuf Python Version: 6.33.5
|
|
6
|
+
"""Generated protocol buffer code."""
|
|
7
|
+
from google.protobuf import descriptor as _descriptor
|
|
8
|
+
from google.protobuf import descriptor_pool as _descriptor_pool
|
|
9
|
+
from google.protobuf import runtime_version as _runtime_version
|
|
10
|
+
from google.protobuf import symbol_database as _symbol_database
|
|
11
|
+
from google.protobuf.internal import builder as _builder
|
|
12
|
+
_runtime_version.ValidateProtobufRuntimeVersion(
|
|
13
|
+
_runtime_version.Domain.PUBLIC,
|
|
14
|
+
6,
|
|
15
|
+
33,
|
|
16
|
+
5,
|
|
17
|
+
'',
|
|
18
|
+
'eliza/v1/settings.proto'
|
|
19
|
+
)
|
|
20
|
+
# @@protoc_insertion_point(imports)
|
|
21
|
+
|
|
22
|
+
_sym_db = _symbol_database.Default()
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
from google.protobuf import struct_pb2 as google_dot_protobuf_dot_struct__pb2
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x17\x65liza/v1/settings.proto\x12\x08\x65liza.v1\x1a\x1cgoogle/protobuf/struct.proto\"\x8b\x01\n\x0fRuntimeSettings\x12=\n\x06values\x18\x01 \x03(\x0b\x32%.eliza.v1.RuntimeSettings.ValuesEntryR\x06values\x1a\x39\n\x0bValuesEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n\x05value\x18\x02 \x01(\tR\x05value:\x02\x38\x01\"\x81\x02\n\x11SettingDefinition\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12 \n\x0b\x64\x65scription\x18\x02 \x01(\tR\x0b\x64\x65scription\x12+\n\x11usage_description\x18\x03 \x01(\tR\x10usageDescription\x12\x1a\n\x08required\x18\x04 \x01(\x08R\x08required\x12\x1b\n\x06public\x18\x05 \x01(\x08H\x00R\x06public\x88\x01\x01\x12\x1b\n\x06secret\x18\x06 \x01(\x08H\x01R\x06secret\x88\x01\x01\x12\x1d\n\ndepends_on\x18\x07 \x03(\tR\tdependsOnB\t\n\x07_publicB\t\n\x07_secret\"\xa5\x02\n\x07Setting\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12 \n\x0b\x64\x65scription\x18\x02 \x01(\tR\x0b\x64\x65scription\x12+\n\x11usage_description\x18\x03 \x01(\tR\x10usageDescription\x12\x1a\n\x08required\x18\x04 \x01(\x08R\x08required\x12\x1b\n\x06public\x18\x05 \x01(\x08H\x00R\x06public\x88\x01\x01\x12\x1b\n\x06secret\x18\x06 \x01(\x08H\x01R\x06secret\x88\x01\x01\x12\x1d\n\ndepends_on\x18\x07 \x03(\tR\tdependsOn\x12,\n\x05value\x18\x08 \x01(\x0b\x32\x16.google.protobuf.ValueR\x05valueB\t\n\x07_publicB\t\n\x07_secret\"\xa2\x01\n\rWorldSettings\x12\x41\n\x08settings\x18\x01 \x03(\x0b\x32%.eliza.v1.WorldSettings.SettingsEntryR\x08settings\x1aN\n\rSettingsEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\'\n\x05value\x18\x02 \x01(\x0b\x32\x11.eliza.v1.SettingR\x05value:\x02\x38\x01\"\xb2\x01\n\x10OnboardingConfig\x12\x44\n\x08settings\x18\x01 \x03(\x0b\x32(.eliza.v1.OnboardingConfig.SettingsEntryR\x08settings\x1aX\n\rSettingsEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x31\n\x05value\x18\x02 \x01(\x0b\x32\x1b.eliza.v1.SettingDefinitionR\x05value:\x02\x38\x01\x42\x90\x01\n\x0c\x63om.eliza.v1B\rSettingsProtoP\x01Z0github.com/elizaos/eliza/gen/go/eliza/v1;elizav1\xa2\x02\x03\x45XX\xaa\x02\x08\x45liza.V1\xca\x02\x08\x45liza\\V1\xe2\x02\x14\x45liza\\V1\\GPBMetadata\xea\x02\tEliza::V1b\x06proto3')
|
|
29
|
+
|
|
30
|
+
_globals = globals()
|
|
31
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
32
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'eliza.v1.settings_pb2', _globals)
|
|
33
|
+
if not _descriptor._USE_C_DESCRIPTORS:
|
|
34
|
+
_globals['DESCRIPTOR']._loaded_options = None
|
|
35
|
+
_globals['DESCRIPTOR']._serialized_options = b'\n\014com.eliza.v1B\rSettingsProtoP\001Z0github.com/elizaos/eliza/gen/go/eliza/v1;elizav1\242\002\003EXX\252\002\010Eliza.V1\312\002\010Eliza\\V1\342\002\024Eliza\\V1\\GPBMetadata\352\002\tEliza::V1'
|
|
36
|
+
_globals['_RUNTIMESETTINGS_VALUESENTRY']._loaded_options = None
|
|
37
|
+
_globals['_RUNTIMESETTINGS_VALUESENTRY']._serialized_options = b'8\001'
|
|
38
|
+
_globals['_WORLDSETTINGS_SETTINGSENTRY']._loaded_options = None
|
|
39
|
+
_globals['_WORLDSETTINGS_SETTINGSENTRY']._serialized_options = b'8\001'
|
|
40
|
+
_globals['_ONBOARDINGCONFIG_SETTINGSENTRY']._loaded_options = None
|
|
41
|
+
_globals['_ONBOARDINGCONFIG_SETTINGSENTRY']._serialized_options = b'8\001'
|
|
42
|
+
_globals['_RUNTIMESETTINGS']._serialized_start=68
|
|
43
|
+
_globals['_RUNTIMESETTINGS']._serialized_end=207
|
|
44
|
+
_globals['_RUNTIMESETTINGS_VALUESENTRY']._serialized_start=150
|
|
45
|
+
_globals['_RUNTIMESETTINGS_VALUESENTRY']._serialized_end=207
|
|
46
|
+
_globals['_SETTINGDEFINITION']._serialized_start=210
|
|
47
|
+
_globals['_SETTINGDEFINITION']._serialized_end=467
|
|
48
|
+
_globals['_SETTING']._serialized_start=470
|
|
49
|
+
_globals['_SETTING']._serialized_end=763
|
|
50
|
+
_globals['_WORLDSETTINGS']._serialized_start=766
|
|
51
|
+
_globals['_WORLDSETTINGS']._serialized_end=928
|
|
52
|
+
_globals['_WORLDSETTINGS_SETTINGSENTRY']._serialized_start=850
|
|
53
|
+
_globals['_WORLDSETTINGS_SETTINGSENTRY']._serialized_end=928
|
|
54
|
+
_globals['_ONBOARDINGCONFIG']._serialized_start=931
|
|
55
|
+
_globals['_ONBOARDINGCONFIG']._serialized_end=1109
|
|
56
|
+
_globals['_ONBOARDINGCONFIG_SETTINGSENTRY']._serialized_start=1021
|
|
57
|
+
_globals['_ONBOARDINGCONFIG_SETTINGSENTRY']._serialized_end=1109
|
|
58
|
+
# @@protoc_insertion_point(module_scope)
|
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
from google.protobuf import struct_pb2 as _struct_pb2
|
|
2
|
+
from google.protobuf.internal import containers as _containers
|
|
3
|
+
from google.protobuf import descriptor as _descriptor
|
|
4
|
+
from google.protobuf import message as _message
|
|
5
|
+
from collections.abc import Iterable as _Iterable, Mapping as _Mapping
|
|
6
|
+
from typing import ClassVar as _ClassVar, Optional as _Optional, Union as _Union
|
|
7
|
+
|
|
8
|
+
DESCRIPTOR: _descriptor.FileDescriptor
|
|
9
|
+
|
|
10
|
+
class RuntimeSettings(_message.Message):
|
|
11
|
+
__slots__ = ("values",)
|
|
12
|
+
class ValuesEntry(_message.Message):
|
|
13
|
+
__slots__ = ("key", "value")
|
|
14
|
+
KEY_FIELD_NUMBER: _ClassVar[int]
|
|
15
|
+
VALUE_FIELD_NUMBER: _ClassVar[int]
|
|
16
|
+
key: str
|
|
17
|
+
value: str
|
|
18
|
+
def __init__(self, key: _Optional[str] = ..., value: _Optional[str] = ...) -> None: ...
|
|
19
|
+
VALUES_FIELD_NUMBER: _ClassVar[int]
|
|
20
|
+
values: _containers.ScalarMap[str, str]
|
|
21
|
+
def __init__(self, values: _Optional[_Mapping[str, str]] = ...) -> None: ...
|
|
22
|
+
|
|
23
|
+
class SettingDefinition(_message.Message):
|
|
24
|
+
__slots__ = ("name", "description", "usage_description", "required", "public", "secret", "depends_on")
|
|
25
|
+
NAME_FIELD_NUMBER: _ClassVar[int]
|
|
26
|
+
DESCRIPTION_FIELD_NUMBER: _ClassVar[int]
|
|
27
|
+
USAGE_DESCRIPTION_FIELD_NUMBER: _ClassVar[int]
|
|
28
|
+
REQUIRED_FIELD_NUMBER: _ClassVar[int]
|
|
29
|
+
PUBLIC_FIELD_NUMBER: _ClassVar[int]
|
|
30
|
+
SECRET_FIELD_NUMBER: _ClassVar[int]
|
|
31
|
+
DEPENDS_ON_FIELD_NUMBER: _ClassVar[int]
|
|
32
|
+
name: str
|
|
33
|
+
description: str
|
|
34
|
+
usage_description: str
|
|
35
|
+
required: bool
|
|
36
|
+
public: bool
|
|
37
|
+
secret: bool
|
|
38
|
+
depends_on: _containers.RepeatedScalarFieldContainer[str]
|
|
39
|
+
def __init__(self, name: _Optional[str] = ..., description: _Optional[str] = ..., usage_description: _Optional[str] = ..., required: _Optional[bool] = ..., public: _Optional[bool] = ..., secret: _Optional[bool] = ..., depends_on: _Optional[_Iterable[str]] = ...) -> None: ...
|
|
40
|
+
|
|
41
|
+
class Setting(_message.Message):
|
|
42
|
+
__slots__ = ("name", "description", "usage_description", "required", "public", "secret", "depends_on", "value")
|
|
43
|
+
NAME_FIELD_NUMBER: _ClassVar[int]
|
|
44
|
+
DESCRIPTION_FIELD_NUMBER: _ClassVar[int]
|
|
45
|
+
USAGE_DESCRIPTION_FIELD_NUMBER: _ClassVar[int]
|
|
46
|
+
REQUIRED_FIELD_NUMBER: _ClassVar[int]
|
|
47
|
+
PUBLIC_FIELD_NUMBER: _ClassVar[int]
|
|
48
|
+
SECRET_FIELD_NUMBER: _ClassVar[int]
|
|
49
|
+
DEPENDS_ON_FIELD_NUMBER: _ClassVar[int]
|
|
50
|
+
VALUE_FIELD_NUMBER: _ClassVar[int]
|
|
51
|
+
name: str
|
|
52
|
+
description: str
|
|
53
|
+
usage_description: str
|
|
54
|
+
required: bool
|
|
55
|
+
public: bool
|
|
56
|
+
secret: bool
|
|
57
|
+
depends_on: _containers.RepeatedScalarFieldContainer[str]
|
|
58
|
+
value: _struct_pb2.Value
|
|
59
|
+
def __init__(self, name: _Optional[str] = ..., description: _Optional[str] = ..., usage_description: _Optional[str] = ..., required: _Optional[bool] = ..., public: _Optional[bool] = ..., secret: _Optional[bool] = ..., depends_on: _Optional[_Iterable[str]] = ..., value: _Optional[_Union[_struct_pb2.Value, _Mapping]] = ...) -> None: ...
|
|
60
|
+
|
|
61
|
+
class WorldSettings(_message.Message):
|
|
62
|
+
__slots__ = ("settings",)
|
|
63
|
+
class SettingsEntry(_message.Message):
|
|
64
|
+
__slots__ = ("key", "value")
|
|
65
|
+
KEY_FIELD_NUMBER: _ClassVar[int]
|
|
66
|
+
VALUE_FIELD_NUMBER: _ClassVar[int]
|
|
67
|
+
key: str
|
|
68
|
+
value: Setting
|
|
69
|
+
def __init__(self, key: _Optional[str] = ..., value: _Optional[_Union[Setting, _Mapping]] = ...) -> None: ...
|
|
70
|
+
SETTINGS_FIELD_NUMBER: _ClassVar[int]
|
|
71
|
+
settings: _containers.MessageMap[str, Setting]
|
|
72
|
+
def __init__(self, settings: _Optional[_Mapping[str, Setting]] = ...) -> None: ...
|
|
73
|
+
|
|
74
|
+
class OnboardingConfig(_message.Message):
|
|
75
|
+
__slots__ = ("settings",)
|
|
76
|
+
class SettingsEntry(_message.Message):
|
|
77
|
+
__slots__ = ("key", "value")
|
|
78
|
+
KEY_FIELD_NUMBER: _ClassVar[int]
|
|
79
|
+
VALUE_FIELD_NUMBER: _ClassVar[int]
|
|
80
|
+
key: str
|
|
81
|
+
value: SettingDefinition
|
|
82
|
+
def __init__(self, key: _Optional[str] = ..., value: _Optional[_Union[SettingDefinition, _Mapping]] = ...) -> None: ...
|
|
83
|
+
SETTINGS_FIELD_NUMBER: _ClassVar[int]
|
|
84
|
+
settings: _containers.MessageMap[str, SettingDefinition]
|
|
85
|
+
def __init__(self, settings: _Optional[_Mapping[str, SettingDefinition]] = ...) -> None: ...
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
|
+
# NO CHECKED-IN PROTOBUF GENCODE
|
|
4
|
+
# source: eliza/v1/state.proto
|
|
5
|
+
# Protobuf Python Version: 6.33.5
|
|
6
|
+
"""Generated protocol buffer code."""
|
|
7
|
+
from google.protobuf import descriptor as _descriptor
|
|
8
|
+
from google.protobuf import descriptor_pool as _descriptor_pool
|
|
9
|
+
from google.protobuf import runtime_version as _runtime_version
|
|
10
|
+
from google.protobuf import symbol_database as _symbol_database
|
|
11
|
+
from google.protobuf.internal import builder as _builder
|
|
12
|
+
_runtime_version.ValidateProtobufRuntimeVersion(
|
|
13
|
+
_runtime_version.Domain.PUBLIC,
|
|
14
|
+
6,
|
|
15
|
+
33,
|
|
16
|
+
5,
|
|
17
|
+
'',
|
|
18
|
+
'eliza/v1/state.proto'
|
|
19
|
+
)
|
|
20
|
+
# @@protoc_insertion_point(imports)
|
|
21
|
+
|
|
22
|
+
_sym_db = _symbol_database.Default()
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
from eliza.v1 import components_pb2 as eliza_dot_v1_dot_components__pb2
|
|
26
|
+
from eliza.v1 import environment_pb2 as eliza_dot_v1_dot_environment__pb2
|
|
27
|
+
from google.protobuf import struct_pb2 as google_dot_protobuf_dot_struct__pb2
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x14\x65liza/v1/state.proto\x12\x08\x65liza.v1\x1a\x19\x65liza/v1/components.proto\x1a\x1a\x65liza/v1/environment.proto\x1a\x1cgoogle/protobuf/struct.proto\"\xa5\x01\n\x0e\x41\x63tionPlanStep\x12\x16\n\x06\x61\x63tion\x18\x01 \x01(\tR\x06\x61\x63tion\x12\x16\n\x06status\x18\x02 \x01(\tR\x06status\x12\x19\n\x05\x65rror\x18\x03 \x01(\tH\x00R\x05\x65rror\x88\x01\x01\x12\x33\n\x06result\x18\x04 \x01(\x0b\x32\x16.eliza.v1.ActionResultH\x01R\x06result\x88\x01\x01\x42\x08\n\x06_errorB\t\n\x07_result\"\xcf\x01\n\nActionPlan\x12\x18\n\x07thought\x18\x01 \x01(\tR\x07thought\x12\x1f\n\x0btotal_steps\x18\x02 \x01(\x05R\ntotalSteps\x12!\n\x0c\x63urrent_step\x18\x03 \x01(\x05R\x0b\x63urrentStep\x12.\n\x05steps\x18\x04 \x03(\x0b\x32\x18.eliza.v1.ActionPlanStepR\x05steps\x12\x33\n\x08metadata\x18\x05 \x01(\x0b\x32\x17.google.protobuf.StructR\x08metadata\"\x94\x01\n\x12ProviderCacheEntry\x12\x17\n\x04text\x18\x01 \x01(\tH\x00R\x04text\x88\x01\x01\x12/\n\x06values\x18\x02 \x01(\x0b\x32\x17.google.protobuf.StructR\x06values\x12+\n\x04\x64\x61ta\x18\x03 \x01(\x0b\x32\x17.google.protobuf.StructR\x04\x64\x61taB\x07\n\x05_text\"\x82\x01\n\x11WorkingMemoryItem\x12\x1f\n\x0b\x61\x63tion_name\x18\x01 \x01(\tR\nactionName\x12.\n\x06result\x18\x02 \x01(\x0b\x32\x16.eliza.v1.ActionResultR\x06result\x12\x1c\n\ttimestamp\x18\x03 \x01(\x03R\ttimestamp\"\xb3\x05\n\tStateData\x12\'\n\x04room\x18\x01 \x01(\x0b\x32\x0e.eliza.v1.RoomH\x00R\x04room\x88\x01\x01\x12*\n\x05world\x18\x02 \x01(\x0b\x32\x0f.eliza.v1.WorldH\x01R\x05world\x88\x01\x01\x12-\n\x06\x65ntity\x18\x03 \x01(\x0b\x32\x10.eliza.v1.EntityH\x02R\x06\x65ntity\x88\x01\x01\x12@\n\tproviders\x18\x04 \x03(\x0b\x32\".eliza.v1.StateData.ProvidersEntryR\tproviders\x12:\n\x0b\x61\x63tion_plan\x18\x05 \x01(\x0b\x32\x14.eliza.v1.ActionPlanH\x03R\nactionPlan\x88\x01\x01\x12=\n\x0e\x61\x63tion_results\x18\x06 \x03(\x0b\x32\x16.eliza.v1.ActionResultR\ractionResults\x12M\n\x0eworking_memory\x18\x07 \x03(\x0b\x32&.eliza.v1.StateData.WorkingMemoryEntryR\rworkingMemory\x12-\n\x05\x65xtra\x18\x08 \x01(\x0b\x32\x17.google.protobuf.StructR\x05\x65xtra\x1aZ\n\x0eProvidersEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x32\n\x05value\x18\x02 \x01(\x0b\x32\x1c.eliza.v1.ProviderCacheEntryR\x05value:\x02\x38\x01\x1a]\n\x12WorkingMemoryEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x31\n\x05value\x18\x02 \x01(\x0b\x32\x1b.eliza.v1.WorkingMemoryItemR\x05value:\x02\x38\x01\x42\x07\n\x05_roomB\x08\n\x06_worldB\t\n\x07_entityB\x0e\n\x0c_action_plan\"\xd9\x01\n\x0bStateValues\x12\"\n\nagent_name\x18\x01 \x01(\tH\x00R\tagentName\x88\x01\x01\x12&\n\x0c\x61\x63tion_names\x18\x02 \x01(\tH\x01R\x0b\x61\x63tionNames\x88\x01\x01\x12!\n\tproviders\x18\x03 \x01(\tH\x02R\tproviders\x88\x01\x01\x12-\n\x05\x65xtra\x18\x04 \x01(\x0b\x32\x17.google.protobuf.StructR\x05\x65xtraB\r\n\x0b_agent_nameB\x0f\n\r_action_namesB\x0c\n\n_providers\"\xa2\x01\n\x05State\x12-\n\x06values\x18\x01 \x01(\x0b\x32\x15.eliza.v1.StateValuesR\x06values\x12\'\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x13.eliza.v1.StateDataR\x04\x64\x61ta\x12\x12\n\x04text\x18\x03 \x01(\tR\x04text\x12-\n\x05\x65xtra\x18\x04 \x01(\x0b\x32\x17.google.protobuf.StructR\x05\x65xtraB\x8d\x01\n\x0c\x63om.eliza.v1B\nStateProtoP\x01Z0github.com/elizaos/eliza/gen/go/eliza/v1;elizav1\xa2\x02\x03\x45XX\xaa\x02\x08\x45liza.V1\xca\x02\x08\x45liza\\V1\xe2\x02\x14\x45liza\\V1\\GPBMetadata\xea\x02\tEliza::V1b\x06proto3')
|
|
31
|
+
|
|
32
|
+
_globals = globals()
|
|
33
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
34
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'eliza.v1.state_pb2', _globals)
|
|
35
|
+
if not _descriptor._USE_C_DESCRIPTORS:
|
|
36
|
+
_globals['DESCRIPTOR']._loaded_options = None
|
|
37
|
+
_globals['DESCRIPTOR']._serialized_options = b'\n\014com.eliza.v1B\nStateProtoP\001Z0github.com/elizaos/eliza/gen/go/eliza/v1;elizav1\242\002\003EXX\252\002\010Eliza.V1\312\002\010Eliza\\V1\342\002\024Eliza\\V1\\GPBMetadata\352\002\tEliza::V1'
|
|
38
|
+
_globals['_STATEDATA_PROVIDERSENTRY']._loaded_options = None
|
|
39
|
+
_globals['_STATEDATA_PROVIDERSENTRY']._serialized_options = b'8\001'
|
|
40
|
+
_globals['_STATEDATA_WORKINGMEMORYENTRY']._loaded_options = None
|
|
41
|
+
_globals['_STATEDATA_WORKINGMEMORYENTRY']._serialized_options = b'8\001'
|
|
42
|
+
_globals['_ACTIONPLANSTEP']._serialized_start=120
|
|
43
|
+
_globals['_ACTIONPLANSTEP']._serialized_end=285
|
|
44
|
+
_globals['_ACTIONPLAN']._serialized_start=288
|
|
45
|
+
_globals['_ACTIONPLAN']._serialized_end=495
|
|
46
|
+
_globals['_PROVIDERCACHEENTRY']._serialized_start=498
|
|
47
|
+
_globals['_PROVIDERCACHEENTRY']._serialized_end=646
|
|
48
|
+
_globals['_WORKINGMEMORYITEM']._serialized_start=649
|
|
49
|
+
_globals['_WORKINGMEMORYITEM']._serialized_end=779
|
|
50
|
+
_globals['_STATEDATA']._serialized_start=782
|
|
51
|
+
_globals['_STATEDATA']._serialized_end=1473
|
|
52
|
+
_globals['_STATEDATA_PROVIDERSENTRY']._serialized_start=1242
|
|
53
|
+
_globals['_STATEDATA_PROVIDERSENTRY']._serialized_end=1332
|
|
54
|
+
_globals['_STATEDATA_WORKINGMEMORYENTRY']._serialized_start=1334
|
|
55
|
+
_globals['_STATEDATA_WORKINGMEMORYENTRY']._serialized_end=1427
|
|
56
|
+
_globals['_STATEVALUES']._serialized_start=1476
|
|
57
|
+
_globals['_STATEVALUES']._serialized_end=1693
|
|
58
|
+
_globals['_STATE']._serialized_start=1696
|
|
59
|
+
_globals['_STATE']._serialized_end=1858
|
|
60
|
+
# @@protoc_insertion_point(module_scope)
|
|
@@ -0,0 +1,114 @@
|
|
|
1
|
+
from eliza.v1 import components_pb2 as _components_pb2
|
|
2
|
+
from eliza.v1 import environment_pb2 as _environment_pb2
|
|
3
|
+
from google.protobuf import struct_pb2 as _struct_pb2
|
|
4
|
+
from google.protobuf.internal import containers as _containers
|
|
5
|
+
from google.protobuf import descriptor as _descriptor
|
|
6
|
+
from google.protobuf import message as _message
|
|
7
|
+
from collections.abc import Iterable as _Iterable, Mapping as _Mapping
|
|
8
|
+
from typing import ClassVar as _ClassVar, Optional as _Optional, Union as _Union
|
|
9
|
+
|
|
10
|
+
DESCRIPTOR: _descriptor.FileDescriptor
|
|
11
|
+
|
|
12
|
+
class ActionPlanStep(_message.Message):
|
|
13
|
+
__slots__ = ("action", "status", "error", "result")
|
|
14
|
+
ACTION_FIELD_NUMBER: _ClassVar[int]
|
|
15
|
+
STATUS_FIELD_NUMBER: _ClassVar[int]
|
|
16
|
+
ERROR_FIELD_NUMBER: _ClassVar[int]
|
|
17
|
+
RESULT_FIELD_NUMBER: _ClassVar[int]
|
|
18
|
+
action: str
|
|
19
|
+
status: str
|
|
20
|
+
error: str
|
|
21
|
+
result: _components_pb2.ActionResult
|
|
22
|
+
def __init__(self, action: _Optional[str] = ..., status: _Optional[str] = ..., error: _Optional[str] = ..., result: _Optional[_Union[_components_pb2.ActionResult, _Mapping]] = ...) -> None: ...
|
|
23
|
+
|
|
24
|
+
class ActionPlan(_message.Message):
|
|
25
|
+
__slots__ = ("thought", "total_steps", "current_step", "steps", "metadata")
|
|
26
|
+
THOUGHT_FIELD_NUMBER: _ClassVar[int]
|
|
27
|
+
TOTAL_STEPS_FIELD_NUMBER: _ClassVar[int]
|
|
28
|
+
CURRENT_STEP_FIELD_NUMBER: _ClassVar[int]
|
|
29
|
+
STEPS_FIELD_NUMBER: _ClassVar[int]
|
|
30
|
+
METADATA_FIELD_NUMBER: _ClassVar[int]
|
|
31
|
+
thought: str
|
|
32
|
+
total_steps: int
|
|
33
|
+
current_step: int
|
|
34
|
+
steps: _containers.RepeatedCompositeFieldContainer[ActionPlanStep]
|
|
35
|
+
metadata: _struct_pb2.Struct
|
|
36
|
+
def __init__(self, thought: _Optional[str] = ..., total_steps: _Optional[int] = ..., current_step: _Optional[int] = ..., steps: _Optional[_Iterable[_Union[ActionPlanStep, _Mapping]]] = ..., metadata: _Optional[_Union[_struct_pb2.Struct, _Mapping]] = ...) -> None: ...
|
|
37
|
+
|
|
38
|
+
class ProviderCacheEntry(_message.Message):
|
|
39
|
+
__slots__ = ("text", "values", "data")
|
|
40
|
+
TEXT_FIELD_NUMBER: _ClassVar[int]
|
|
41
|
+
VALUES_FIELD_NUMBER: _ClassVar[int]
|
|
42
|
+
DATA_FIELD_NUMBER: _ClassVar[int]
|
|
43
|
+
text: str
|
|
44
|
+
values: _struct_pb2.Struct
|
|
45
|
+
data: _struct_pb2.Struct
|
|
46
|
+
def __init__(self, text: _Optional[str] = ..., values: _Optional[_Union[_struct_pb2.Struct, _Mapping]] = ..., data: _Optional[_Union[_struct_pb2.Struct, _Mapping]] = ...) -> None: ...
|
|
47
|
+
|
|
48
|
+
class WorkingMemoryItem(_message.Message):
|
|
49
|
+
__slots__ = ("action_name", "result", "timestamp")
|
|
50
|
+
ACTION_NAME_FIELD_NUMBER: _ClassVar[int]
|
|
51
|
+
RESULT_FIELD_NUMBER: _ClassVar[int]
|
|
52
|
+
TIMESTAMP_FIELD_NUMBER: _ClassVar[int]
|
|
53
|
+
action_name: str
|
|
54
|
+
result: _components_pb2.ActionResult
|
|
55
|
+
timestamp: int
|
|
56
|
+
def __init__(self, action_name: _Optional[str] = ..., result: _Optional[_Union[_components_pb2.ActionResult, _Mapping]] = ..., timestamp: _Optional[int] = ...) -> None: ...
|
|
57
|
+
|
|
58
|
+
class StateData(_message.Message):
|
|
59
|
+
__slots__ = ("room", "world", "entity", "providers", "action_plan", "action_results", "working_memory", "extra")
|
|
60
|
+
class ProvidersEntry(_message.Message):
|
|
61
|
+
__slots__ = ("key", "value")
|
|
62
|
+
KEY_FIELD_NUMBER: _ClassVar[int]
|
|
63
|
+
VALUE_FIELD_NUMBER: _ClassVar[int]
|
|
64
|
+
key: str
|
|
65
|
+
value: ProviderCacheEntry
|
|
66
|
+
def __init__(self, key: _Optional[str] = ..., value: _Optional[_Union[ProviderCacheEntry, _Mapping]] = ...) -> None: ...
|
|
67
|
+
class WorkingMemoryEntry(_message.Message):
|
|
68
|
+
__slots__ = ("key", "value")
|
|
69
|
+
KEY_FIELD_NUMBER: _ClassVar[int]
|
|
70
|
+
VALUE_FIELD_NUMBER: _ClassVar[int]
|
|
71
|
+
key: str
|
|
72
|
+
value: WorkingMemoryItem
|
|
73
|
+
def __init__(self, key: _Optional[str] = ..., value: _Optional[_Union[WorkingMemoryItem, _Mapping]] = ...) -> None: ...
|
|
74
|
+
ROOM_FIELD_NUMBER: _ClassVar[int]
|
|
75
|
+
WORLD_FIELD_NUMBER: _ClassVar[int]
|
|
76
|
+
ENTITY_FIELD_NUMBER: _ClassVar[int]
|
|
77
|
+
PROVIDERS_FIELD_NUMBER: _ClassVar[int]
|
|
78
|
+
ACTION_PLAN_FIELD_NUMBER: _ClassVar[int]
|
|
79
|
+
ACTION_RESULTS_FIELD_NUMBER: _ClassVar[int]
|
|
80
|
+
WORKING_MEMORY_FIELD_NUMBER: _ClassVar[int]
|
|
81
|
+
EXTRA_FIELD_NUMBER: _ClassVar[int]
|
|
82
|
+
room: _environment_pb2.Room
|
|
83
|
+
world: _environment_pb2.World
|
|
84
|
+
entity: _environment_pb2.Entity
|
|
85
|
+
providers: _containers.MessageMap[str, ProviderCacheEntry]
|
|
86
|
+
action_plan: ActionPlan
|
|
87
|
+
action_results: _containers.RepeatedCompositeFieldContainer[_components_pb2.ActionResult]
|
|
88
|
+
working_memory: _containers.MessageMap[str, WorkingMemoryItem]
|
|
89
|
+
extra: _struct_pb2.Struct
|
|
90
|
+
def __init__(self, room: _Optional[_Union[_environment_pb2.Room, _Mapping]] = ..., world: _Optional[_Union[_environment_pb2.World, _Mapping]] = ..., entity: _Optional[_Union[_environment_pb2.Entity, _Mapping]] = ..., providers: _Optional[_Mapping[str, ProviderCacheEntry]] = ..., action_plan: _Optional[_Union[ActionPlan, _Mapping]] = ..., action_results: _Optional[_Iterable[_Union[_components_pb2.ActionResult, _Mapping]]] = ..., working_memory: _Optional[_Mapping[str, WorkingMemoryItem]] = ..., extra: _Optional[_Union[_struct_pb2.Struct, _Mapping]] = ...) -> None: ...
|
|
91
|
+
|
|
92
|
+
class StateValues(_message.Message):
|
|
93
|
+
__slots__ = ("agent_name", "action_names", "providers", "extra")
|
|
94
|
+
AGENT_NAME_FIELD_NUMBER: _ClassVar[int]
|
|
95
|
+
ACTION_NAMES_FIELD_NUMBER: _ClassVar[int]
|
|
96
|
+
PROVIDERS_FIELD_NUMBER: _ClassVar[int]
|
|
97
|
+
EXTRA_FIELD_NUMBER: _ClassVar[int]
|
|
98
|
+
agent_name: str
|
|
99
|
+
action_names: str
|
|
100
|
+
providers: str
|
|
101
|
+
extra: _struct_pb2.Struct
|
|
102
|
+
def __init__(self, agent_name: _Optional[str] = ..., action_names: _Optional[str] = ..., providers: _Optional[str] = ..., extra: _Optional[_Union[_struct_pb2.Struct, _Mapping]] = ...) -> None: ...
|
|
103
|
+
|
|
104
|
+
class State(_message.Message):
|
|
105
|
+
__slots__ = ("values", "data", "text", "extra")
|
|
106
|
+
VALUES_FIELD_NUMBER: _ClassVar[int]
|
|
107
|
+
DATA_FIELD_NUMBER: _ClassVar[int]
|
|
108
|
+
TEXT_FIELD_NUMBER: _ClassVar[int]
|
|
109
|
+
EXTRA_FIELD_NUMBER: _ClassVar[int]
|
|
110
|
+
values: StateValues
|
|
111
|
+
data: StateData
|
|
112
|
+
text: str
|
|
113
|
+
extra: _struct_pb2.Struct
|
|
114
|
+
def __init__(self, values: _Optional[_Union[StateValues, _Mapping]] = ..., data: _Optional[_Union[StateData, _Mapping]] = ..., text: _Optional[str] = ..., extra: _Optional[_Union[_struct_pb2.Struct, _Mapping]] = ...) -> None: ...
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
|
+
# NO CHECKED-IN PROTOBUF GENCODE
|
|
4
|
+
# source: eliza/v1/task.proto
|
|
5
|
+
# Protobuf Python Version: 6.33.5
|
|
6
|
+
"""Generated protocol buffer code."""
|
|
7
|
+
from google.protobuf import descriptor as _descriptor
|
|
8
|
+
from google.protobuf import descriptor_pool as _descriptor_pool
|
|
9
|
+
from google.protobuf import runtime_version as _runtime_version
|
|
10
|
+
from google.protobuf import symbol_database as _symbol_database
|
|
11
|
+
from google.protobuf.internal import builder as _builder
|
|
12
|
+
_runtime_version.ValidateProtobufRuntimeVersion(
|
|
13
|
+
_runtime_version.Domain.PUBLIC,
|
|
14
|
+
6,
|
|
15
|
+
33,
|
|
16
|
+
5,
|
|
17
|
+
'',
|
|
18
|
+
'eliza/v1/task.proto'
|
|
19
|
+
)
|
|
20
|
+
# @@protoc_insertion_point(imports)
|
|
21
|
+
|
|
22
|
+
_sym_db = _symbol_database.Default()
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
from google.protobuf import struct_pb2 as google_dot_protobuf_dot_struct__pb2
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x13\x65liza/v1/task.proto\x12\x08\x65liza.v1\x1a\x1cgoogle/protobuf/struct.proto\"?\n\x0cTaskMetadata\x12/\n\x06values\x18\x01 \x01(\x0b\x32\x17.google.protobuf.StructR\x06values\"\x89\x04\n\x04Task\x12\x13\n\x02id\x18\x01 \x01(\tH\x00R\x02id\x88\x01\x01\x12\x12\n\x04name\x18\x02 \x01(\tR\x04name\x12%\n\x0b\x64\x65scription\x18\x03 \x01(\tH\x01R\x0b\x64\x65scription\x88\x01\x01\x12,\n\x06status\x18\x04 \x01(\x0e\x32\x14.eliza.v1.TaskStatusR\x06status\x12\x1c\n\x07room_id\x18\x05 \x01(\tH\x02R\x06roomId\x88\x01\x01\x12\x1e\n\x08world_id\x18\x06 \x01(\tH\x03R\x07worldId\x88\x01\x01\x12 \n\tentity_id\x18\x07 \x01(\tH\x04R\x08\x65ntityId\x88\x01\x01\x12\x12\n\x04tags\x18\x08 \x03(\tR\x04tags\x12\x37\n\x08metadata\x18\t \x01(\x0b\x32\x16.eliza.v1.TaskMetadataH\x05R\x08metadata\x88\x01\x01\x12\"\n\ncreated_at\x18\n \x01(\x03H\x06R\tcreatedAt\x88\x01\x01\x12\"\n\nupdated_at\x18\x0b \x01(\x03H\x07R\tupdatedAt\x88\x01\x01\x12\x1a\n\x06\x64ue_at\x18\x0c \x01(\x03H\x08R\x05\x64ueAt\x88\x01\x01\x42\x05\n\x03_idB\x0e\n\x0c_descriptionB\n\n\x08_room_idB\x0b\n\t_world_idB\x0c\n\n_entity_idB\x0b\n\t_metadataB\r\n\x0b_created_atB\r\n\x0b_updated_atB\t\n\x07_due_at*\xad\x01\n\nTaskStatus\x12\x1b\n\x17TASK_STATUS_UNSPECIFIED\x10\x00\x12\x17\n\x13TASK_STATUS_PENDING\x10\x01\x12\x1b\n\x17TASK_STATUS_IN_PROGRESS\x10\x02\x12\x19\n\x15TASK_STATUS_COMPLETED\x10\x03\x12\x16\n\x12TASK_STATUS_FAILED\x10\x04\x12\x19\n\x15TASK_STATUS_CANCELLED\x10\x05\x42\x8c\x01\n\x0c\x63om.eliza.v1B\tTaskProtoP\x01Z0github.com/elizaos/eliza/gen/go/eliza/v1;elizav1\xa2\x02\x03\x45XX\xaa\x02\x08\x45liza.V1\xca\x02\x08\x45liza\\V1\xe2\x02\x14\x45liza\\V1\\GPBMetadata\xea\x02\tEliza::V1b\x06proto3')
|
|
29
|
+
|
|
30
|
+
_globals = globals()
|
|
31
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
32
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'eliza.v1.task_pb2', _globals)
|
|
33
|
+
if not _descriptor._USE_C_DESCRIPTORS:
|
|
34
|
+
_globals['DESCRIPTOR']._loaded_options = None
|
|
35
|
+
_globals['DESCRIPTOR']._serialized_options = b'\n\014com.eliza.v1B\tTaskProtoP\001Z0github.com/elizaos/eliza/gen/go/eliza/v1;elizav1\242\002\003EXX\252\002\010Eliza.V1\312\002\010Eliza\\V1\342\002\024Eliza\\V1\\GPBMetadata\352\002\tEliza::V1'
|
|
36
|
+
_globals['_TASKSTATUS']._serialized_start=653
|
|
37
|
+
_globals['_TASKSTATUS']._serialized_end=826
|
|
38
|
+
_globals['_TASKMETADATA']._serialized_start=63
|
|
39
|
+
_globals['_TASKMETADATA']._serialized_end=126
|
|
40
|
+
_globals['_TASK']._serialized_start=129
|
|
41
|
+
_globals['_TASK']._serialized_end=650
|
|
42
|
+
# @@protoc_insertion_point(module_scope)
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
from google.protobuf import struct_pb2 as _struct_pb2
|
|
2
|
+
from google.protobuf.internal import containers as _containers
|
|
3
|
+
from google.protobuf.internal import enum_type_wrapper as _enum_type_wrapper
|
|
4
|
+
from google.protobuf import descriptor as _descriptor
|
|
5
|
+
from google.protobuf import message as _message
|
|
6
|
+
from collections.abc import Iterable as _Iterable, Mapping as _Mapping
|
|
7
|
+
from typing import ClassVar as _ClassVar, Optional as _Optional, Union as _Union
|
|
8
|
+
|
|
9
|
+
DESCRIPTOR: _descriptor.FileDescriptor
|
|
10
|
+
|
|
11
|
+
class TaskStatus(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
12
|
+
__slots__ = ()
|
|
13
|
+
TASK_STATUS_UNSPECIFIED: _ClassVar[TaskStatus]
|
|
14
|
+
TASK_STATUS_PENDING: _ClassVar[TaskStatus]
|
|
15
|
+
TASK_STATUS_IN_PROGRESS: _ClassVar[TaskStatus]
|
|
16
|
+
TASK_STATUS_COMPLETED: _ClassVar[TaskStatus]
|
|
17
|
+
TASK_STATUS_FAILED: _ClassVar[TaskStatus]
|
|
18
|
+
TASK_STATUS_CANCELLED: _ClassVar[TaskStatus]
|
|
19
|
+
TASK_STATUS_UNSPECIFIED: TaskStatus
|
|
20
|
+
TASK_STATUS_PENDING: TaskStatus
|
|
21
|
+
TASK_STATUS_IN_PROGRESS: TaskStatus
|
|
22
|
+
TASK_STATUS_COMPLETED: TaskStatus
|
|
23
|
+
TASK_STATUS_FAILED: TaskStatus
|
|
24
|
+
TASK_STATUS_CANCELLED: TaskStatus
|
|
25
|
+
|
|
26
|
+
class TaskMetadata(_message.Message):
|
|
27
|
+
__slots__ = ("values",)
|
|
28
|
+
VALUES_FIELD_NUMBER: _ClassVar[int]
|
|
29
|
+
values: _struct_pb2.Struct
|
|
30
|
+
def __init__(self, values: _Optional[_Union[_struct_pb2.Struct, _Mapping]] = ...) -> None: ...
|
|
31
|
+
|
|
32
|
+
class Task(_message.Message):
|
|
33
|
+
__slots__ = ("id", "name", "description", "status", "room_id", "world_id", "entity_id", "tags", "metadata", "created_at", "updated_at", "due_at")
|
|
34
|
+
ID_FIELD_NUMBER: _ClassVar[int]
|
|
35
|
+
NAME_FIELD_NUMBER: _ClassVar[int]
|
|
36
|
+
DESCRIPTION_FIELD_NUMBER: _ClassVar[int]
|
|
37
|
+
STATUS_FIELD_NUMBER: _ClassVar[int]
|
|
38
|
+
ROOM_ID_FIELD_NUMBER: _ClassVar[int]
|
|
39
|
+
WORLD_ID_FIELD_NUMBER: _ClassVar[int]
|
|
40
|
+
ENTITY_ID_FIELD_NUMBER: _ClassVar[int]
|
|
41
|
+
TAGS_FIELD_NUMBER: _ClassVar[int]
|
|
42
|
+
METADATA_FIELD_NUMBER: _ClassVar[int]
|
|
43
|
+
CREATED_AT_FIELD_NUMBER: _ClassVar[int]
|
|
44
|
+
UPDATED_AT_FIELD_NUMBER: _ClassVar[int]
|
|
45
|
+
DUE_AT_FIELD_NUMBER: _ClassVar[int]
|
|
46
|
+
id: str
|
|
47
|
+
name: str
|
|
48
|
+
description: str
|
|
49
|
+
status: TaskStatus
|
|
50
|
+
room_id: str
|
|
51
|
+
world_id: str
|
|
52
|
+
entity_id: str
|
|
53
|
+
tags: _containers.RepeatedScalarFieldContainer[str]
|
|
54
|
+
metadata: TaskMetadata
|
|
55
|
+
created_at: int
|
|
56
|
+
updated_at: int
|
|
57
|
+
due_at: int
|
|
58
|
+
def __init__(self, id: _Optional[str] = ..., name: _Optional[str] = ..., description: _Optional[str] = ..., status: _Optional[_Union[TaskStatus, str]] = ..., room_id: _Optional[str] = ..., world_id: _Optional[str] = ..., entity_id: _Optional[str] = ..., tags: _Optional[_Iterable[str]] = ..., metadata: _Optional[_Union[TaskMetadata, _Mapping]] = ..., created_at: _Optional[int] = ..., updated_at: _Optional[int] = ..., due_at: _Optional[int] = ...) -> None: ...
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
|
+
# NO CHECKED-IN PROTOBUF GENCODE
|
|
4
|
+
# source: eliza/v1/tee.proto
|
|
5
|
+
# Protobuf Python Version: 6.33.5
|
|
6
|
+
"""Generated protocol buffer code."""
|
|
7
|
+
from google.protobuf import descriptor as _descriptor
|
|
8
|
+
from google.protobuf import descriptor_pool as _descriptor_pool
|
|
9
|
+
from google.protobuf import runtime_version as _runtime_version
|
|
10
|
+
from google.protobuf import symbol_database as _symbol_database
|
|
11
|
+
from google.protobuf.internal import builder as _builder
|
|
12
|
+
_runtime_version.ValidateProtobufRuntimeVersion(
|
|
13
|
+
_runtime_version.Domain.PUBLIC,
|
|
14
|
+
6,
|
|
15
|
+
33,
|
|
16
|
+
5,
|
|
17
|
+
'',
|
|
18
|
+
'eliza/v1/tee.proto'
|
|
19
|
+
)
|
|
20
|
+
# @@protoc_insertion_point(imports)
|
|
21
|
+
|
|
22
|
+
_sym_db = _symbol_database.Default()
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
from google.protobuf import struct_pb2 as google_dot_protobuf_dot_struct__pb2
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x12\x65liza/v1/tee.proto\x12\x08\x65liza.v1\x1a\x1cgoogle/protobuf/struct.proto\"\xb4\x01\n\x08TeeAgent\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\x12\x19\n\x08\x61gent_id\x18\x02 \x01(\tR\x07\x61gentId\x12\x1d\n\nagent_name\x18\x03 \x01(\tR\tagentName\x12\x1d\n\ncreated_at\x18\x04 \x01(\x03R\tcreatedAt\x12\x1d\n\npublic_key\x18\x05 \x01(\tR\tpublicKey\x12 \n\x0b\x61ttestation\x18\x06 \x01(\tR\x0b\x61ttestation\"L\n\x16RemoteAttestationQuote\x12\x14\n\x05quote\x18\x01 \x01(\tR\x05quote\x12\x1c\n\ttimestamp\x18\x02 \x01(\x03R\ttimestamp\"\x7f\n\x18\x44\x65riveKeyAttestationData\x12\x19\n\x08\x61gent_id\x18\x01 \x01(\tR\x07\x61gentId\x12\x1d\n\npublic_key\x18\x02 \x01(\tR\tpublicKey\x12\x1d\n\x07subject\x18\x03 \x01(\tH\x00R\x07subject\x88\x01\x01\x42\n\n\x08_subject\"a\n\x0f\x41ttestedMessage\x12\x1b\n\tentity_id\x18\x01 \x01(\tR\x08\x65ntityId\x12\x17\n\x07room_id\x18\x02 \x01(\tR\x06roomId\x12\x18\n\x07\x63ontent\x18\x03 \x01(\tR\x07\x63ontent\"\x88\x01\n\x18RemoteAttestationMessage\x12\x19\n\x08\x61gent_id\x18\x01 \x01(\tR\x07\x61gentId\x12\x1c\n\ttimestamp\x18\x02 \x01(\x03R\ttimestamp\x12\x33\n\x07message\x18\x03 \x01(\x0b\x32\x19.eliza.v1.AttestedMessageR\x07message\"w\n\x0fTeePluginConfig\x12\x1b\n\x06vendor\x18\x01 \x01(\tH\x00R\x06vendor\x88\x01\x01\x12<\n\rvendor_config\x18\x02 \x01(\x0b\x32\x17.google.protobuf.StructR\x0cvendorConfigB\t\n\x07_vendor*w\n\x07TEEMode\x12\x18\n\x14TEE_MODE_UNSPECIFIED\x10\x00\x12\x10\n\x0cTEE_MODE_OFF\x10\x01\x12\x12\n\x0eTEE_MODE_LOCAL\x10\x02\x12\x13\n\x0fTEE_MODE_DOCKER\x10\x03\x12\x17\n\x13TEE_MODE_PRODUCTION\x10\x04*<\n\x07TeeType\x12\x18\n\x14TEE_TYPE_UNSPECIFIED\x10\x00\x12\x17\n\x13TEE_TYPE_TDX_DSTACK\x10\x01\x42\x8b\x01\n\x0c\x63om.eliza.v1B\x08TeeProtoP\x01Z0github.com/elizaos/eliza/gen/go/eliza/v1;elizav1\xa2\x02\x03\x45XX\xaa\x02\x08\x45liza.V1\xca\x02\x08\x45liza\\V1\xe2\x02\x14\x45liza\\V1\\GPBMetadata\xea\x02\tEliza::V1b\x06proto3')
|
|
29
|
+
|
|
30
|
+
_globals = globals()
|
|
31
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
32
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'eliza.v1.tee_pb2', _globals)
|
|
33
|
+
if not _descriptor._USE_C_DESCRIPTORS:
|
|
34
|
+
_globals['DESCRIPTOR']._loaded_options = None
|
|
35
|
+
_globals['DESCRIPTOR']._serialized_options = b'\n\014com.eliza.v1B\010TeeProtoP\001Z0github.com/elizaos/eliza/gen/go/eliza/v1;elizav1\242\002\003EXX\252\002\010Eliza.V1\312\002\010Eliza\\V1\342\002\024Eliza\\V1\\GPBMetadata\352\002\tEliza::V1'
|
|
36
|
+
_globals['_TEEMODE']._serialized_start=811
|
|
37
|
+
_globals['_TEEMODE']._serialized_end=930
|
|
38
|
+
_globals['_TEETYPE']._serialized_start=932
|
|
39
|
+
_globals['_TEETYPE']._serialized_end=992
|
|
40
|
+
_globals['_TEEAGENT']._serialized_start=63
|
|
41
|
+
_globals['_TEEAGENT']._serialized_end=243
|
|
42
|
+
_globals['_REMOTEATTESTATIONQUOTE']._serialized_start=245
|
|
43
|
+
_globals['_REMOTEATTESTATIONQUOTE']._serialized_end=321
|
|
44
|
+
_globals['_DERIVEKEYATTESTATIONDATA']._serialized_start=323
|
|
45
|
+
_globals['_DERIVEKEYATTESTATIONDATA']._serialized_end=450
|
|
46
|
+
_globals['_ATTESTEDMESSAGE']._serialized_start=452
|
|
47
|
+
_globals['_ATTESTEDMESSAGE']._serialized_end=549
|
|
48
|
+
_globals['_REMOTEATTESTATIONMESSAGE']._serialized_start=552
|
|
49
|
+
_globals['_REMOTEATTESTATIONMESSAGE']._serialized_end=688
|
|
50
|
+
_globals['_TEEPLUGINCONFIG']._serialized_start=690
|
|
51
|
+
_globals['_TEEPLUGINCONFIG']._serialized_end=809
|
|
52
|
+
# @@protoc_insertion_point(module_scope)
|