-
Notifications
You must be signed in to change notification settings - Fork 72
Expand file tree
/
Copy path__init__.py
More file actions
64 lines (62 loc) · 1.97 KB
/
Copy path__init__.py
File metadata and controls
64 lines (62 loc) · 1.97 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
# Tencent is pleased to support the open source community by making tRPC-Agent-Python available.
#
# Copyright (C) 2026 Tencent. All rights reserved.
#
# tRPC-Agent-Python is licensed under Apache-2.0.
"""Config module for trpc_claw."""
from ._config import ClawConfig
from ._config import ContainerCodeExecutorConfig
from ._config import FileStorageConfig
from ._config import LocalCodeExecutorConfig
from ._config import LoggerConfig
from ._config import MetricsConfig
from ._config import RedisStorageConfig
from ._config import RuntimeConfig
from ._config import SkillConfig
from ._config import SkillRootConfig
from ._config import SqlStorageConfig
from ._config import StorageConfig
from ._config import load_config
from ._constants import AGENT_FILE_NAME
from ._constants import BOT_NAME
from ._constants import DEFAULT_APP_NAME
from ._constants import DEFAULT_CONFIG_PATH
from ._constants import DEFAULT_LEGACY_SESSIONS_DIR
from ._constants import DEFAULT_TRPC_CLAW_DIR
from ._constants import DEFAULT_USER_ID
from ._constants import DEFAULT_WORKSPACE_PATH
from ._constants import HISTORY_FILE_NAME
from ._constants import MEMORY_FILE_NAME
from ._constants import SOUL_FILE_NAME
from ._constants import TOOL_FILE_NAME
from ._constants import TRPC_CLAW_SKILLS_INSTALL_ROOT_ENV_NAME
from ._constants import USER_FILE_NAME
__all__ = [
"ClawConfig",
"RuntimeConfig",
"load_config",
"LocalCodeExecutorConfig",
"ContainerCodeExecutorConfig",
"SkillConfig",
"SkillRootConfig",
"FileStorageConfig",
"SqlStorageConfig",
"RedisStorageConfig",
"StorageConfig",
"BOT_NAME",
"DEFAULT_TRPC_CLAW_DIR",
"DEFAULT_APP_NAME",
"DEFAULT_USER_ID",
"DEFAULT_CONFIG_PATH",
"DEFAULT_WORKSPACE_PATH",
"DEFAULT_LEGACY_SESSIONS_DIR",
"LoggerConfig",
"TRPC_CLAW_SKILLS_INSTALL_ROOT_ENV_NAME",
"HISTORY_FILE_NAME",
"MEMORY_FILE_NAME",
"SOUL_FILE_NAME",
"USER_FILE_NAME",
"TOOL_FILE_NAME",
"AGENT_FILE_NAME",
"MetricsConfig",
]