/
githubmirror
/
ChatDev
Обзор
Документация
Войти
/
githubmirror
/
ChatDev
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
entity/configs/node/__init__.py
22 строки
551 B
Petar Zivkovic
feat(agent): add filesystem-backed Agent Skills with activation and demo skills
02 мар 2026, 22:44
02 мар 2026, 22:44
cefe90f
Код
Авторство
О чём код?
"""Node config conveniences.""" from .agent import AgentConfig, AgentRetryConfig from .human import HumanConfig from .subgraph import SubgraphConfig from .passthrough import PassthroughConfig from .python_runner import PythonRunnerConfig from .skills import AgentSkillsConfig from .node import Node from .literal import LiteralNodeConfig __all__ = [ "AgentConfig", "AgentRetryConfig", "AgentSkillsConfig", "HumanConfig", "SubgraphConfig", "PassthroughConfig", "PythonRunnerConfig", "LiteralNodeConfig", "Node", ]