cellium-agent 1.4.2.post2__tar.gz
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.
- cellium_agent-1.4.2.post2/LICENSE +13 -0
- cellium_agent-1.4.2.post2/MANIFEST.in +3 -0
- cellium_agent-1.4.2.post2/PKG-INFO +715 -0
- cellium_agent-1.4.2.post2/README.md +731 -0
- cellium_agent-1.4.2.post2/README_en.md +695 -0
- cellium_agent-1.4.2.post2/app/__init__.py +4 -0
- cellium_agent-1.4.2.post2/app/agent/control/__init__.py +84 -0
- cellium_agent-1.4.2.post2/app/agent/control/action_bandit.py +336 -0
- cellium_agent-1.4.2.post2/app/agent/control/constraint_gene/__init__.py +15 -0
- cellium_agent-1.4.2.post2/app/agent/control/constraint_gene/composer.py +158 -0
- cellium_agent-1.4.2.post2/app/agent/control/constraint_gene/evolution.py +954 -0
- cellium_agent-1.4.2.post2/app/agent/control/constraint_gene/matcher.py +241 -0
- cellium_agent-1.4.2.post2/app/agent/control/control_loop.py +590 -0
- cellium_agent-1.4.2.post2/app/agent/control/decision_renderer.py +184 -0
- cellium_agent-1.4.2.post2/app/agent/control/feedback_evaluator.py +276 -0
- cellium_agent-1.4.2.post2/app/agent/control/gene_post_session.py +200 -0
- cellium_agent-1.4.2.post2/app/agent/control/hard_constraints.py +459 -0
- cellium_agent-1.4.2.post2/app/agent/control/hybrid_controller.py +440 -0
- cellium_agent-1.4.2.post2/app/agent/control/loop_state.py +179 -0
- cellium_agent-1.4.2.post2/app/agent/control/thought_parser.py +174 -0
- cellium_agent-1.4.2.post2/app/agent/di_config.py +585 -0
- cellium_agent-1.4.2.post2/app/agent/events/__init__.py +40 -0
- cellium_agent-1.4.2.post2/app/agent/events/event_models.py +115 -0
- cellium_agent-1.4.2.post2/app/agent/events/event_types.py +37 -0
- cellium_agent-1.4.2.post2/app/agent/heuristics/__init__.py +42 -0
- cellium_agent-1.4.2.post2/app/agent/heuristics/config.py +108 -0
- cellium_agent-1.4.2.post2/app/agent/heuristics/engine.py +373 -0
- cellium_agent-1.4.2.post2/app/agent/heuristics/features.py +588 -0
- cellium_agent-1.4.2.post2/app/agent/heuristics/integration.py +237 -0
- cellium_agent-1.4.2.post2/app/agent/heuristics/rules/__init__.py +30 -0
- cellium_agent-1.4.2.post2/app/agent/heuristics/rules/base_rule.py +60 -0
- cellium_agent-1.4.2.post2/app/agent/heuristics/rules/loop_detection.py +242 -0
- cellium_agent-1.4.2.post2/app/agent/heuristics/rules/termination.py +404 -0
- cellium_agent-1.4.2.post2/app/agent/heuristics/scoring.py +175 -0
- cellium_agent-1.4.2.post2/app/agent/heuristics/trace.py +135 -0
- cellium_agent-1.4.2.post2/app/agent/heuristics/types.py +134 -0
- cellium_agent-1.4.2.post2/app/agent/learning/__init__.py +24 -0
- cellium_agent-1.4.2.post2/app/agent/learning/bandit.py +97 -0
- cellium_agent-1.4.2.post2/app/agent/learning/integration.py +282 -0
- cellium_agent-1.4.2.post2/app/agent/learning/memory_policy.py +185 -0
- cellium_agent-1.4.2.post2/app/agent/learning/policy.py +143 -0
- cellium_agent-1.4.2.post2/app/agent/llm/__init__.py +10 -0
- cellium_agent-1.4.2.post2/app/agent/llm/engine.py +988 -0
- cellium_agent-1.4.2.post2/app/agent/llm/models.py +31 -0
- cellium_agent-1.4.2.post2/app/agent/llm/transport.py +277 -0
- cellium_agent-1.4.2.post2/app/agent/loop/__init__.py +29 -0
- cellium_agent-1.4.2.post2/app/agent/loop/agent_loop.py +2312 -0
- cellium_agent-1.4.2.post2/app/agent/loop/agent_loop_manager.py +289 -0
- cellium_agent-1.4.2.post2/app/agent/loop/auto_hints.py +438 -0
- cellium_agent-1.4.2.post2/app/agent/loop/command_handler.py +74 -0
- cellium_agent-1.4.2.post2/app/agent/loop/loop_controller.py +122 -0
- cellium_agent-1.4.2.post2/app/agent/loop/loop_event_publisher.py +268 -0
- cellium_agent-1.4.2.post2/app/agent/loop/memory.py +347 -0
- cellium_agent-1.4.2.post2/app/agent/loop/round_trimmer.py +75 -0
- cellium_agent-1.4.2.post2/app/agent/loop/session_manager.py +466 -0
- cellium_agent-1.4.2.post2/app/agent/loop/session_store.py +392 -0
- cellium_agent-1.4.2.post2/app/agent/loop/tool_executor.py +671 -0
- cellium_agent-1.4.2.post2/app/agent/memory/__init__.py +30 -0
- cellium_agent-1.4.2.post2/app/agent/memory/archive_store.py +163 -0
- cellium_agent-1.4.2.post2/app/agent/memory/chinese_tokenizer.py +112 -0
- cellium_agent-1.4.2.post2/app/agent/memory/fts5_searcher.py +699 -0
- cellium_agent-1.4.2.post2/app/agent/memory/knowledge_extractor.py +189 -0
- cellium_agent-1.4.2.post2/app/agent/memory/repository.py +1521 -0
- cellium_agent-1.4.2.post2/app/agent/memory/session_compact.py +647 -0
- cellium_agent-1.4.2.post2/app/agent/memory/session_notes.py +323 -0
- cellium_agent-1.4.2.post2/app/agent/memory/three_layer.py +326 -0
- cellium_agent-1.4.2.post2/app/agent/memory/vector_native.py +169 -0
- cellium_agent-1.4.2.post2/app/agent/prompt/__init__.py +21 -0
- cellium_agent-1.4.2.post2/app/agent/prompt/builder.py +170 -0
- cellium_agent-1.4.2.post2/app/agent/prompt/diff.py +247 -0
- cellium_agent-1.4.2.post2/app/agent/prompt/piece.py +96 -0
- cellium_agent-1.4.2.post2/app/agent/prompt/pieces.py +304 -0
- cellium_agent-1.4.2.post2/app/agent/runtime/__init__.py +14 -0
- cellium_agent-1.4.2.post2/app/agent/runtime/context.py +841 -0
- cellium_agent-1.4.2.post2/app/agent/runtime/core.py +317 -0
- cellium_agent-1.4.2.post2/app/agent/runtime/diagnostics.py +375 -0
- cellium_agent-1.4.2.post2/app/agent/runtime/patch.py +126 -0
- cellium_agent-1.4.2.post2/app/agent/runtime/patch_applier.py +301 -0
- cellium_agent-1.4.2.post2/app/agent/runtime/transaction.py +78 -0
- cellium_agent-1.4.2.post2/app/agent/security/__init__.py +13 -0
- cellium_agent-1.4.2.post2/app/agent/security/policy.py +11 -0
- cellium_agent-1.4.2.post2/app/agent/shell/__init__.py +3 -0
- cellium_agent-1.4.2.post2/app/agent/shell/cellium_shell.py +1240 -0
- cellium_agent-1.4.2.post2/app/agent/tools/__init__.py +13 -0
- cellium_agent-1.4.2.post2/app/agent/tools/base_tool.py +338 -0
- cellium_agent-1.4.2.post2/app/agent/tools/config_tool.py +487 -0
- cellium_agent-1.4.2.post2/app/agent/tools/edit_tool.py +299 -0
- cellium_agent-1.4.2.post2/app/agent/tools/file_cache.py +100 -0
- cellium_agent-1.4.2.post2/app/agent/tools/file_tool.py +315 -0
- cellium_agent-1.4.2.post2/app/agent/tools/glob_tool.py +86 -0
- cellium_agent-1.4.2.post2/app/agent/tools/grep_tool.py +606 -0
- cellium_agent-1.4.2.post2/app/agent/tools/ls_tool.py +97 -0
- cellium_agent-1.4.2.post2/app/agent/tools/memory_tool.py +823 -0
- cellium_agent-1.4.2.post2/app/agent/tools/read_tool.py +453 -0
- cellium_agent-1.4.2.post2/app/agent/tools/shell_tool.py +345 -0
- cellium_agent-1.4.2.post2/app/channels/__init__.py +99 -0
- cellium_agent-1.4.2.post2/app/channels/base.py +293 -0
- cellium_agent-1.4.2.post2/app/channels/channel_manager.py +738 -0
- cellium_agent-1.4.2.post2/app/channels/channel_registry.py +44 -0
- cellium_agent-1.4.2.post2/app/channels/feishu/__init__.py +5 -0
- cellium_agent-1.4.2.post2/app/channels/feishu/feishu_adapter.py +852 -0
- cellium_agent-1.4.2.post2/app/channels/feishu/feishu_config.py +89 -0
- cellium_agent-1.4.2.post2/app/channels/qq/__init__.py +6 -0
- cellium_agent-1.4.2.post2/app/channels/qq/qq_adapter.py +1152 -0
- cellium_agent-1.4.2.post2/app/channels/qq/qq_config.py +78 -0
- cellium_agent-1.4.2.post2/app/channels/qq/qq_connect_client.py +284 -0
- cellium_agent-1.4.2.post2/app/channels/telegram/__init__.py +5 -0
- cellium_agent-1.4.2.post2/app/channels/telegram/telegram_adapter.py +1022 -0
- cellium_agent-1.4.2.post2/app/channels/telegram/telegram_config.py +103 -0
- cellium_agent-1.4.2.post2/app/channels/weixin/__init__.py +5 -0
- cellium_agent-1.4.2.post2/app/channels/weixin/weixin_adapter.py +1383 -0
- cellium_agent-1.4.2.post2/app/channels/weixin/weixin_config.py +75 -0
- cellium_agent-1.4.2.post2/app/core/__init__.py +10 -0
- cellium_agent-1.4.2.post2/app/core/bootstrap.py +211 -0
- cellium_agent-1.4.2.post2/app/core/bus/__init__.py +51 -0
- cellium_agent-1.4.2.post2/app/core/bus/event_bus.py +547 -0
- cellium_agent-1.4.2.post2/app/core/bus/event_models.py +194 -0
- cellium_agent-1.4.2.post2/app/core/bus/events.py +28 -0
- cellium_agent-1.4.2.post2/app/core/di/__init__.py +17 -0
- cellium_agent-1.4.2.post2/app/core/di/container.py +180 -0
- cellium_agent-1.4.2.post2/app/core/exception.py +16 -0
- cellium_agent-1.4.2.post2/app/core/interface/base_cell.py +94 -0
- cellium_agent-1.4.2.post2/app/core/interface/icell.py +68 -0
- cellium_agent-1.4.2.post2/app/core/interface/memory.py +45 -0
- cellium_agent-1.4.2.post2/app/core/scheduler/__init__.py +30 -0
- cellium_agent-1.4.2.post2/app/core/scheduler/executor.py +295 -0
- cellium_agent-1.4.2.post2/app/core/scheduler/manager.py +418 -0
- cellium_agent-1.4.2.post2/app/core/security/__init__.py +2 -0
- cellium_agent-1.4.2.post2/app/core/security/policy.py +390 -0
- cellium_agent-1.4.2.post2/app/core/util/__init__.py +16 -0
- cellium_agent-1.4.2.post2/app/core/util/agent_config.py +642 -0
- cellium_agent-1.4.2.post2/app/core/util/browser_runtime.py +67 -0
- cellium_agent-1.4.2.post2/app/core/util/browser_utils.py +163 -0
- cellium_agent-1.4.2.post2/app/core/util/cell_tool_adapter.py +872 -0
- cellium_agent-1.4.2.post2/app/core/util/component_auditor.py +540 -0
- cellium_agent-1.4.2.post2/app/core/util/component_sandbox.py +592 -0
- cellium_agent-1.4.2.post2/app/core/util/component_tool_registry.py +330 -0
- cellium_agent-1.4.2.post2/app/core/util/component_watcher.py +334 -0
- cellium_agent-1.4.2.post2/app/core/util/components_loader.py +1037 -0
- cellium_agent-1.4.2.post2/app/core/util/logger.py +581 -0
- cellium_agent-1.4.2.post2/app/core/util/mp_manager.py +183 -0
- cellium_agent-1.4.2.post2/app/core/util/protected_modules.py +263 -0
- cellium_agent-1.4.2.post2/app/core/util/runtime_paths.py +236 -0
- cellium_agent-1.4.2.post2/app/core/util/sandbox_entry.py +228 -0
- cellium_agent-1.4.2.post2/app/core/window/__init__.py +3 -0
- cellium_agent-1.4.2.post2/app/core/window/main_window.py +665 -0
- cellium_agent-1.4.2.post2/app/messaging/__init__.py +8 -0
- cellium_agent-1.4.2.post2/app/messaging/event_schema.py +13 -0
- cellium_agent-1.4.2.post2/app/messaging/message_broker.py +171 -0
- cellium_agent-1.4.2.post2/app/messaging/stream_normalizer.py +301 -0
- cellium_agent-1.4.2.post2/app/server/__init__.py +24 -0
- cellium_agent-1.4.2.post2/app/server/routes/__init__.py +2 -0
- cellium_agent-1.4.2.post2/app/server/routes/channels.py +340 -0
- cellium_agent-1.4.2.post2/app/server/routes/chat.py +997 -0
- cellium_agent-1.4.2.post2/app/server/routes/components.py +275 -0
- cellium_agent-1.4.2.post2/app/server/routes/config.py +497 -0
- cellium_agent-1.4.2.post2/app/server/routes/gene.py +299 -0
- cellium_agent-1.4.2.post2/app/server/routes/logs.py +171 -0
- cellium_agent-1.4.2.post2/app/server/routes/memory.py +225 -0
- cellium_agent-1.4.2.post2/app/server/routes/scheduler.py +209 -0
- cellium_agent-1.4.2.post2/app/server/routes/session_events.py +120 -0
- cellium_agent-1.4.2.post2/app/server/routes/skills.py +151 -0
- cellium_agent-1.4.2.post2/app/server/routes/upload.py +158 -0
- cellium_agent-1.4.2.post2/app/server/routes/ws_event_manager.py +329 -0
- cellium_agent-1.4.2.post2/app/server/task_manager.py +385 -0
- cellium_agent-1.4.2.post2/app/server/web_server.py +147 -0
- cellium_agent-1.4.2.post2/app/tui/__init__.py +2 -0
- cellium_agent-1.4.2.post2/app/tui/app.py +2025 -0
- cellium_agent-1.4.2.post2/app/tui/commands.py +45 -0
- cellium_agent-1.4.2.post2/app/tui/history_render.py +285 -0
- cellium_agent-1.4.2.post2/app/tui/i18n.py +444 -0
- cellium_agent-1.4.2.post2/app/tui/model_picker.py +341 -0
- cellium_agent-1.4.2.post2/app/tui/runner.py +151 -0
- cellium_agent-1.4.2.post2/app/tui/session_picker.py +233 -0
- cellium_agent-1.4.2.post2/app/tui/settings_screen.py +213 -0
- cellium_agent-1.4.2.post2/app/tui/spinner.py +18 -0
- cellium_agent-1.4.2.post2/app/tui/theme.py +112 -0
- cellium_agent-1.4.2.post2/app/tui/widgets.py +1212 -0
- cellium_agent-1.4.2.post2/cellium_agent.egg-info/PKG-INFO +715 -0
- cellium_agent-1.4.2.post2/cellium_agent.egg-info/SOURCES.txt +271 -0
- cellium_agent-1.4.2.post2/cellium_agent.egg-info/dependency_links.txt +1 -0
- cellium_agent-1.4.2.post2/cellium_agent.egg-info/entry_points.txt +3 -0
- cellium_agent-1.4.2.post2/cellium_agent.egg-info/requires.txt +12 -0
- cellium_agent-1.4.2.post2/cellium_agent.egg-info/top_level.txt +1 -0
- cellium_agent-1.4.2.post2/components/__init__.py +8 -0
- cellium_agent-1.4.2.post2/components/_example_component.py +299 -0
- cellium_agent-1.4.2.post2/components/component_builder.py +1247 -0
- cellium_agent-1.4.2.post2/components/feishu_files.py +467 -0
- cellium_agent-1.4.2.post2/components/qq_files.py +341 -0
- cellium_agent-1.4.2.post2/components/scheduler.py +256 -0
- cellium_agent-1.4.2.post2/components/skill_installer.py +979 -0
- cellium_agent-1.4.2.post2/components/skill_manager.py +222 -0
- cellium_agent-1.4.2.post2/components/skills/__init__.py +39 -0
- cellium_agent-1.4.2.post2/components/sub_agent.py +625 -0
- cellium_agent-1.4.2.post2/components/telegram_files.py +354 -0
- cellium_agent-1.4.2.post2/components/web_fetch.py +2564 -0
- cellium_agent-1.4.2.post2/components/web_search.py +1076 -0
- cellium_agent-1.4.2.post2/components/weixin_files.py +343 -0
- cellium_agent-1.4.2.post2/config/agent/agent.yaml +9 -0
- cellium_agent-1.4.2.post2/config/agent/channels.yaml +39 -0
- cellium_agent-1.4.2.post2/config/agent/heuristics.yaml +43 -0
- cellium_agent-1.4.2.post2/config/agent/learning.yaml +30 -0
- cellium_agent-1.4.2.post2/config/agent/llm.yaml +53 -0
- cellium_agent-1.4.2.post2/config/agent/logging.yaml +11 -0
- cellium_agent-1.4.2.post2/config/agent/memory.yaml +22 -0
- cellium_agent-1.4.2.post2/config/agent/model_registry.yaml +105 -0
- cellium_agent-1.4.2.post2/config/agent/routes.yaml +26 -0
- cellium_agent-1.4.2.post2/config/agent/security.yaml +20 -0
- cellium_agent-1.4.2.post2/config/agent/server.yaml +18 -0
- cellium_agent-1.4.2.post2/config/settings.yaml +24 -0
- cellium_agent-1.4.2.post2/dll/.gitkeep +3 -0
- cellium_agent-1.4.2.post2/dll/darwin-arm64/libvector_engine.dylib +0 -0
- cellium_agent-1.4.2.post2/dll/linux-aarch64/libvector_engine.so +0 -0
- cellium_agent-1.4.2.post2/dll/linux-x86_64/libvector_engine.so +0 -0
- cellium_agent-1.4.2.post2/dll/windows-x86_64/vector_engine.dll +0 -0
- cellium_agent-1.4.2.post2/html/assets/SettingsPage-DPQG2vYQ.js +1 -0
- cellium_agent-1.4.2.post2/html/assets/i18n-vendor-CLSNeGwf.js +1 -0
- cellium_agent-1.4.2.post2/html/assets/index-B8_rdIzI.js +6 -0
- cellium_agent-1.4.2.post2/html/assets/index-BTZUwOV4.css +1 -0
- cellium_agent-1.4.2.post2/html/assets/markdown-vendor-Ckj0zzMC.js +66 -0
- cellium_agent-1.4.2.post2/html/assets/react-vendor-CEaRprYI.js +23 -0
- cellium_agent-1.4.2.post2/html/assets/rolldown-runtime-xSXa1GVp.js +1 -0
- cellium_agent-1.4.2.post2/html/font/.gitkeep +2 -0
- cellium_agent-1.4.2.post2/html/font/Roboto-Regular.ttf +0 -0
- cellium_agent-1.4.2.post2/html/index.html +27 -0
- cellium_agent-1.4.2.post2/html/logo.png +0 -0
- cellium_agent-1.4.2.post2/licenses/ripgrep-LICENSE +26 -0
- cellium_agent-1.4.2.post2/main.py +60 -0
- cellium_agent-1.4.2.post2/memory/personality.md +380 -0
- cellium_agent-1.4.2.post2/pyproject.toml +53 -0
- cellium_agent-1.4.2.post2/requirements.txt +31 -0
- cellium_agent-1.4.2.post2/setup.cfg +4 -0
- cellium_agent-1.4.2.post2/tests/test_agent_loop.py +1491 -0
- cellium_agent-1.4.2.post2/tests/test_archive_dedup.py +337 -0
- cellium_agent-1.4.2.post2/tests/test_cellium_shell.py +241 -0
- cellium_agent-1.4.2.post2/tests/test_component_state_reload.py +373 -0
- cellium_agent-1.4.2.post2/tests/test_control_loop.py +559 -0
- cellium_agent-1.4.2.post2/tests/test_entry_imports.py +53 -0
- cellium_agent-1.4.2.post2/tests/test_feedback_evaluator.py +121 -0
- cellium_agent-1.4.2.post2/tests/test_file_cache_grep.py +474 -0
- cellium_agent-1.4.2.post2/tests/test_gene_api.py +225 -0
- cellium_agent-1.4.2.post2/tests/test_gene_composer.py +121 -0
- cellium_agent-1.4.2.post2/tests/test_gene_evolution.py +381 -0
- cellium_agent-1.4.2.post2/tests/test_gene_post_session.py +285 -0
- cellium_agent-1.4.2.post2/tests/test_hard_constraints.py +151 -0
- cellium_agent-1.4.2.post2/tests/test_heuristic_engine_integration.py +209 -0
- cellium_agent-1.4.2.post2/tests/test_heuristics.py +584 -0
- cellium_agent-1.4.2.post2/tests/test_hybrid_controller.py +386 -0
- cellium_agent-1.4.2.post2/tests/test_integration.py +206 -0
- cellium_agent-1.4.2.post2/tests/test_intent_llm.py +259 -0
- cellium_agent-1.4.2.post2/tests/test_llm_transport.py +399 -0
- cellium_agent-1.4.2.post2/tests/test_memory_api.py +141 -0
- cellium_agent-1.4.2.post2/tests/test_memory_api_http.py +326 -0
- cellium_agent-1.4.2.post2/tests/test_memory_archive.py +155 -0
- cellium_agent-1.4.2.post2/tests/test_memory_repository_unit.py +317 -0
- cellium_agent-1.4.2.post2/tests/test_memory_system.py +421 -0
- cellium_agent-1.4.2.post2/tests/test_microkernel_integration.py +64 -0
- cellium_agent-1.4.2.post2/tests/test_read_edit_integration.py +524 -0
- cellium_agent-1.4.2.post2/tests/test_scheduler.py +550 -0
- cellium_agent-1.4.2.post2/tests/test_security.py +290 -0
- cellium_agent-1.4.2.post2/tests/test_session_compact.py +345 -0
- cellium_agent-1.4.2.post2/tests/test_subagent.py +541 -0
- cellium_agent-1.4.2.post2/tests/test_task_signal_matcher.py +462 -0
- cellium_agent-1.4.2.post2/tests/test_thought_parser.py +125 -0
- cellium_agent-1.4.2.post2/tests/test_tool_executor.py +137 -0
- cellium_agent-1.4.2.post2/tests/test_web_search.py +124 -0
- cellium_agent-1.4.2.post2/tests/test_web_search_unit.py +127 -0
- cellium_agent-1.4.2.post2/vendor/.gitkeep +0 -0
- cellium_agent-1.4.2.post2/vendor/ripgrep/.gitkeep +0 -0
- cellium_agent-1.4.2.post2/vendor/ripgrep/aarch64-apple-darwin/rg +0 -0
- cellium_agent-1.4.2.post2/vendor/ripgrep/aarch64-unknown-linux-gnu/rg +0 -0
- cellium_agent-1.4.2.post2/vendor/ripgrep/x86_64-pc-windows-msvc/rg.exe +0 -0
- cellium_agent-1.4.2.post2/vendor/ripgrep/x86_64-unknown-linux-musl/rg +0 -0
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
Copyright (c) 2026 Cellium Contributors
|
|
2
|
+
|
|
3
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
you may not use this file except in compliance with the License.
|
|
5
|
+
You may obtain a copy of the License at
|
|
6
|
+
|
|
7
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
|
|
9
|
+
Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
See the License for the specific language governing permissions and
|
|
13
|
+
limitations under the License.
|