tactus 0.22.0__tar.gz → 0.35.0__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.
- tactus-0.35.0/.coveragerc +27 -0
- tactus-0.35.0/.github/workflows/release.yml +195 -0
- tactus-0.35.0/.gitignore +50 -0
- tactus-0.35.0/.tactus/config.yml.example +12 -0
- tactus-0.35.0/AGENTS.md +610 -0
- tactus-0.35.0/CHANGELOG.md +758 -0
- tactus-0.35.0/CHANGES_SUMMARY.md +176 -0
- tactus-0.35.0/CHECKPOINT_RESUME_PLAN.md +255 -0
- tactus-0.35.0/CURRENT_STATUS_AND_NEXT_STEPS.md +161 -0
- tactus-0.35.0/DETERMINISTIC_REQUEST_ID_FIX.md +135 -0
- tactus-0.35.0/EXECUTION_TRACE.md +212 -0
- tactus-0.35.0/IMPLEMENTATION.md +1904 -0
- tactus-0.35.0/Makefile +132 -0
- tactus-0.35.0/PHASE0_IPC_CHANNEL_COMPLETE.md +356 -0
- tactus-0.35.0/PHASE2_INTEGRATION_COMPLETE.md +256 -0
- tactus-0.35.0/PHASE3_IDE_HITL_INTEGRATION.md +288 -0
- tactus-0.35.0/PKG-INFO +1832 -0
- tactus-0.35.0/README.md +1766 -0
- tactus-0.35.0/SPECIFICATION.md +3256 -0
- tactus-0.35.0/TECHNICAL_DEBT.md +156 -0
- tactus-0.35.0/coverage.json +1 -0
- tactus-0.35.0/coverage_badge.json +1 -0
- tactus-0.35.0/docs/BDD_TESTING.md +787 -0
- tactus-0.35.0/docs/CONFIGURATION.md +503 -0
- tactus-0.35.0/docs/CONTROL_LOOP_PHASE1_COMPLETE.md +304 -0
- tactus-0.35.0/docs/DURABILITY.md +1393 -0
- tactus-0.35.0/docs/MANUAL_CHECKPOINT_TESTING.md +283 -0
- tactus-0.35.0/docs/OMNICHANNEL_HITL_PLAN.md +2151 -0
- tactus-0.35.0/docs/SANDBOXING.md +553 -0
- tactus-0.35.0/docs/TOOLS.md +943 -0
- tactus-0.35.0/docs/TOOL_ROADMAP.md +1266 -0
- tactus-0.35.0/docs/archive/CHECKPOINT_RESUME_STATUS.md +187 -0
- tactus-0.35.0/docs/archive/CHECKPOINT_TESTING_PLAN.md +316 -0
- tactus-0.35.0/docs/archive/CONTROL_LOOP_INTEGRATION.md +569 -0
- tactus-0.35.0/docs/archive/HITL_CHECKPOINT_FIX_COMPLETE.md +161 -0
- tactus-0.35.0/docs/archive/HITL_FIX_SUMMARY.md +261 -0
- tactus-0.35.0/docs/archive/LLM_CHECKPOINTING_COMPLETE.md +228 -0
- tactus-0.35.0/docs/development-mode.md +128 -0
- tactus-0.35.0/docs_output/classify.html +489 -0
- tactus-0.35.0/docs_output/index.html +256 -0
- tactus-0.35.0/examples/.tactus/config.yml +21 -0
- tactus-0.35.0/examples/.tactus/config.yml.example +12 -0
- tactus-0.35.0/examples/01-basics-hello-world.tac +18 -0
- tactus-0.35.0/examples/02-basics-simple-logic.tac +56 -0
- tactus-0.35.0/examples/03-basics-parameters.tac +54 -0
- tactus-0.35.0/examples/04-basics-simple-agent.tac +63 -0
- tactus-0.35.0/examples/05-basics-multi-model.tac +103 -0
- tactus-0.35.0/examples/06-basics-streaming.tac +45 -0
- tactus-0.35.0/examples/07-basics-bedrock.tac +90 -0
- tactus-0.35.0/examples/08-basics-models.tac +257 -0
- tactus-0.35.0/examples/09-basics-google-gemini.tac +154 -0
- tactus-0.35.0/examples/10-feature-state.tac +58 -0
- tactus-0.35.0/examples/11-feature-message-history-transforms.tac +84 -0
- tactus-0.35.0/examples/11-feature-message-history.tac +66 -0
- tactus-0.35.0/examples/12-feature-structured-output.tac +74 -0
- tactus-0.35.0/examples/13-feature-session.tac +66 -0
- tactus-0.35.0/examples/14-feature-per-turn-tools-simple.tac +68 -0
- tactus-0.35.0/examples/14-feature-per-turn-tools.tac +131 -0
- tactus-0.35.0/examples/15-feature-local-tools.tac +111 -0
- tactus-0.35.0/examples/16-feature-toolsets-advanced.tac +164 -0
- tactus-0.35.0/examples/17-feature-toolsets-dsl.tac +120 -0
- tactus-0.35.0/examples/18-feature-lua-tools-individual.tac +139 -0
- tactus-0.35.0/examples/18-feature-lua-tools-inline.tac +173 -0
- tactus-0.35.0/examples/18-feature-lua-tools-toolset.tac +189 -0
- tactus-0.35.0/examples/19-feature-direct-tool-calls.tac +146 -0
- tactus-0.35.0/examples/20-bdd-complete.tac +111 -0
- tactus-0.35.0/examples/21-bdd-passing.tac +80 -0
- tactus-0.35.0/examples/22-bdd-fuzzy-matching.tac +32 -0
- tactus-0.35.0/examples/30-eval-simple.tac +73 -0
- tactus-0.35.0/examples/31-eval-demo.tac +96 -0
- tactus-0.35.0/examples/32-eval-success-rate.tac +122 -0
- tactus-0.35.0/examples/33-eval-thresholds.tac +96 -0
- tactus-0.35.0/examples/34-eval-dataset.tac +96 -0
- tactus-0.35.0/examples/35-eval-trace.tac +142 -0
- tactus-0.35.0/examples/36-eval-advanced.tac +89 -0
- tactus-0.35.0/examples/37-eval-comprehensive.tac +137 -0
- tactus-0.35.0/examples/39-model-simple.tac +42 -0
- tactus-0.35.0/examples/40-mcp-test.tac +114 -0
- tactus-0.35.0/examples/40-model-text-classifier.tac +80 -0
- tactus-0.35.0/examples/41-mcp-simple.tac +75 -0
- tactus-0.35.0/examples/41-model-pytorch.tac +69 -0
- tactus-0.35.0/examples/43-sub-procedure-simple.tac +54 -0
- tactus-0.35.0/examples/44-sub-procedure-composition.tac +89 -0
- tactus-0.35.0/examples/45-sub-procedure-recursive.tac +37 -0
- tactus-0.35.0/examples/46-checkpoint-explicit.tac +51 -0
- tactus-0.35.0/examples/47-checkpoint-expensive-ops.tac +46 -0
- tactus-0.35.0/examples/48-script-mode-simple.tac +31 -0
- tactus-0.35.0/examples/50-inputs-showcase.tac +77 -0
- tactus-0.35.0/examples/51-inputs-calculator.tac +94 -0
- tactus-0.35.0/examples/52-file-io-basics.tac +93 -0
- tactus-0.35.0/examples/53-tsv-file-io.tac +87 -0
- tactus-0.35.0/examples/54-json-file-io.tac +141 -0
- tactus-0.35.0/examples/55-parquet-file-io.tac +129 -0
- tactus-0.35.0/examples/56-hdf5-file-io.tac +109 -0
- tactus-0.35.0/examples/57-excel-file-io.tac +154 -0
- tactus-0.35.0/examples/58-text-file-io.tac +224 -0
- tactus-0.35.0/examples/60-tool-sources.tac +138 -0
- tactus-0.35.0/examples/61-inline-toolset-lua.tac +160 -0
- tactus-0.35.0/examples/62-mcp-toolset-by-server.tac +183 -0
- tactus-0.35.0/examples/63-toolset-import-from-file.tac +159 -0
- tactus-0.35.0/examples/64-require-modules.tac +57 -0
- tactus-0.35.0/examples/65-optional-state-demo.tac +110 -0
- tactus-0.35.0/examples/66-host-tools-via-broker.tac +36 -0
- tactus-0.35.0/examples/67-host-tool-source.tac +41 -0
- tactus-0.35.0/examples/70-mocking-static.tac +150 -0
- tactus-0.35.0/examples/71-mocking-temporal.tac +156 -0
- tactus-0.35.0/examples/72-mocking-conditional.tac +178 -0
- tactus-0.35.0/examples/90-hitl-debug.tac +20 -0
- tactus-0.35.0/examples/90-hitl-simple.tac +84 -0
- tactus-0.35.0/examples/90-hitl-test-simple.tac +18 -0
- tactus-0.35.0/examples/90-hitl-ultra-debug.tac +38 -0
- tactus-0.35.0/examples/90-super-simple.tac +9 -0
- tactus-0.35.0/examples/90-test-params.tac +17 -0
- tactus-0.35.0/examples/91-control-loop-demo.tac +100 -0
- tactus-0.35.0/examples/92-test-inputs-simple.tac +100 -0
- tactus-0.35.0/examples/92-test-inputs.tac +109 -0
- tactus-0.35.0/examples/92-test-multiple.tac +109 -0
- tactus-0.35.0/examples/93-test-ide-hitl.tac +61 -0
- tactus-0.35.0/examples/93-test-individual-hitl.tac +89 -0
- tactus-0.35.0/examples/93-test-input-summary.tac +49 -0
- tactus-0.35.0/examples/94-test-custom-components.tac +69 -0
- tactus-0.35.0/examples/95-agent-hitl.tac +150 -0
- tactus-0.35.0/examples/99-misc-test-loading.tac +30 -0
- tactus-0.35.0/examples/README.md +483 -0
- tactus-0.35.0/examples/agent_test.tac +22 -0
- tactus-0.35.0/examples/classify_test.tac +34 -0
- tactus-0.35.0/examples/fuzzy_matching_demo.tac +308 -0
- tactus-0.35.0/examples/fuzzy_matching_demo_simple_spec.tac +77 -0
- tactus-0.35.0/examples/fuzzy_simple_test.tac +63 -0
- tactus-0.35.0/examples/hitl_toolset.lua +34 -0
- tactus-0.35.0/examples/llm_classify_binary.tac +94 -0
- tactus-0.35.0/examples/llm_classify_multiclass.tac +98 -0
- tactus-0.35.0/examples/llm_classify_with_metadata.tac +102 -0
- tactus-0.35.0/examples/test-raw-module.tac +20 -0
- tactus-0.35.0/examples/test-raw-streaming.tac +20 -0
- tactus-0.35.0/examples/test-resume-basic.tac +33 -0
- tactus-0.35.0/examples/test-resume-hitl-types.tac +73 -0
- tactus-0.35.0/examples/test-resume-llm.tac +52 -0
- tactus-0.35.0/examples/test-resume-many-checkpoints.tac +48 -0
- tactus-0.35.0/examples/test-resume-mixed.tac +110 -0
- tactus-0.35.0/examples/test-resume-multi-hitl.tac +53 -0
- tactus-0.35.0/examples/test-resume-timeout.tac +38 -0
- tactus-0.35.0/examples/test-temperature-multi-calls.tac +34 -0
- tactus-0.35.0/examples/test-temperature-variation.tac +10 -0
- tactus-0.35.0/examples/with_dependencies/simple_http_test.tac +53 -0
- tactus-0.35.0/examples/with_dependencies/time_lookup.tac +67 -0
- tactus-0.35.0/features/17_lua_dsl_validation.feature +147 -0
- tactus-0.35.0/features/18_example_procedures.feature +62 -0
- tactus-0.35.0/features/20_parameters.feature +143 -0
- tactus-0.35.0/features/21_outputs.feature +145 -0
- tactus-0.35.0/features/23_prompts.feature +99 -0
- tactus-0.35.0/features/24_bdd_specifications.feature +148 -0
- tactus-0.35.0/features/25_bdd_custom_steps.feature +113 -0
- tactus-0.35.0/features/26_bdd_evaluation.feature +129 -0
- tactus-0.35.0/features/30_session_filters.feature +204 -0
- tactus-0.35.0/features/32_result_object.feature +39 -0
- tactus-0.35.0/features/57_chat_assistant.feature +60 -0
- tactus-0.35.0/features/60_formatting.feature +58 -0
- tactus-0.35.0/features/61_classify_primitive.feature +193 -0
- tactus-0.35.0/features/61_cli_run_exit_codes.feature +40 -0
- tactus-0.35.0/features/62_cli_info.feature +26 -0
- tactus-0.35.0/features/67_message_history_transforms.feature +21 -0
- tactus-0.35.0/features/68_ide_file_tools.feature +38 -0
- tactus-0.35.0/features/69_ide_assistant_service.feature +25 -0
- tactus-0.35.0/features/70_ide_chat_api.feature +52 -0
- tactus-0.35.0/features/71_ide_config_api.feature +39 -0
- tactus-0.35.0/features/documentation/Lua DSL/README.md +1057 -0
- tactus-0.35.0/features/steps/chat_assistant_steps.py +160 -0
- tactus-0.35.0/features/steps/classify_primitive_steps.py +420 -0
- tactus-0.35.0/features/steps/cli_info_steps.py +29 -0
- tactus-0.35.0/features/steps/cli_run_steps.py +38 -0
- tactus-0.35.0/features/steps/example_procedures_steps.py +197 -0
- tactus-0.35.0/features/steps/formatting_steps.py +224 -0
- tactus-0.35.0/features/steps/human_in_the_loop_steps.py +315 -0
- tactus-0.35.0/features/steps/ide_assistant_service_steps.py +141 -0
- tactus-0.35.0/features/steps/ide_chat_api_steps.py +204 -0
- tactus-0.35.0/features/steps/ide_config_api_steps.py +123 -0
- tactus-0.35.0/features/steps/ide_file_tools_steps.py +161 -0
- tactus-0.35.0/features/steps/result_and_output_steps.py +254 -0
- tactus-0.35.0/features/steps/support/__init__.py +17 -0
- tactus-0.35.0/features/steps/support/harnesses.py +574 -0
- tactus-0.35.0/planning/BROKER_AND_TOOL_RUNNERS.md +617 -0
- tactus-0.35.0/planning/CONVERSATION_HISTORY_TRANSFORMS.md +102 -0
- tactus-0.35.0/planning/FORMATTER.md +48 -0
- tactus-0.35.0/pyproject.toml +143 -0
- tactus-0.35.0/scripts/run_coverage.sh +49 -0
- tactus-0.35.0/scripts/run_precommit_suite.sh +61 -0
- tactus-0.35.0/scripts/timeout.py +49 -0
- tactus-0.35.0/tactus/__init__.py +49 -0
- tactus-0.35.0/tactus/adapters/__init__.py +26 -0
- tactus-0.35.0/tactus/adapters/broker_log.py +172 -0
- tactus-0.35.0/tactus/adapters/channels/__init__.py +155 -0
- tactus-0.35.0/tactus/adapters/channels/base.py +183 -0
- tactus-0.35.0/tactus/adapters/channels/broker.py +209 -0
- tactus-0.35.0/tactus/adapters/channels/cli.py +452 -0
- tactus-0.35.0/tactus/adapters/channels/host.py +234 -0
- tactus-0.35.0/tactus/adapters/channels/ipc.py +348 -0
- tactus-0.35.0/tactus/adapters/channels/sse.py +323 -0
- tactus-0.35.0/tactus/adapters/cli_hitl.py +411 -0
- tactus-0.35.0/tactus/adapters/cli_log.py +223 -0
- tactus-0.35.0/tactus/adapters/control_loop.py +918 -0
- tactus-0.35.0/tactus/adapters/cost_collector_log.py +56 -0
- tactus-0.35.0/tactus/adapters/file_storage.py +404 -0
- tactus-0.35.0/tactus/adapters/http_callback_log.py +119 -0
- tactus-0.35.0/tactus/adapters/ide_log.py +85 -0
- tactus-0.35.0/tactus/adapters/lua_tools.py +335 -0
- tactus-0.35.0/tactus/adapters/mcp.py +286 -0
- tactus-0.35.0/tactus/adapters/mcp_manager.py +212 -0
- tactus-0.35.0/tactus/adapters/memory.py +53 -0
- tactus-0.35.0/tactus/adapters/plugins.py +419 -0
- tactus-0.35.0/tactus/backends/http_backend.py +57 -0
- tactus-0.35.0/tactus/broker/__init__.py +12 -0
- tactus-0.35.0/tactus/broker/client.py +274 -0
- tactus-0.35.0/tactus/broker/protocol.py +183 -0
- tactus-0.35.0/tactus/broker/server.py +1502 -0
- tactus-0.35.0/tactus/broker/stdio.py +12 -0
- tactus-0.35.0/tactus/cli/app.py +2510 -0
- tactus-0.35.0/tactus/cli/control.py +393 -0
- tactus-0.35.0/tactus/core/config_manager.py +863 -0
- tactus-0.35.0/tactus/core/dependencies/registry.py +198 -0
- tactus-0.35.0/tactus/core/dsl_stubs.py +2260 -0
- tactus-0.35.0/tactus/core/exceptions.py +75 -0
- tactus-0.35.0/tactus/core/execution_context.py +777 -0
- tactus-0.35.0/tactus/core/lua_sandbox.py +515 -0
- tactus-0.35.0/tactus/core/message_history_manager.py +331 -0
- tactus-0.35.0/tactus/core/mocking.py +300 -0
- tactus-0.35.0/tactus/core/output_validator.py +296 -0
- tactus-0.35.0/tactus/core/registry.py +530 -0
- tactus-0.35.0/tactus/core/runtime.py +3150 -0
- tactus-0.35.0/tactus/core/template_resolver.py +142 -0
- tactus-0.35.0/tactus/core/yaml_parser.py +311 -0
- tactus-0.35.0/tactus/docker/Dockerfile +61 -0
- tactus-0.35.0/tactus/docker/Dockerfile.pypi +49 -0
- tactus-0.35.0/tactus/docker/entrypoint.sh +69 -0
- tactus-0.35.0/tactus/docs/__init__.py +33 -0
- tactus-0.35.0/tactus/docs/extractor.py +327 -0
- tactus-0.35.0/tactus/docs/html_renderer.py +72 -0
- tactus-0.35.0/tactus/docs/models.py +121 -0
- tactus-0.35.0/tactus/docs/templates/base.html +204 -0
- tactus-0.35.0/tactus/docs/templates/index.html +58 -0
- tactus-0.35.0/tactus/docs/templates/module.html +96 -0
- tactus-0.35.0/tactus/dspy/agent.py +1525 -0
- tactus-0.35.0/tactus/dspy/broker_lm.py +232 -0
- tactus-0.35.0/tactus/dspy/config.py +223 -0
- tactus-0.35.0/tactus/dspy/history.py +197 -0
- tactus-0.35.0/tactus/dspy/module.py +530 -0
- tactus-0.35.0/tactus/dspy/prediction.py +318 -0
- tactus-0.35.0/tactus/dspy/signature.py +184 -0
- tactus-0.35.0/tactus/formatting/__init__.py +7 -0
- tactus-0.35.0/tactus/formatting/formatter.py +437 -0
- tactus-0.35.0/tactus/ide/config_server.py +536 -0
- tactus-0.35.0/tactus/ide/server.py +2588 -0
- tactus-0.35.0/tactus/primitives/__init__.py +49 -0
- tactus-0.35.0/tactus/primitives/control.py +172 -0
- tactus-0.35.0/tactus/primitives/file.py +231 -0
- tactus-0.35.0/tactus/primitives/handles.py +390 -0
- tactus-0.35.0/tactus/primitives/host.py +96 -0
- tactus-0.35.0/tactus/primitives/human.py +931 -0
- tactus-0.35.0/tactus/primitives/json.py +188 -0
- tactus-0.35.0/tactus/primitives/log.py +187 -0
- tactus-0.35.0/tactus/primitives/message_history.py +411 -0
- tactus-0.35.0/tactus/primitives/model.py +169 -0
- tactus-0.35.0/tactus/primitives/procedure.py +586 -0
- tactus-0.35.0/tactus/primitives/procedure_callable.py +325 -0
- tactus-0.35.0/tactus/primitives/retry.py +157 -0
- tactus-0.35.0/tactus/primitives/session.py +165 -0
- tactus-0.35.0/tactus/primitives/state.py +193 -0
- tactus-0.35.0/tactus/primitives/step.py +205 -0
- tactus-0.35.0/tactus/primitives/system.py +105 -0
- tactus-0.35.0/tactus/primitives/tool.py +388 -0
- tactus-0.35.0/tactus/primitives/tool_handle.py +301 -0
- tactus-0.35.0/tactus/primitives/toolset.py +232 -0
- tactus-0.35.0/tactus/protocols/__init__.py +63 -0
- tactus-0.35.0/tactus/protocols/config.py +97 -0
- tactus-0.35.0/tactus/protocols/control.py +427 -0
- tactus-0.35.0/tactus/protocols/log_handler.py +27 -0
- tactus-0.35.0/tactus/protocols/models.py +355 -0
- tactus-0.35.0/tactus/protocols/notification.py +207 -0
- tactus-0.35.0/tactus/protocols/result.py +33 -0
- tactus-0.35.0/tactus/sandbox/config.py +171 -0
- tactus-0.35.0/tactus/sandbox/container_runner.py +1221 -0
- tactus-0.35.0/tactus/sandbox/docker_manager.py +456 -0
- tactus-0.35.0/tactus/sandbox/entrypoint.py +255 -0
- tactus-0.35.0/tactus/sandbox/protocol.py +216 -0
- tactus-0.35.0/tactus/stdlib/README.md +77 -0
- tactus-0.35.0/tactus/stdlib/__init__.py +36 -0
- tactus-0.35.0/tactus/stdlib/classify/__init__.py +165 -0
- tactus-0.35.0/tactus/stdlib/classify/classify.spec.tac +195 -0
- tactus-0.35.0/tactus/stdlib/classify/classify.tac +257 -0
- tactus-0.35.0/tactus/stdlib/classify/fuzzy.py +282 -0
- tactus-0.35.0/tactus/stdlib/classify/llm.py +317 -0
- tactus-0.35.0/tactus/stdlib/classify/primitive.py +287 -0
- tactus-0.35.0/tactus/stdlib/core/__init__.py +57 -0
- tactus-0.35.0/tactus/stdlib/core/base.py +320 -0
- tactus-0.35.0/tactus/stdlib/core/confidence.py +211 -0
- tactus-0.35.0/tactus/stdlib/core/models.py +161 -0
- tactus-0.35.0/tactus/stdlib/core/retry.py +171 -0
- tactus-0.35.0/tactus/stdlib/core/validation.py +271 -0
- tactus-0.35.0/tactus/stdlib/extract/__init__.py +125 -0
- tactus-0.35.0/tactus/stdlib/extract/llm.py +330 -0
- tactus-0.35.0/tactus/stdlib/extract/primitive.py +256 -0
- tactus-0.35.0/tactus/stdlib/io/fs.py +154 -0
- tactus-0.35.0/tactus/stdlib/loader.py +274 -0
- tactus-0.35.0/tactus/stdlib/tac/tactus/classify/base.tac +51 -0
- tactus-0.35.0/tactus/stdlib/tac/tactus/classify/fuzzy.tac +87 -0
- tactus-0.35.0/tactus/stdlib/tac/tactus/classify/index.md +77 -0
- tactus-0.35.0/tactus/stdlib/tac/tactus/classify/init.tac +29 -0
- tactus-0.35.0/tactus/stdlib/tac/tactus/classify/llm.tac +150 -0
- tactus-0.35.0/tactus/stdlib/tac/tactus/classify.spec.tac +191 -0
- tactus-0.35.0/tactus/stdlib/tac/tactus/extract/base.tac +138 -0
- tactus-0.35.0/tactus/stdlib/tac/tactus/extract/index.md +96 -0
- tactus-0.35.0/tactus/stdlib/tac/tactus/extract/init.tac +27 -0
- tactus-0.35.0/tactus/stdlib/tac/tactus/extract/llm.tac +201 -0
- tactus-0.35.0/tactus/stdlib/tac/tactus/extract.spec.tac +153 -0
- tactus-0.35.0/tactus/stdlib/tac/tactus/generate/base.tac +142 -0
- tactus-0.35.0/tactus/stdlib/tac/tactus/generate/index.md +195 -0
- tactus-0.35.0/tactus/stdlib/tac/tactus/generate/init.tac +28 -0
- tactus-0.35.0/tactus/stdlib/tac/tactus/generate/llm.tac +169 -0
- tactus-0.35.0/tactus/stdlib/tac/tactus/generate.spec.tac +210 -0
- tactus-0.35.0/tactus/stdlib/tac/tactus/tools/done.tac +33 -0
- tactus-0.35.0/tactus/stdlib/tac/tactus/tools/log.tac +50 -0
- tactus-0.35.0/tactus/testing/README.md +273 -0
- tactus-0.35.0/tactus/testing/behave_integration.py +544 -0
- tactus-0.35.0/tactus/testing/context.py +485 -0
- tactus-0.35.0/tactus/testing/evaluation_runner.py +221 -0
- tactus-0.35.0/tactus/testing/gherkin_parser.py +133 -0
- tactus-0.35.0/tactus/testing/mock_agent.py +315 -0
- tactus-0.35.0/tactus/testing/mock_hitl.py +170 -0
- tactus-0.35.0/tactus/testing/mock_tools.py +132 -0
- tactus-0.35.0/tactus/testing/models.py +114 -0
- tactus-0.35.0/tactus/testing/pydantic_eval_runner.py +508 -0
- tactus-0.35.0/tactus/testing/steps/builtin.py +901 -0
- tactus-0.35.0/tactus/testing/steps/custom.py +128 -0
- tactus-0.35.0/tactus/testing/steps/registry.py +67 -0
- tactus-0.35.0/tactus/testing/test_runner.py +495 -0
- tactus-0.35.0/tactus/utils/asyncio_helpers.py +27 -0
- tactus-0.35.0/tactus/utils/cost_calculator.py +72 -0
- tactus-0.35.0/tactus/utils/model_pricing.py +131 -0
- tactus-0.35.0/tactus/utils/safe_file_library.py +526 -0
- tactus-0.35.0/tactus/utils/safe_libraries.py +234 -0
- tactus-0.35.0/tactus/validation/error_listener.py +34 -0
- tactus-0.35.0/tactus/validation/semantic_visitor.py +882 -0
- tactus-0.35.0/tactus/validation/validator.py +196 -0
- tactus-0.35.0/tactus-desktop/BUILD_GUIDE.md +222 -0
- tactus-0.35.0/tactus-desktop/DISTRIBUTION.md +205 -0
- tactus-0.35.0/tactus-desktop/ELECTRON_INTEGRATION.md +206 -0
- tactus-0.35.0/tactus-desktop/README.md +124 -0
- tactus-0.35.0/tactus-desktop/backend/tactus_backend.spec +114 -0
- tactus-0.35.0/tactus-desktop/package-lock.json +4155 -0
- tactus-0.35.0/tactus-desktop/package.json +90 -0
- tactus-0.35.0/tactus-desktop/preload/preload.ts +24 -0
- tactus-0.35.0/tactus-desktop/resources/app-icon.icns +0 -0
- tactus-0.35.0/tactus-desktop/resources/app-icon.ico +0 -0
- tactus-0.35.0/tactus-desktop/resources/app-icon.png +0 -0
- tactus-0.35.0/tactus-desktop/scripts/build-backend.mjs +102 -0
- tactus-0.35.0/tactus-desktop/scripts/generate-icons.sh +95 -0
- tactus-0.35.0/tactus-desktop/scripts/test-ci-build.sh +74 -0
- tactus-0.35.0/tactus-desktop/src/main.ts +100 -0
- tactus-0.35.0/tactus-desktop/src/menu.ts +135 -0
- tactus-0.35.0/tactus-desktop/src/preferences-window.ts +47 -0
- tactus-0.35.0/tactus-ide/backend/assistant_service.py +444 -0
- tactus-0.35.0/tactus-ide/backend/assistant_tools.py +397 -0
- tactus-0.35.0/tactus-ide/backend/chat_server.py +339 -0
- tactus-0.35.0/tactus-ide/backend/config_server.py +465 -0
- tactus-0.35.0/tactus-ide/backend/text_editor_tool.py +172 -0
- tactus-0.35.0/tactus-ide/dev.sh +160 -0
- tactus-0.35.0/tactus-ide/frontend/.storybook/main.ts +29 -0
- tactus-0.35.0/tactus-ide/frontend/components.json +20 -0
- tactus-0.35.0/tactus-ide/frontend/package-lock.json +10720 -0
- tactus-0.35.0/tactus-ide/frontend/package.json +75 -0
- tactus-0.35.0/tactus-ide/frontend/postcss.config.js +6 -0
- tactus-0.35.0/tactus-ide/frontend/src/App.tsx +1183 -0
- tactus-0.35.0/tactus-ide/frontend/src/commands/registry.ts +161 -0
- tactus-0.35.0/tactus-ide/frontend/src/components/AboutDialog.tsx +138 -0
- tactus-0.35.0/tactus-ide/frontend/src/components/AuthErrorDialog.tsx +69 -0
- tactus-0.35.0/tactus-ide/frontend/src/components/ChatSidebar.tsx +24 -0
- tactus-0.35.0/tactus-ide/frontend/src/components/CollapsibleRun.tsx +151 -0
- tactus-0.35.0/tactus-ide/frontend/src/components/FileTree.tsx +191 -0
- tactus-0.35.0/tactus-ide/frontend/src/components/MessageFeed.tsx +135 -0
- tactus-0.35.0/tactus-ide/frontend/src/components/PreferencesView.tsx +305 -0
- tactus-0.35.0/tactus-ide/frontend/src/components/ResizeHandle.tsx +79 -0
- tactus-0.35.0/tactus-ide/frontend/src/components/ResultsSidebar.tsx +324 -0
- tactus-0.35.0/tactus-ide/frontend/src/components/ai-elements/confirmation.tsx +182 -0
- tactus-0.35.0/tactus-ide/frontend/src/components/chat/ChatInterface.tsx +100 -0
- tactus-0.35.0/tactus-ide/frontend/src/components/chat/MessageInput.tsx +54 -0
- tactus-0.35.0/tactus-ide/frontend/src/components/chat/MessageList.tsx +97 -0
- tactus-0.35.0/tactus-ide/frontend/src/components/events/EventRenderer.tsx +100 -0
- tactus-0.35.0/tactus-ide/frontend/src/components/events/HITLEventComponent.stories.tsx +306 -0
- tactus-0.35.0/tactus-ide/frontend/src/components/events/HITLEventComponent.tsx +388 -0
- tactus-0.35.0/tactus-ide/frontend/src/components/hitl/registry.ts +178 -0
- tactus-0.35.0/tactus-ide/frontend/src/components/hitl/standard-library/builtin/ApprovalComponent.tsx +91 -0
- tactus-0.35.0/tactus-ide/frontend/src/components/hitl/standard-library/builtin/InputComponent.tsx +67 -0
- tactus-0.35.0/tactus-ide/frontend/src/components/hitl/standard-library/builtin/SelectComponent.tsx +63 -0
- tactus-0.35.0/tactus-ide/frontend/src/components/hitl/standard-library/builtin/index.ts +11 -0
- tactus-0.35.0/tactus-ide/frontend/src/components/hitl/standard-library/index.ts +8 -0
- tactus-0.35.0/tactus-ide/frontend/src/components/hitl/standard-library/selectors/ImageSelectorComponent.tsx +117 -0
- tactus-0.35.0/tactus-ide/frontend/src/components/hitl/standard-library/selectors/index.ts +5 -0
- tactus-0.35.0/tactus-ide/frontend/src/components/hitl/types.ts +20 -0
- tactus-0.35.0/tactus-ide/frontend/src/components/preferences/ConfigFieldView.tsx +176 -0
- tactus-0.35.0/tactus-ide/frontend/src/components/preferences/SourceBadge.tsx +254 -0
- tactus-0.35.0/tactus-ide/frontend/src/components/preferences/YamlCodeEditor.tsx +123 -0
- tactus-0.35.0/tactus-ide/frontend/src/components/ui/ai/prompt-input.tsx +109 -0
- tactus-0.35.0/tactus-ide/frontend/src/components/ui/alert.tsx +59 -0
- tactus-0.35.0/tactus-ide/frontend/src/components/ui/badge.tsx +36 -0
- tactus-0.35.0/tactus-ide/frontend/src/components/ui/button.tsx +57 -0
- tactus-0.35.0/tactus-ide/frontend/src/components/ui/dropdown-menu.tsx +114 -0
- tactus-0.35.0/tactus-ide/frontend/src/components/ui/label.tsx +24 -0
- tactus-0.35.0/tactus-ide/frontend/src/components/ui/logo.tsx +22 -0
- tactus-0.35.0/tactus-ide/frontend/src/components/ui/select.tsx +158 -0
- tactus-0.35.0/tactus-ide/frontend/src/components/ui/switch.tsx +27 -0
- tactus-0.35.0/tactus-ide/frontend/src/components/ui/tooltip.tsx +28 -0
- tactus-0.35.0/tactus-ide/frontend/src/hooks/useChatSSE.ts +204 -0
- tactus-0.35.0/tactus-ide/frontend/src/hooks/useEventStream.ts +401 -0
- tactus-0.35.0/tactus-ide/frontend/src/main.tsx +62 -0
- tactus-0.35.0/tactus-ide/frontend/src/types/events.ts +403 -0
- tactus-0.35.0/tactus-ide/frontend/src/types/preferences.ts +128 -0
- tactus-0.35.0/tactus-ide/frontend/src/utils/clipboard.ts +17 -0
- tactus-0.35.0/tactus-ide/frontend/src/utils/runExport.ts +39 -0
- tactus-0.35.0/tactus-ide/frontend/src/utils/yamlSync.ts +77 -0
- tactus-0.35.0/tactus-ide/frontend/tests/runExport.test.ts +52 -0
- tactus-0.35.0/tactus-ide/frontend/tsconfig.json +48 -0
- tactus-0.35.0/tactus-ide/frontend/vendor/tactus-hitl-components/package.json +9 -0
- tactus-0.35.0/tactus-ide/frontend/vendor/tactus-hitl-components/src/index.tsx +15 -0
- tactus-0.35.0/tactus-ide/frontend/vendor/tactus-hitl-components/src/styles.css +1 -0
- tactus-0.35.0/tactus-ide/frontend/vite.config.ts +37 -0
- tactus-0.35.0/test-ci.sh +5 -0
- tactus-0.35.0/test_classify_loading.tac +44 -0
- tactus-0.35.0/test_run_inputs.sh +14 -0
- tactus-0.35.0/tests/adapters/channels/test_base_channel.py +130 -0
- tactus-0.35.0/tests/adapters/channels/test_broker_channel.py +130 -0
- tactus-0.35.0/tests/adapters/channels/test_channels_init.py +146 -0
- tactus-0.35.0/tests/adapters/channels/test_cli_channel.py +862 -0
- tactus-0.35.0/tests/adapters/channels/test_host_channel.py +165 -0
- tactus-0.35.0/tests/adapters/channels/test_ipc_channel.py +372 -0
- tactus-0.35.0/tests/adapters/channels/test_sse_channel.py +194 -0
- tactus-0.35.0/tests/adapters/test_broker_log.py +185 -0
- tactus-0.35.0/tests/adapters/test_cli_hitl_handler.py +559 -0
- tactus-0.35.0/tests/adapters/test_cli_log_handler.py +226 -0
- tactus-0.35.0/tests/adapters/test_control_loop.py +1188 -0
- tactus-0.35.0/tests/adapters/test_file_storage.py +402 -0
- tactus-0.35.0/tests/adapters/test_log_handlers.py +147 -0
- tactus-0.35.0/tests/adapters/test_lua_tools_adapter.py +565 -0
- tactus-0.35.0/tests/adapters/test_mcp_adapter.py +314 -0
- tactus-0.35.0/tests/adapters/test_mcp_manager.py +182 -0
- tactus-0.35.0/tests/adapters/test_memory_storage.py +31 -0
- tactus-0.35.0/tests/adapters/test_plugins.py +485 -0
- tactus-0.35.0/tests/backends/test_http_backend.py +65 -0
- tactus-0.35.0/tests/backends/test_pytorch_backend.py +230 -0
- tactus-0.35.0/tests/broker/test_broker_client_extra.py +136 -0
- tactus-0.35.0/tests/broker/test_broker_client_unit.py +458 -0
- tactus-0.35.0/tests/broker/test_broker_host_tool_source.py +39 -0
- tactus-0.35.0/tests/broker/test_broker_integration.py +111 -0
- tactus-0.35.0/tests/broker/test_broker_protocol.py +297 -0
- tactus-0.35.0/tests/broker/test_broker_server_additional.py +1153 -0
- tactus-0.35.0/tests/broker/test_broker_server_anyio_handlers.py +317 -0
- tactus-0.35.0/tests/broker/test_broker_server_asyncio_handlers.py +313 -0
- tactus-0.35.0/tests/broker/test_broker_server_connection.py +69 -0
- tactus-0.35.0/tests/broker/test_broker_server_helpers.py +78 -0
- tactus-0.35.0/tests/broker/test_broker_server_unit.py +332 -0
- tactus-0.35.0/tests/broker/test_broker_server_utils.py +28 -0
- tactus-0.35.0/tests/broker/test_broker_stdio_transport.py +169 -0
- tactus-0.35.0/tests/broker/test_broker_tcp_integration.py +115 -0
- tactus-0.35.0/tests/broker/test_broker_tcp_unit.py +187 -0
- tactus-0.35.0/tests/broker/test_brokered_lm_unit.py +75 -0
- tactus-0.35.0/tests/cli/test_app_commands.py +287 -0
- tactus-0.35.0/tests/cli/test_app_helpers.py +206 -0
- tactus-0.35.0/tests/cli/test_app_inputs.py +91 -0
- tactus-0.35.0/tests/cli/test_app_run.py +1617 -0
- tactus-0.35.0/tests/cli/test_app_sandbox.py +136 -0
- tactus-0.35.0/tests/cli/test_cli.py +195 -0
- tactus-0.35.0/tests/cli/test_cli_config_loading.py +227 -0
- tactus-0.35.0/tests/cli/test_cli_control_main.py +179 -0
- tactus-0.35.0/tests/cli/test_cli_display_helpers.py +325 -0
- tactus-0.35.0/tests/cli/test_cli_format_info.py +51 -0
- tactus-0.35.0/tests/cli/test_cli_ide_main.py +262 -0
- tactus-0.35.0/tests/cli/test_cli_input_helpers.py +88 -0
- tactus-0.35.0/tests/cli/test_cli_inputs.py +417 -0
- tactus-0.35.0/tests/cli/test_cli_logging.py +62 -0
- tactus-0.35.0/tests/cli/test_cli_main_entry.py +39 -0
- tactus-0.35.0/tests/cli/test_cli_run_errors.py +57 -0
- tactus-0.35.0/tests/cli/test_cli_sandbox_validate.py +118 -0
- tactus-0.35.0/tests/cli/test_cli_stdlib_control.py +416 -0
- tactus-0.35.0/tests/cli/test_cli_test_eval_commands.py +1022 -0
- tactus-0.35.0/tests/cli/test_cli_trace_commands.py +410 -0
- tactus-0.35.0/tests/cli/test_control_cli.py +789 -0
- tactus-0.35.0/tests/cli/test_sandbox_commands.py +132 -0
- tactus-0.35.0/tests/cli/test_validate_command.py +64 -0
- tactus-0.35.0/tests/cli/test_version_command.py +19 -0
- tactus-0.35.0/tests/core/dependencies/test_registry.py +220 -0
- tactus-0.35.0/tests/core/test_config_manager.py +999 -0
- tactus-0.35.0/tests/core/test_dsl_stubs_additional.py +2494 -0
- tactus-0.35.0/tests/core/test_dsl_stubs_minimal.py +93 -0
- tactus-0.35.0/tests/core/test_dsl_stubs_utils.py +44 -0
- tactus-0.35.0/tests/core/test_execution_context.py +466 -0
- tactus-0.35.0/tests/core/test_lua_sandbox_helpers.py +304 -0
- tactus-0.35.0/tests/core/test_message_history_manager.py +299 -0
- tactus-0.35.0/tests/core/test_mocking.py +123 -0
- tactus-0.35.0/tests/core/test_output_validator.py +216 -0
- tactus-0.35.0/tests/core/test_registry_builder_errors.py +51 -0
- tactus-0.35.0/tests/core/test_runtime_dependencies.py +61 -0
- tactus-0.35.0/tests/core/test_runtime_enhance_handles.py +88 -0
- tactus-0.35.0/tests/core/test_runtime_execute_branches.py +867 -0
- tactus-0.35.0/tests/core/test_runtime_execute_workflow.py +218 -0
- tactus-0.35.0/tests/core/test_runtime_helpers.py +572 -0
- tactus-0.35.0/tests/core/test_runtime_init.py +43 -0
- tactus-0.35.0/tests/core/test_runtime_inject_primitives.py +178 -0
- tactus-0.35.0/tests/core/test_runtime_named_procedures.py +112 -0
- tactus-0.35.0/tests/core/test_runtime_output_models.py +64 -0
- tactus-0.35.0/tests/core/test_runtime_setup_agents_branches.py +233 -0
- tactus-0.35.0/tests/core/test_runtime_setup_agents_tools_output.py +674 -0
- tactus-0.35.0/tests/core/test_runtime_templates.py +116 -0
- tactus-0.35.0/tests/core/test_runtime_tool_source.py +665 -0
- tactus-0.35.0/tests/core/test_runtime_toolsets.py +852 -0
- tactus-0.35.0/tests/core/test_script_mode.py +237 -0
- tactus-0.35.0/tests/core/test_template_resolver.py +51 -0
- tactus-0.35.0/tests/core/test_yaml_parser.py +361 -0
- tactus-0.35.0/tests/docs/test_docs_extractor.py +405 -0
- tactus-0.35.0/tests/docs/test_docs_init.py +25 -0
- tactus-0.35.0/tests/docs/test_docs_models.py +19 -0
- tactus-0.35.0/tests/docs/test_html_renderer.py +58 -0
- tactus-0.35.0/tests/dspy/test_agent_execution.py +1554 -0
- tactus-0.35.0/tests/dspy/test_agent_handle.py +136 -0
- tactus-0.35.0/tests/dspy/test_agent_helpers.py +147 -0
- tactus-0.35.0/tests/dspy/test_agent_mocking.py +67 -0
- tactus-0.35.0/tests/dspy/test_agent_utilities.py +111 -0
- tactus-0.35.0/tests/dspy/test_broker_lm.py +413 -0
- tactus-0.35.0/tests/dspy/test_config.py +161 -0
- tactus-0.35.0/tests/dspy/test_config_utilities.py +80 -0
- tactus-0.35.0/tests/dspy/test_history.py +123 -0
- tactus-0.35.0/tests/dspy/test_mock_field_normalization.py +100 -0
- tactus-0.35.0/tests/dspy/test_module_parameter.py +142 -0
- tactus-0.35.0/tests/dspy/test_module_utilities.py +536 -0
- tactus-0.35.0/tests/dspy/test_prediction_messages.py +157 -0
- tactus-0.35.0/tests/dspy/test_signature.py +63 -0
- tactus-0.35.0/tests/fixtures/brave_search_mcp_server.py +36 -0
- tactus-0.35.0/tests/fixtures/filesystem_mcp_server.py +38 -0
- tactus-0.35.0/tests/ide_backend/test_assistant_service.py +468 -0
- tactus-0.35.0/tests/ide_backend/test_assistant_tools.py +291 -0
- tactus-0.35.0/tests/ide_backend/test_chat_server.py +285 -0
- tactus-0.35.0/tests/ide_backend/test_coding_assistant.py +236 -0
- tactus-0.35.0/tests/ide_backend/test_config_helpers.py +69 -0
- tactus-0.35.0/tests/ide_backend/test_config_server.py +772 -0
- tactus-0.35.0/tests/ide_backend/test_config_server_api.py +419 -0
- tactus-0.35.0/tests/ide_backend/test_events.py +51 -0
- tactus-0.35.0/tests/ide_backend/test_ide_server.py +607 -0
- tactus-0.35.0/tests/ide_backend/test_ide_server_additional.py +91 -0
- tactus-0.35.0/tests/ide_backend/test_ide_server_basics.py +117 -0
- tactus-0.35.0/tests/ide_backend/test_ide_server_error_branches.py +672 -0
- tactus-0.35.0/tests/ide_backend/test_ide_server_hitl.py +20 -0
- tactus-0.35.0/tests/ide_backend/test_ide_server_hitl_chat_stream.py +66 -0
- tactus-0.35.0/tests/ide_backend/test_ide_server_lsp_additional.py +49 -0
- tactus-0.35.0/tests/ide_backend/test_ide_server_lsp_chat.py +133 -0
- tactus-0.35.0/tests/ide_backend/test_ide_server_metadata.py +222 -0
- tactus-0.35.0/tests/ide_backend/test_ide_server_misc.py +946 -0
- tactus-0.35.0/tests/ide_backend/test_ide_server_run_stream.py +850 -0
- tactus-0.35.0/tests/ide_backend/test_ide_server_stream_errors.py +67 -0
- tactus-0.35.0/tests/ide_backend/test_ide_server_stream_failures.py +403 -0
- tactus-0.35.0/tests/ide_backend/test_ide_server_stream_success.py +458 -0
- tactus-0.35.0/tests/ide_backend/test_ide_server_trace_errors.py +46 -0
- tactus-0.35.0/tests/ide_backend/test_ide_server_traces.py +170 -0
- tactus-0.35.0/tests/ide_backend/test_ide_server_validate.py +46 -0
- tactus-0.35.0/tests/ide_backend/test_logging_capture.py +121 -0
- tactus-0.35.0/tests/ide_backend/test_lsp_server.py +219 -0
- tactus-0.35.0/tests/ide_backend/test_tactus_lsp_handler.py +154 -0
- tactus-0.35.0/tests/ide_backend/test_text_editor_tool.py +229 -0
- tactus-0.35.0/tests/primitives/test_checkpoint_primitive.py +125 -0
- tactus-0.35.0/tests/primitives/test_control_primitive.py +53 -0
- tactus-0.35.0/tests/primitives/test_file_primitive.py +88 -0
- tactus-0.35.0/tests/primitives/test_handles.py +338 -0
- tactus-0.35.0/tests/primitives/test_host_primitive.py +98 -0
- tactus-0.35.0/tests/primitives/test_human_primitive.py +388 -0
- tactus-0.35.0/tests/primitives/test_json_primitive.py +115 -0
- tactus-0.35.0/tests/primitives/test_log_primitive.py +84 -0
- tactus-0.35.0/tests/primitives/test_message_history_primitive.py +501 -0
- tactus-0.35.0/tests/primitives/test_model_primitive.py +145 -0
- tactus-0.35.0/tests/primitives/test_procedure_callable.py +514 -0
- tactus-0.35.0/tests/primitives/test_procedure_primitive.py +534 -0
- tactus-0.35.0/tests/primitives/test_retry_primitive.py +125 -0
- tactus-0.35.0/tests/primitives/test_session_primitive.py +77 -0
- tactus-0.35.0/tests/primitives/test_state_primitive.py +48 -0
- tactus-0.35.0/tests/primitives/test_step_primitive.py +99 -0
- tactus-0.35.0/tests/primitives/test_system_alert.py +71 -0
- tactus-0.35.0/tests/primitives/test_system_primitive.py +69 -0
- tactus-0.35.0/tests/primitives/test_tool_handle.py +147 -0
- tactus-0.35.0/tests/primitives/test_tool_primitive.py +319 -0
- tactus-0.35.0/tests/primitives/test_toolset_primitive.py +237 -0
- tactus-0.35.0/tests/protocols/test_protocol_models.py +86 -0
- tactus-0.35.0/tests/protocols/test_protocol_stubs.py +27 -0
- tactus-0.35.0/tests/protocols/test_protocols_misc.py +146 -0
- tactus-0.35.0/tests/protocols/test_storage_protocol.py +12 -0
- tactus-0.35.0/tests/providers/test_provider_configurations.py +63 -0
- tactus-0.35.0/tests/providers/test_providers.py +143 -0
- tactus-0.35.0/tests/sandbox/test_config.py +12 -0
- tactus-0.35.0/tests/sandbox/test_container_runner.py +815 -0
- tactus-0.35.0/tests/sandbox/test_container_runner_helpers.py +321 -0
- tactus-0.35.0/tests/sandbox/test_container_runner_run_container.py +983 -0
- tactus-0.35.0/tests/sandbox/test_docker_manager.py +624 -0
- tactus-0.35.0/tests/sandbox/test_docker_sandbox_smoke.py +98 -0
- tactus-0.35.0/tests/sandbox/test_entrypoint.py +367 -0
- tactus-0.35.0/tests/sandbox/test_protocol.py +84 -0
- tactus-0.35.0/tests/stdlib/classify/__init__.py +1 -0
- tactus-0.35.0/tests/stdlib/classify/test_classify_primitive.py +574 -0
- tactus-0.35.0/tests/stdlib/classify/test_fuzzy_algorithms.py +174 -0
- tactus-0.35.0/tests/stdlib/classify/test_fuzzy_classifier.py +261 -0
- tactus-0.35.0/tests/stdlib/classify/test_fuzzy_demo.py +251 -0
- tactus-0.35.0/tests/stdlib/classify/test_fuzzy_import_error.py +29 -0
- tactus-0.35.0/tests/stdlib/classify/test_llm_classifier_additional.py +157 -0
- tactus-0.35.0/tests/stdlib/core/test_base.py +138 -0
- tactus-0.35.0/tests/stdlib/core/test_confidence.py +38 -0
- tactus-0.35.0/tests/stdlib/core/test_models.py +22 -0
- tactus-0.35.0/tests/stdlib/core/test_retry.py +62 -0
- tactus-0.35.0/tests/stdlib/core/test_validation.py +109 -0
- tactus-0.35.0/tests/stdlib/extract/__init__.py +1 -0
- tactus-0.35.0/tests/stdlib/extract/test_extract_primitive.py +162 -0
- tactus-0.35.0/tests/stdlib/extract/test_llm_extractor.py +363 -0
- tactus-0.35.0/tests/stdlib/io/test_excel.py +46 -0
- tactus-0.35.0/tests/stdlib/io/test_excel_parquet_hdf5.py +134 -0
- tactus-0.35.0/tests/stdlib/io/test_file.py +31 -0
- tactus-0.35.0/tests/stdlib/io/test_file_csv_tsv.py +93 -0
- tactus-0.35.0/tests/stdlib/io/test_fs.py +162 -0
- tactus-0.35.0/tests/stdlib/io/test_hdf5.py +30 -0
- tactus-0.35.0/tests/stdlib/io/test_import_errors.py +42 -0
- tactus-0.35.0/tests/stdlib/io/test_serializers.py +129 -0
- tactus-0.35.0/tests/stdlib/test_loader.py +233 -0
- tactus-0.35.0/tests/test_checkpoints_integration.py +59 -0
- tactus-0.35.0/tests/test_formatter.py +337 -0
- tactus-0.35.0/tests/test_mcp_integration.py +162 -0
- tactus-0.35.0/tests/test_tracing.py +975 -0
- tactus-0.35.0/tests/testing/test_all_examples.py +405 -0
- tactus-0.35.0/tests/testing/test_behave_integration.py +127 -0
- tactus-0.35.0/tests/testing/test_behave_integration_additional.py +288 -0
- tactus-0.35.0/tests/testing/test_builtin_steps.py +350 -0
- tactus-0.35.0/tests/testing/test_builtin_steps_additional.py +351 -0
- tactus-0.35.0/tests/testing/test_builtin_steps_regex.py +31 -0
- tactus-0.35.0/tests/testing/test_context_agent_mocks.py +81 -0
- tactus-0.35.0/tests/testing/test_context_capture.py +37 -0
- tactus-0.35.0/tests/testing/test_context_edge_cases.py +249 -0
- tactus-0.35.0/tests/testing/test_context_fallbacks.py +20 -0
- tactus-0.35.0/tests/testing/test_context_helpers.py +74 -0
- tactus-0.35.0/tests/testing/test_context_internals.py +87 -0
- tactus-0.35.0/tests/testing/test_context_missing_branches.py +216 -0
- tactus-0.35.0/tests/testing/test_context_run_wrapper.py +15 -0
- tactus-0.35.0/tests/testing/test_custom_steps_additional.py +30 -0
- tactus-0.35.0/tests/testing/test_custom_steps_manager.py +100 -0
- tactus-0.35.0/tests/testing/test_e2e.py +175 -0
- tactus-0.35.0/tests/testing/test_eval_models.py +45 -0
- tactus-0.35.0/tests/testing/test_evaluation_runner.py +45 -0
- tactus-0.35.0/tests/testing/test_evaluation_runner_additional.py +96 -0
- tactus-0.35.0/tests/testing/test_evaluation_runner_edges.py +15 -0
- tactus-0.35.0/tests/testing/test_evaluators.py +183 -0
- tactus-0.35.0/tests/testing/test_evaluators_additional.py +126 -0
- tactus-0.35.0/tests/testing/test_evaluators_import_error.py +55 -0
- tactus-0.35.0/tests/testing/test_evaluators_more.py +175 -0
- tactus-0.35.0/tests/testing/test_evaluators_traceaware.py +45 -0
- tactus-0.35.0/tests/testing/test_gherkin_parser_additional.py +91 -0
- tactus-0.35.0/tests/testing/test_integration.py +117 -0
- tactus-0.35.0/tests/testing/test_mock_agent.py +102 -0
- tactus-0.35.0/tests/testing/test_mock_agent_additional.py +326 -0
- tactus-0.35.0/tests/testing/test_mock_dependencies.py +65 -0
- tactus-0.35.0/tests/testing/test_mock_dependencies_additional.py +81 -0
- tactus-0.35.0/tests/testing/test_mock_hitl.py +63 -0
- tactus-0.35.0/tests/testing/test_mock_registry.py +95 -0
- tactus-0.35.0/tests/testing/test_mock_registry_additional.py +38 -0
- tactus-0.35.0/tests/testing/test_mock_tools.py +63 -0
- tactus-0.35.0/tests/testing/test_pydantic_eval_runner.py +242 -0
- tactus-0.35.0/tests/testing/test_pydantic_eval_runner_dataset.py +53 -0
- tactus-0.35.0/tests/testing/test_pydantic_eval_runner_errors.py +106 -0
- tactus-0.35.0/tests/testing/test_pydantic_eval_runner_helpers.py +36 -0
- tactus-0.35.0/tests/testing/test_pydantic_eval_runner_import_error.py +32 -0
- tactus-0.35.0/tests/testing/test_pydantic_eval_runner_loaders.py +126 -0
- tactus-0.35.0/tests/testing/test_pydantic_eval_runner_task.py +71 -0
- tactus-0.35.0/tests/testing/test_pydantic_eval_runner_thresholds.py +84 -0
- tactus-0.35.0/tests/testing/test_pydantic_eval_runner_trace.py +59 -0
- tactus-0.35.0/tests/testing/test_runtime_integration.py +248 -0
- tactus-0.35.0/tests/testing/test_test_runner_additional.py +110 -0
- tactus-0.35.0/tests/testing/test_test_runner_helpers.py +137 -0
- tactus-0.35.0/tests/testing/test_test_runner_run.py +353 -0
- tactus-0.35.0/tests/testing/test_test_runner_statuses.py +47 -0
- tactus-0.35.0/tests/tracing/test_trace_manager_additional.py +70 -0
- tactus-0.35.0/tests/utils/test_cost_calculator.py +35 -0
- tactus-0.35.0/tests/utils/test_model_pricing.py +55 -0
- tactus-0.35.0/tests/utils/test_safe_file_library_additional.py +539 -0
- tactus-0.35.0/tests/utils/test_safe_libraries.py +93 -0
- tactus-0.35.0/tests/validation/test_semantic_visitor.py +121 -0
- tactus-0.35.0/tests/validation/test_semantic_visitor_additional.py +43 -0
- tactus-0.35.0/tests/validation/test_semantic_visitor_helpers.py +3923 -0
- tactus-0.35.0/tests/validation/test_semantic_visitor_more.py +371 -0
- tactus-0.35.0/tests/validation/test_tool_curried_syntax_disallowed.py +57 -0
- tactus-0.35.0/tests/validation/test_validator_additional.py +40 -0
- tactus-0.35.0/tests/validation/test_validator_helpers.py +28 -0
- tactus-0.22.0/.github/workflows/desktop-release.yml +0 -83
- tactus-0.22.0/.github/workflows/release.yml +0 -86
- tactus-0.22.0/.gitignore +0 -44
- tactus-0.22.0/.tactus/config.yml.example +0 -41
- tactus-0.22.0/AGENTS.md +0 -406
- tactus-0.22.0/CHANGELOG.md +0 -379
- tactus-0.22.0/IMPLEMENTATION.md +0 -1922
- tactus-0.22.0/Makefile +0 -123
- tactus-0.22.0/PKG-INFO +0 -1685
- tactus-0.22.0/README.md +0 -1634
- tactus-0.22.0/SPECIFICATION.md +0 -3258
- tactus-0.22.0/SPECIFICATION.md.bak +0 -3273
- tactus-0.22.0/TECHNICAL_DEBT.md +0 -262
- tactus-0.22.0/docs/BDD_TESTING.md +0 -792
- tactus-0.22.0/docs/CONFIGURATION.md +0 -460
- tactus-0.22.0/docs/DURABILITY.md +0 -1393
- tactus-0.22.0/docs/SANDBOXING.md +0 -499
- tactus-0.22.0/docs/TOOLS.md +0 -855
- tactus-0.22.0/docs/TOOL_ROADMAP.md +0 -1266
- tactus-0.22.0/examples/.tactus/config.yml +0 -21
- tactus-0.22.0/examples/01-basics-hello-world.tac +0 -9
- tactus-0.22.0/examples/02-basics-simple-logic.tac +0 -69
- tactus-0.22.0/examples/03-basics-parameters.tac +0 -54
- tactus-0.22.0/examples/04-basics-simple-agent.tac +0 -71
- tactus-0.22.0/examples/05-basics-multi-model.tac +0 -107
- tactus-0.22.0/examples/06-basics-streaming.tac +0 -33
- tactus-0.22.0/examples/07-basics-bedrock.tac +0 -91
- tactus-0.22.0/examples/08-basics-models.tac +0 -285
- tactus-0.22.0/examples/09-basics-google-gemini.tac +0 -154
- tactus-0.22.0/examples/10-feature-state.tac +0 -58
- tactus-0.22.0/examples/11-feature-message-history.tac +0 -73
- tactus-0.22.0/examples/12-feature-structured-output.tac +0 -83
- tactus-0.22.0/examples/13-feature-session.tac +0 -73
- tactus-0.22.0/examples/14-feature-per-turn-tools-simple.tac +0 -53
- tactus-0.22.0/examples/14-feature-per-turn-tools.tac +0 -140
- tactus-0.22.0/examples/15-feature-local-tools.tac +0 -94
- tactus-0.22.0/examples/16-feature-toolsets-advanced.tac +0 -187
- tactus-0.22.0/examples/17-feature-toolsets-dsl.tac +0 -130
- tactus-0.22.0/examples/18-feature-lua-tools-individual.tac +0 -147
- tactus-0.22.0/examples/18-feature-lua-tools-inline.tac +0 -183
- tactus-0.22.0/examples/18-feature-lua-tools-toolset.tac +0 -196
- tactus-0.22.0/examples/19-feature-direct-tool-calls.tac +0 -156
- tactus-0.22.0/examples/20-bdd-complete.tac +0 -135
- tactus-0.22.0/examples/20-bdd-complete.tac.bak +0 -122
- tactus-0.22.0/examples/20-bdd-complete.tac.bak2 +0 -122
- tactus-0.22.0/examples/21-bdd-passing.tac +0 -102
- tactus-0.22.0/examples/21-bdd-passing.tac.bak +0 -92
- tactus-0.22.0/examples/21-bdd-passing.tac.bak2 +0 -92
- tactus-0.22.0/examples/30-eval-simple.tac +0 -62
- tactus-0.22.0/examples/31-eval-demo.tac +0 -104
- tactus-0.22.0/examples/32-eval-success-rate.tac +0 -130
- tactus-0.22.0/examples/33-eval-thresholds.tac +0 -104
- tactus-0.22.0/examples/34-eval-dataset.tac +0 -104
- tactus-0.22.0/examples/35-eval-trace.tac +0 -154
- tactus-0.22.0/examples/35-eval-trace.tac.bak +0 -132
- tactus-0.22.0/examples/35-eval-trace.tac.bak2 +0 -132
- tactus-0.22.0/examples/36-eval-advanced.tac +0 -97
- tactus-0.22.0/examples/37-eval-comprehensive.tac +0 -145
- tactus-0.22.0/examples/37-eval-comprehensive.tac.bak +0 -129
- tactus-0.22.0/examples/37-eval-comprehensive.tac.bak2 +0 -129
- tactus-0.22.0/examples/39-model-simple.tac +0 -42
- tactus-0.22.0/examples/40-mcp-test.tac +0 -100
- tactus-0.22.0/examples/40-model-text-classifier.tac +0 -99
- tactus-0.22.0/examples/41-mcp-simple.tac +0 -61
- tactus-0.22.0/examples/41-model-pytorch.tac +0 -90
- tactus-0.22.0/examples/43-sub-procedure-simple.tac +0 -54
- tactus-0.22.0/examples/44-sub-procedure-composition.tac +0 -105
- tactus-0.22.0/examples/45-sub-procedure-recursive.tac +0 -37
- tactus-0.22.0/examples/46-checkpoint-explicit.tac +0 -51
- tactus-0.22.0/examples/47-checkpoint-expensive-ops.tac +0 -46
- tactus-0.22.0/examples/48-script-mode-simple.tac +0 -21
- tactus-0.22.0/examples/50-inputs-showcase.tac +0 -66
- tactus-0.22.0/examples/51-inputs-calculator.tac +0 -82
- tactus-0.22.0/examples/52-file-io-basics.tac +0 -93
- tactus-0.22.0/examples/53-tsv-file-io.tac +0 -87
- tactus-0.22.0/examples/54-json-file-io.tac +0 -141
- tactus-0.22.0/examples/55-parquet-file-io.tac +0 -129
- tactus-0.22.0/examples/56-hdf5-file-io.tac +0 -109
- tactus-0.22.0/examples/57-excel-file-io.tac +0 -154
- tactus-0.22.0/examples/58-text-file-io.tac +0 -224
- tactus-0.22.0/examples/60-tool-sources.tac +0 -122
- tactus-0.22.0/examples/61-inline-toolset-lua.tac +0 -167
- tactus-0.22.0/examples/62-mcp-toolset-by-server.tac +0 -177
- tactus-0.22.0/examples/63-toolset-import-from-file.tac +0 -167
- tactus-0.22.0/examples/64-require-modules.tac +0 -57
- tactus-0.22.0/examples/65-optional-state-demo.tac +0 -120
- tactus-0.22.0/examples/70-mocking-static.tac +0 -150
- tactus-0.22.0/examples/71-mocking-temporal.tac +0 -135
- tactus-0.22.0/examples/72-mocking-conditional.tac +0 -155
- tactus-0.22.0/examples/99-misc-test-loading.tac +0 -20
- tactus-0.22.0/examples/README.md +0 -472
- tactus-0.22.0/examples/with_dependencies/simple_http_test.tac +0 -53
- tactus-0.22.0/examples/with_dependencies/time_lookup.tac +0 -67
- tactus-0.22.0/features/14_stage_and_step_tracking.feature +0 -73
- tactus-0.22.0/features/17_lua_dsl_validation.feature +0 -144
- tactus-0.22.0/features/18_example_procedures.feature +0 -62
- tactus-0.22.0/features/20_parameters.feature +0 -144
- tactus-0.22.0/features/21_outputs.feature +0 -146
- tactus-0.22.0/features/23_prompts.feature +0 -100
- tactus-0.22.0/features/24_bdd_specifications.feature +0 -157
- tactus-0.22.0/features/25_bdd_custom_steps.feature +0 -113
- tactus-0.22.0/features/26_bdd_evaluation.feature +0 -129
- tactus-0.22.0/features/30_session_filters.feature +0 -116
- tactus-0.22.0/features/32_result_object.feature +0 -37
- tactus-0.22.0/features/documentation/Lua DSL/README.md +0 -1067
- tactus-0.22.0/features/steps/example_procedures_steps.py +0 -189
- tactus-0.22.0/features/steps/human_in_the_loop_steps.py +0 -313
- tactus-0.22.0/features/steps/result_and_output_steps.py +0 -254
- tactus-0.22.0/features/steps/stage_tracking_steps.py +0 -282
- tactus-0.22.0/features/steps/support/__init__.py +0 -19
- tactus-0.22.0/features/steps/support/harnesses.py +0 -517
- tactus-0.22.0/pyproject.toml +0 -113
- tactus-0.22.0/tactus/__init__.py +0 -49
- tactus-0.22.0/tactus/adapters/__init__.py +0 -9
- tactus-0.22.0/tactus/adapters/cli_hitl.py +0 -189
- tactus-0.22.0/tactus/adapters/cli_log.py +0 -248
- tactus-0.22.0/tactus/adapters/file_storage.py +0 -367
- tactus-0.22.0/tactus/adapters/http_callback_log.py +0 -109
- tactus-0.22.0/tactus/adapters/ide_log.py +0 -71
- tactus-0.22.0/tactus/adapters/lua_tools.py +0 -314
- tactus-0.22.0/tactus/adapters/mcp.py +0 -289
- tactus-0.22.0/tactus/adapters/mcp_manager.py +0 -169
- tactus-0.22.0/tactus/adapters/memory.py +0 -53
- tactus-0.22.0/tactus/adapters/plugins.py +0 -419
- tactus-0.22.0/tactus/backends/http_backend.py +0 -58
- tactus-0.22.0/tactus/cli/app.py +0 -2034
- tactus-0.22.0/tactus/core/config_manager.py +0 -337
- tactus-0.22.0/tactus/core/dependencies/registry.py +0 -180
- tactus-0.22.0/tactus/core/dsl_stubs.py +0 -1796
- tactus-0.22.0/tactus/core/exceptions.py +0 -66
- tactus-0.22.0/tactus/core/execution_context.py +0 -480
- tactus-0.22.0/tactus/core/lua_sandbox.py +0 -508
- tactus-0.22.0/tactus/core/message_history_manager.py +0 -236
- tactus-0.22.0/tactus/core/mocking.py +0 -286
- tactus-0.22.0/tactus/core/output_validator.py +0 -234
- tactus-0.22.0/tactus/core/registry.py +0 -504
- tactus-0.22.0/tactus/core/runtime.py +0 -2730
- tactus-0.22.0/tactus/core/template_resolver.py +0 -142
- tactus-0.22.0/tactus/core/yaml_parser.py +0 -311
- tactus-0.22.0/tactus/docker/Dockerfile +0 -57
- tactus-0.22.0/tactus/docker/entrypoint.sh +0 -68
- tactus-0.22.0/tactus/dspy/agent.py +0 -962
- tactus-0.22.0/tactus/dspy/config.py +0 -133
- tactus-0.22.0/tactus/dspy/history.py +0 -196
- tactus-0.22.0/tactus/dspy/module.py +0 -270
- tactus-0.22.0/tactus/dspy/prediction.py +0 -252
- tactus-0.22.0/tactus/dspy/signature.py +0 -185
- tactus-0.22.0/tactus/ide/server.py +0 -2290
- tactus-0.22.0/tactus/primitives/__init__.py +0 -49
- tactus-0.22.0/tactus/primitives/control.py +0 -168
- tactus-0.22.0/tactus/primitives/file.py +0 -229
- tactus-0.22.0/tactus/primitives/handles.py +0 -346
- tactus-0.22.0/tactus/primitives/human.py +0 -342
- tactus-0.22.0/tactus/primitives/json.py +0 -189
- tactus-0.22.0/tactus/primitives/log.py +0 -183
- tactus-0.22.0/tactus/primitives/message_history.py +0 -157
- tactus-0.22.0/tactus/primitives/model.py +0 -145
- tactus-0.22.0/tactus/primitives/procedure.py +0 -509
- tactus-0.22.0/tactus/primitives/procedure_callable.py +0 -282
- tactus-0.22.0/tactus/primitives/retry.py +0 -155
- tactus-0.22.0/tactus/primitives/session.py +0 -152
- tactus-0.22.0/tactus/primitives/stage.py +0 -202
- tactus-0.22.0/tactus/primitives/state.py +0 -182
- tactus-0.22.0/tactus/primitives/step.py +0 -209
- tactus-0.22.0/tactus/primitives/system.py +0 -93
- tactus-0.22.0/tactus/primitives/tool.py +0 -377
- tactus-0.22.0/tactus/primitives/tool_handle.py +0 -277
- tactus-0.22.0/tactus/primitives/toolset.py +0 -229
- tactus-0.22.0/tactus/protocols/__init__.py +0 -45
- tactus-0.22.0/tactus/protocols/config.py +0 -102
- tactus-0.22.0/tactus/protocols/log_handler.py +0 -27
- tactus-0.22.0/tactus/protocols/models.py +0 -355
- tactus-0.22.0/tactus/protocols/result.py +0 -33
- tactus-0.22.0/tactus/sandbox/config.py +0 -121
- tactus-0.22.0/tactus/sandbox/container_runner.py +0 -391
- tactus-0.22.0/tactus/sandbox/docker_manager.py +0 -321
- tactus-0.22.0/tactus/sandbox/entrypoint.py +0 -186
- tactus-0.22.0/tactus/sandbox/protocol.py +0 -222
- tactus-0.22.0/tactus/stdlib/__init__.py +0 -10
- tactus-0.22.0/tactus/stdlib/loader.py +0 -274
- tactus-0.22.0/tactus/stdlib/tac/tactus/tools/done.tac +0 -33
- tactus-0.22.0/tactus/stdlib/tac/tactus/tools/log.tac +0 -49
- tactus-0.22.0/tactus/testing/README.md +0 -288
- tactus-0.22.0/tactus/testing/behave_integration.py +0 -370
- tactus-0.22.0/tactus/testing/context.py +0 -377
- tactus-0.22.0/tactus/testing/evaluation_runner.py +0 -222
- tactus-0.22.0/tactus/testing/gherkin_parser.py +0 -134
- tactus-0.22.0/tactus/testing/mock_agent.py +0 -223
- tactus-0.22.0/tactus/testing/mock_hitl.py +0 -171
- tactus-0.22.0/tactus/testing/mock_tools.py +0 -133
- tactus-0.22.0/tactus/testing/models.py +0 -115
- tactus-0.22.0/tactus/testing/pydantic_eval_runner.py +0 -508
- tactus-0.22.0/tactus/testing/steps/builtin.py +0 -692
- tactus-0.22.0/tactus/testing/steps/custom.py +0 -69
- tactus-0.22.0/tactus/testing/steps/registry.py +0 -68
- tactus-0.22.0/tactus/testing/test_runner.py +0 -501
- tactus-0.22.0/tactus/utils/cost_calculator.py +0 -72
- tactus-0.22.0/tactus/utils/model_pricing.py +0 -132
- tactus-0.22.0/tactus/utils/safe_file_library.py +0 -502
- tactus-0.22.0/tactus/utils/safe_libraries.py +0 -234
- tactus-0.22.0/tactus/validation/error_listener.py +0 -21
- tactus-0.22.0/tactus/validation/semantic_visitor.py +0 -799
- tactus-0.22.0/tactus/validation/validator.py +0 -157
- tactus-0.22.0/tactus-desktop/README.md +0 -88
- tactus-0.22.0/tactus-desktop/backend/tactus_backend.spec +0 -101
- tactus-0.22.0/tactus-desktop/package-lock.json +0 -4123
- tactus-0.22.0/tactus-desktop/package.json +0 -88
- tactus-0.22.0/tactus-desktop/preload/preload.ts +0 -19
- tactus-0.22.0/tactus-desktop/scripts/build-backend.js +0 -88
- tactus-0.22.0/tactus-desktop/src/main.ts +0 -76
- tactus-0.22.0/tactus-desktop/src/menu.ts +0 -118
- tactus-0.22.0/tactus-ide/backend/test_lsp_server.py +0 -226
- tactus-0.22.0/tactus-ide/dev.sh +0 -164
- tactus-0.22.0/tactus-ide/frontend/.storybook/main.ts +0 -16
- tactus-0.22.0/tactus-ide/frontend/package-lock.json +0 -10360
- tactus-0.22.0/tactus-ide/frontend/package.json +0 -67
- tactus-0.22.0/tactus-ide/frontend/postcss.config.js +0 -15
- tactus-0.22.0/tactus-ide/frontend/src/App.tsx +0 -1016
- tactus-0.22.0/tactus-ide/frontend/src/commands/registry.ts +0 -145
- tactus-0.22.0/tactus-ide/frontend/src/components/ChatSidebar.tsx +0 -195
- tactus-0.22.0/tactus-ide/frontend/src/components/CollapsibleRun.tsx +0 -136
- tactus-0.22.0/tactus-ide/frontend/src/components/FileTree.tsx +0 -191
- tactus-0.22.0/tactus-ide/frontend/src/components/MessageFeed.tsx +0 -158
- tactus-0.22.0/tactus-ide/frontend/src/components/ResizeHandle.tsx +0 -70
- tactus-0.22.0/tactus-ide/frontend/src/components/ResultsSidebar.tsx +0 -278
- tactus-0.22.0/tactus-ide/frontend/src/components/events/EventRenderer.tsx +0 -95
- tactus-0.22.0/tactus-ide/frontend/src/components/ui/ai/prompt-input.tsx +0 -109
- tactus-0.22.0/tactus-ide/frontend/src/components/ui/button.tsx +0 -66
- tactus-0.22.0/tactus-ide/frontend/src/components/ui/logo.tsx +0 -579
- tactus-0.22.0/tactus-ide/frontend/src/hooks/useEventStream.ts +0 -364
- tactus-0.22.0/tactus-ide/frontend/src/main.tsx +0 -62
- tactus-0.22.0/tactus-ide/frontend/src/types/events.ts +0 -281
- tactus-0.22.0/tactus-ide/frontend/tsconfig.json +0 -43
- tactus-0.22.0/tactus-ide/frontend/vite.config.ts +0 -26
- tactus-0.22.0/tests/adapters/test_lua_tools_adapter.py +0 -379
- tactus-0.22.0/tests/adapters/test_plugins.py +0 -153
- tactus-0.22.0/tests/cli/test_cli.py +0 -121
- tactus-0.22.0/tests/cli/test_cli_inputs.py +0 -392
- tactus-0.22.0/tests/core/test_config_manager.py +0 -251
- tactus-0.22.0/tests/core/test_script_mode.py +0 -206
- tactus-0.22.0/tests/dspy/test_module_parameter.py +0 -142
- tactus-0.22.0/tests/primitives/test_checkpoint_primitive.py +0 -48
- tactus-0.22.0/tests/primitives/test_retry_primitive.py +0 -33
- tactus-0.22.0/tests/primitives/test_state_primitive.py +0 -24
- tactus-0.22.0/tests/primitives/test_system_alert.py +0 -73
- tactus-0.22.0/tests/primitives/test_tool_primitive.py +0 -208
- tactus-0.22.0/tests/stdlib/test_loader.py +0 -180
- tactus-0.22.0/tests/test_checkpoints_integration.py +0 -104
- tactus-0.22.0/tests/test_mcp_integration.py +0 -159
- tactus-0.22.0/tests/test_tracing.py +0 -666
- tactus-0.22.0/tests/testing/test_all_examples.py +0 -359
- tactus-0.22.0/tests/testing/test_e2e.py +0 -179
- tactus-0.22.0/tests/testing/test_integration.py +0 -118
- tactus-0.22.0/tests/testing/test_runtime_integration.py +0 -254
- {tactus-0.22.0 → tactus-0.35.0}/.claude/agents.md +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/LICENSE +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/behave.ini +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/docs/AGENTS.md +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/docs/FILE_IO.md +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/docs/STREAMING.md +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/examples/34-eval-dataset.jsonl +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/examples/app_config.ini +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/examples/data/sample.csv +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/examples/demo_output.json +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/examples/helpers/math_module.tac +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/examples/helpers/product.tac +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/examples/helpers/string_module.tac +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/examples/helpers/sum.tac +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/examples/helpers/text_tools.tac +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/examples/inventory_summary.tsv +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/examples/mock-config.json +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/examples/models/README.md +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/examples/models/create_sentiment_model.py +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/examples/output_summary.txt +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/examples/tools/calculations.py +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/examples/tools/data_analysis.py +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/examples/tools/search.py +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/examples/with_dependencies/README.md +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/features/01_state_management.feature +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/features/02_checkpointing.feature +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/features/03_human_in_the_loop.feature +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/features/04_control_flow.feature +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/features/05_tool_integration.feature +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/features/06_retry_logic.feature +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/features/07_file_operations.feature +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/features/08_agent_primitives.feature +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/features/09_workflow_execution.feature +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/features/10_lua_integration.feature +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/features/11_storage_backends.feature +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/features/12_json_operations.feature +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/features/13_logging.feature +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/features/15_procedure_calls.feature +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/features/16_session_management.feature +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/features/19_ide_server.feature +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/features/27_default_settings.feature +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/features/28_custom_prompts.feature +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/features/29_execution_settings.feature +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/features/31_matchers.feature +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/features/33_output_type.feature +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/features/42_model_primitive.feature +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/features/43_sub_procedure_checkpointing.feature +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/features/46_explicit_checkpoint.feature +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/features/48_script_mode.feature +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/features/51_dspy_lm_config.feature +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/features/52_dspy_signature.feature +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/features/53_dspy_module.feature +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/features/54_dspy_history.feature +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/features/55_dspy_prediction.feature +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/features/56_dspy_agent.feature +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/features/documentation/IDE_SERVER_BEHAVIOR.md +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/features/environment.py +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/features/steps/agent_primitives_steps.py +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/features/steps/checkpointing_steps.py +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/features/steps/control_flow_steps.py +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/features/steps/dspy_agent_steps.py +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/features/steps/dspy_history_steps.py +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/features/steps/dspy_lm_steps.py +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/features/steps/dspy_module_steps.py +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/features/steps/dspy_prediction_steps.py +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/features/steps/dspy_signature_steps.py +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/features/steps/file_operations_steps.py +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/features/steps/ide_server_steps.py +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/features/steps/json_operations_steps.py +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/features/steps/logging_steps.py +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/features/steps/lua_dsl_validation_steps.py +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/features/steps/lua_integration_steps.py +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/features/steps/mocking_steps.py +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/features/steps/procedure_calls_steps.py +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/features/steps/retry_logic_steps.py +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/features/steps/session_management_steps.py +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/features/steps/state_management_steps.py +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/features/steps/storage_backend_steps.py +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/features/steps/tool_integration_steps.py +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/features/steps/workflow_execution_steps.py +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/scripts/audit_examples_mocking.py +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/scripts/convert_examples.py +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/start-web-ide.sh +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus/backends/model_backend.py +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus/backends/pytorch_backend.py +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus/cli/__init__.py +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus/cli/commands/__init__.py +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus/core/__init__.py +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus/core/dependencies/__init__.py +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus/dspy/__init__.py +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus/ide/__init__.py +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus/ide/coding_assistant.py +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus/protocols/chat_recorder.py +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus/protocols/cost.py +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus/protocols/hitl.py +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus/protocols/storage.py +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus/providers/__init__.py +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus/providers/base.py +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus/providers/bedrock.py +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus/providers/google.py +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus/providers/openai.py +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus/sandbox/__init__.py +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus/stdlib/io/__init__.py +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus/stdlib/io/csv.py +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus/stdlib/io/excel.py +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus/stdlib/io/file.py +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus/stdlib/io/hdf5.py +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus/stdlib/io/json.py +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus/stdlib/io/parquet.py +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus/stdlib/io/tsv.py +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus/testing/__init__.py +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus/testing/eval_models.py +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus/testing/evaluators.py +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus/testing/events.py +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus/testing/mock_dependencies.py +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus/testing/mock_registry.py +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus/testing/steps/__init__.py +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus/tracing/__init__.py +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus/tracing/trace_manager.py +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus/utils/__init__.py +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus/validation/LuaLexerBase.py +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus/validation/LuaParserBase.py +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus/validation/README.md +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus/validation/__init__.py +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus/validation/generated/LuaLexer.interp +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus/validation/generated/LuaLexer.py +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus/validation/generated/LuaLexer.tokens +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus/validation/generated/LuaLexerBase.py +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus/validation/generated/LuaParser.interp +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus/validation/generated/LuaParser.py +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus/validation/generated/LuaParser.tokens +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus/validation/generated/LuaParserBase.py +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus/validation/generated/LuaParserVisitor.py +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus/validation/generated/__init__.py +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus/validation/grammar/LuaLexer.g4 +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus/validation/grammar/LuaParser.g4 +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus-desktop/.gitignore +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus-desktop/RUN_ELECTRON.md +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus-desktop/SETUP_COMPLETE.md +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus-desktop/backend/hook-lupa.py +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus-desktop/preload/tsconfig.json +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus-desktop/rebuild-and-test.sh +0 -0
- /tactus-0.22.0/tactus-desktop/scripts/build-frontend.js → /tactus-0.35.0/tactus-desktop/scripts/build-frontend.mjs +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus-desktop/src/backend-manager.ts +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus-desktop/tsconfig.json +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus-ide/ARCHITECTURE.md +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus-ide/CHANGELOG.md +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus-ide/DEV_MODE.md +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus-ide/QUICK_START.md +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus-ide/README.md +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus-ide/RESTART_INSTRUCTIONS.md +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus-ide/TROUBLESHOOTING.md +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus-ide/backend/README.md +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus-ide/backend/events.py +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus-ide/backend/logging_capture.py +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus-ide/backend/lsp_server.py +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus-ide/backend/requirements.txt +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus-ide/backend/tactus_lsp_handler.py +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus-ide/frontend/.storybook/preview.ts +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus-ide/frontend/.storybook/vitest.setup.ts +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus-ide/frontend/README.md +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus-ide/frontend/demo.ts +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus-ide/frontend/index.html +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus-ide/frontend/jest.config.js +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus-ide/frontend/src/Editor.tsx +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus-ide/frontend/src/LSPClient.ts +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus-ide/frontend/src/LSPClientHTTP.ts +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus-ide/frontend/src/TactusLanguage.ts +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus-ide/frontend/src/components/CheckpointSummary.tsx +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus-ide/frontend/src/components/Duration.stories.tsx +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus-ide/frontend/src/components/Duration.tsx +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus-ide/frontend/src/components/FileTree.stories.tsx +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus-ide/frontend/src/components/ProcedureInputsDisplay.stories.tsx +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus-ide/frontend/src/components/ProcedureInputsDisplay.tsx +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus-ide/frontend/src/components/ProcedureInputsModal.stories.tsx +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus-ide/frontend/src/components/ProcedureInputsModal.tsx +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus-ide/frontend/src/components/ProcedureTab.stories.tsx +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus-ide/frontend/src/components/ProcedureTab.tsx +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus-ide/frontend/src/components/ResultsSidebar.stories.tsx +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus-ide/frontend/src/components/TestOptionsModal.tsx +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus-ide/frontend/src/components/Timestamp.stories.tsx +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus-ide/frontend/src/components/Timestamp.tsx +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus-ide/frontend/src/components/TopMenuBar.stories.tsx +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus-ide/frontend/src/components/debugger/CheckpointDetails.stories.tsx +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus-ide/frontend/src/components/debugger/CheckpointDetails.tsx +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus-ide/frontend/src/components/debugger/CheckpointList.stories.tsx +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus-ide/frontend/src/components/debugger/CheckpointList.tsx +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus-ide/frontend/src/components/debugger/DebuggerPanel.stories.tsx +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus-ide/frontend/src/components/debugger/DebuggerPanel.tsx +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus-ide/frontend/src/components/debugger/RunSelector.stories.tsx +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus-ide/frontend/src/components/debugger/RunSelector.tsx +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus-ide/frontend/src/components/debugger/StatisticsPanel.stories.tsx +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus-ide/frontend/src/components/debugger/StatisticsPanel.tsx +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus-ide/frontend/src/components/events/AgentStreamingComponent.tsx +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus-ide/frontend/src/components/events/BaseEventComponent.tsx +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus-ide/frontend/src/components/events/CheckpointEventComponent.tsx +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus-ide/frontend/src/components/events/CollapsibleTestScenario.tsx +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus-ide/frontend/src/components/events/ContainerStatusEventComponent.tsx +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus-ide/frontend/src/components/events/CostEventComponent.stories.tsx +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus-ide/frontend/src/components/events/CostEventComponent.tsx +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus-ide/frontend/src/components/events/EvaluationEventComponent.stories.tsx +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus-ide/frontend/src/components/events/EvaluationEventComponent.tsx +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus-ide/frontend/src/components/events/ExecutionEventComponent.stories.tsx +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus-ide/frontend/src/components/events/ExecutionEventComponent.tsx +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus-ide/frontend/src/components/events/ExecutionSummaryEventComponent.stories.tsx +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus-ide/frontend/src/components/events/ExecutionSummaryEventComponent.tsx +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus-ide/frontend/src/components/events/LoadingEventComponent.stories.tsx +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus-ide/frontend/src/components/events/LoadingEventComponent.tsx +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus-ide/frontend/src/components/events/LogCluster.tsx +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus-ide/frontend/src/components/events/LogEventComponent.stories.tsx +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus-ide/frontend/src/components/events/LogEventComponent.tsx +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus-ide/frontend/src/components/events/OutputEventComponent.stories.tsx +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus-ide/frontend/src/components/events/OutputEventComponent.tsx +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus-ide/frontend/src/components/events/TestEventComponent.stories.tsx +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus-ide/frontend/src/components/events/TestEventComponent.tsx +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus-ide/frontend/src/components/events/TestProgressContainer.tsx +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus-ide/frontend/src/components/events/ToolCallEventComponent.tsx +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus-ide/frontend/src/components/events/ValidationEventComponent.stories.tsx +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus-ide/frontend/src/components/events/ValidationEventComponent.tsx +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus-ide/frontend/src/components/metadata/AgentsSection.tsx +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus-ide/frontend/src/components/metadata/EvaluationsSection.tsx +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus-ide/frontend/src/components/metadata/MetadataSections.stories.tsx +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus-ide/frontend/src/components/metadata/OutputsSection.tsx +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus-ide/frontend/src/components/metadata/ParametersSection.tsx +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus-ide/frontend/src/components/metadata/SpecificationsSection.tsx +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus-ide/frontend/src/components/metadata/StagesSection.tsx +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus-ide/frontend/src/components/metadata/ToolsSection.tsx +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus-ide/frontend/src/components/scenarios/EvaluateScenarios.stories.tsx +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus-ide/frontend/src/components/scenarios/RunScenarios.stories.tsx +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus-ide/frontend/src/components/scenarios/TestScenarios.stories.tsx +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus-ide/frontend/src/components/scenarios/ValidationScenarios.stories.tsx +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus-ide/frontend/src/components/theme-provider.tsx +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus-ide/frontend/src/components/ui/ai/conversation.tsx +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus-ide/frontend/src/components/ui/ai/message.tsx +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus-ide/frontend/src/components/ui/dialog.tsx +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus-ide/frontend/src/components/ui/input.tsx +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus-ide/frontend/src/components/ui/logo.stories.tsx +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus-ide/frontend/src/components/ui/menubar.tsx +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus-ide/frontend/src/components/ui/scroll-area.tsx +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus-ide/frontend/src/components/ui/separator.tsx +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus-ide/frontend/src/components/ui/tabs.tsx +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus-ide/frontend/src/hooks/useTracing.ts +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus-ide/frontend/src/index.css +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus-ide/frontend/src/lib/utils.ts +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus-ide/frontend/src/types/metadata.ts +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus-ide/frontend/src/types/results.ts +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus-ide/frontend/src/types/tracing.ts +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus-ide/frontend/src/validation/TactusValidator.ts +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus-ide/frontend/src/validation/generated/LuaParser.interp +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus-ide/frontend/src/validation/generated/LuaParser.tokens +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus-ide/frontend/src/validation/types.ts +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus-ide/frontend/src/vite-env.d.ts +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus-ide/frontend/tailwind.config.js +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus-ide/frontend/tsconfig.node.json +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus-ide/frontend/vitest.shims.d.ts +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus-ide/package.json +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tactus-ide/start-dev.sh +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tests/__init__.py +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tests/adapters/__init__.py +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tests/cli/__init__.py +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tests/conftest.py +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tests/core/__init__.py +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tests/core/test_determinism_safety.py +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tests/core/test_lua_sandbox_security.py +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tests/core/test_runtime_inputs.py +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tests/dspy/__init__.py +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tests/dspy/test_streaming.py +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tests/fixtures/__init__.py +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tests/fixtures/test_mcp_server.py +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tests/integration/test_named_procedures.py +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tests/mocks/__init__.py +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tests/mocks/llm_mocks.py +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tests/primitives/test_toolset_dsl.py +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tests/stdlib/__init__.py +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tests/stdlib/test_require_python.py +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tests/testing/__init__.py +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tests/testing/conftest.py +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tests/testing/test_gherkin_parser.py +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tests/testing/test_models.py +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tests/testing/test_step_registry.py +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tests/utils/__init__.py +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tests/utils/test_safe_file_library.py +0 -0
- {tactus-0.22.0 → tactus-0.35.0}/tests/validation/__init__.py +0 -0
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
[run]
|
|
2
|
+
branch = True
|
|
3
|
+
parallel = True
|
|
4
|
+
source =
|
|
5
|
+
tactus
|
|
6
|
+
tactus-ide/backend
|
|
7
|
+
omit =
|
|
8
|
+
*/__pycache__/*
|
|
9
|
+
tactus/validation/generated/*
|
|
10
|
+
tactus/validation/LuaLexerBase.py
|
|
11
|
+
tactus/validation/LuaParserBase.py
|
|
12
|
+
*/tests/*
|
|
13
|
+
*/features/*
|
|
14
|
+
|
|
15
|
+
[report]
|
|
16
|
+
show_missing = True
|
|
17
|
+
skip_covered = True
|
|
18
|
+
precision = 1
|
|
19
|
+
fail_under = 100
|
|
20
|
+
exclude_lines =
|
|
21
|
+
pragma: no cover
|
|
22
|
+
if __name__ == .__main__.:
|
|
23
|
+
raise NotImplementedError
|
|
24
|
+
@abstractmethod
|
|
25
|
+
|
|
26
|
+
[html]
|
|
27
|
+
directory = coverage_html
|
|
@@ -0,0 +1,195 @@
|
|
|
1
|
+
name: Release
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
branches:
|
|
6
|
+
- '**'
|
|
7
|
+
pull_request:
|
|
8
|
+
branches:
|
|
9
|
+
- '**'
|
|
10
|
+
|
|
11
|
+
permissions:
|
|
12
|
+
contents: read
|
|
13
|
+
|
|
14
|
+
jobs:
|
|
15
|
+
quality-checks:
|
|
16
|
+
name: Quality Checks
|
|
17
|
+
runs-on: ubuntu-latest
|
|
18
|
+
|
|
19
|
+
steps:
|
|
20
|
+
- name: Checkout code
|
|
21
|
+
uses: actions/checkout@v4
|
|
22
|
+
with:
|
|
23
|
+
fetch-depth: 0
|
|
24
|
+
|
|
25
|
+
- name: Set up Python
|
|
26
|
+
uses: actions/setup-python@v5
|
|
27
|
+
with:
|
|
28
|
+
python-version: '3.13'
|
|
29
|
+
cache: 'pip'
|
|
30
|
+
|
|
31
|
+
- name: Install dependencies
|
|
32
|
+
run: |
|
|
33
|
+
python -m pip install --upgrade pip
|
|
34
|
+
pip install -e ".[dev]"
|
|
35
|
+
|
|
36
|
+
- name: Run ruff linting
|
|
37
|
+
run: ruff check tactus/ tests/ features/steps/
|
|
38
|
+
|
|
39
|
+
- name: Run black formatting check
|
|
40
|
+
run: black --check tactus/ tests/ features/steps/
|
|
41
|
+
|
|
42
|
+
- name: Run pytest tests
|
|
43
|
+
run: pytest tests/ -v --tb=short -m "not integration" -n0
|
|
44
|
+
|
|
45
|
+
- name: Run behave BDD tests
|
|
46
|
+
run: behave
|
|
47
|
+
|
|
48
|
+
- name: Run stdlib BDD tests
|
|
49
|
+
run: tactus stdlib test
|
|
50
|
+
|
|
51
|
+
release:
|
|
52
|
+
name: Semantic Release
|
|
53
|
+
runs-on: ubuntu-latest
|
|
54
|
+
needs: quality-checks
|
|
55
|
+
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
|
|
56
|
+
permissions:
|
|
57
|
+
contents: write
|
|
58
|
+
id-token: write
|
|
59
|
+
|
|
60
|
+
steps:
|
|
61
|
+
- name: Checkout code
|
|
62
|
+
uses: actions/checkout@v4
|
|
63
|
+
with:
|
|
64
|
+
fetch-depth: 0
|
|
65
|
+
token: ${{ secrets.GH_TOKEN }}
|
|
66
|
+
|
|
67
|
+
- name: Set up Python
|
|
68
|
+
uses: actions/setup-python@v5
|
|
69
|
+
with:
|
|
70
|
+
python-version: '3.13'
|
|
71
|
+
cache: 'pip'
|
|
72
|
+
|
|
73
|
+
- name: Install python-semantic-release
|
|
74
|
+
run: |
|
|
75
|
+
python -m pip install --upgrade pip
|
|
76
|
+
pip install python-semantic-release
|
|
77
|
+
|
|
78
|
+
- name: Python Semantic Release
|
|
79
|
+
env:
|
|
80
|
+
GH_TOKEN: ${{ secrets.GH_TOKEN }}
|
|
81
|
+
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}
|
|
82
|
+
run: |
|
|
83
|
+
git config user.name "github-actions[bot]"
|
|
84
|
+
git config user.email "github-actions[bot]@users.noreply.github.com"
|
|
85
|
+
semantic-release version
|
|
86
|
+
semantic-release publish
|
|
87
|
+
|
|
88
|
+
- name: Publish to PyPI
|
|
89
|
+
if: success() && hashFiles('dist/*') != ''
|
|
90
|
+
env:
|
|
91
|
+
TWINE_USERNAME: __token__
|
|
92
|
+
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}
|
|
93
|
+
run: |
|
|
94
|
+
pip install twine
|
|
95
|
+
twine upload --skip-existing dist/*
|
|
96
|
+
|
|
97
|
+
desktop-builds:
|
|
98
|
+
name: Build Desktop Apps
|
|
99
|
+
runs-on: ${{ matrix.os }}
|
|
100
|
+
needs: release
|
|
101
|
+
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
|
|
102
|
+
strategy:
|
|
103
|
+
matrix:
|
|
104
|
+
os: [macos-latest, windows-latest, ubuntu-latest]
|
|
105
|
+
|
|
106
|
+
steps:
|
|
107
|
+
- name: Checkout code
|
|
108
|
+
uses: actions/checkout@v4
|
|
109
|
+
with:
|
|
110
|
+
fetch-depth: 0
|
|
111
|
+
ref: main
|
|
112
|
+
|
|
113
|
+
- name: Setup Node.js
|
|
114
|
+
uses: actions/setup-node@v4
|
|
115
|
+
with:
|
|
116
|
+
node-version: '20'
|
|
117
|
+
|
|
118
|
+
- name: Setup Python
|
|
119
|
+
uses: actions/setup-python@v5
|
|
120
|
+
with:
|
|
121
|
+
python-version: '3.13'
|
|
122
|
+
|
|
123
|
+
- name: Install Python dependencies
|
|
124
|
+
run: |
|
|
125
|
+
python -m pip install --upgrade pip
|
|
126
|
+
pip install pyinstaller
|
|
127
|
+
pip install -e .
|
|
128
|
+
|
|
129
|
+
- name: Get release version and update package.json
|
|
130
|
+
id: get_version
|
|
131
|
+
run: |
|
|
132
|
+
# Get the latest tag created by semantic-release
|
|
133
|
+
LATEST_TAG=$(git describe --tags --abbrev=0 2>/dev/null || echo "v0.0.0")
|
|
134
|
+
VERSION=${LATEST_TAG#v} # Remove 'v' prefix
|
|
135
|
+
echo "version=$VERSION" >> $GITHUB_OUTPUT
|
|
136
|
+
echo "tag=$LATEST_TAG" >> $GITHUB_OUTPUT
|
|
137
|
+
echo "Found release version: $VERSION"
|
|
138
|
+
|
|
139
|
+
# Update package.json version
|
|
140
|
+
cd tactus-desktop
|
|
141
|
+
npm version $VERSION --no-git-tag-version --allow-same-version
|
|
142
|
+
shell: bash
|
|
143
|
+
|
|
144
|
+
- name: Install Node dependencies (Desktop)
|
|
145
|
+
working-directory: ./tactus-desktop
|
|
146
|
+
run: npm install
|
|
147
|
+
|
|
148
|
+
- name: Build Frontend
|
|
149
|
+
working-directory: ./tactus-desktop
|
|
150
|
+
run: npm run build:frontend
|
|
151
|
+
|
|
152
|
+
- name: Build Backend
|
|
153
|
+
working-directory: ./tactus-desktop
|
|
154
|
+
run: npm run build:backend
|
|
155
|
+
|
|
156
|
+
- name: Build Electron
|
|
157
|
+
working-directory: ./tactus-desktop
|
|
158
|
+
run: npm run build
|
|
159
|
+
|
|
160
|
+
- name: Package Application (macOS)
|
|
161
|
+
if: matrix.os == 'macos-latest'
|
|
162
|
+
working-directory: ./tactus-desktop
|
|
163
|
+
run: npx electron-builder --mac
|
|
164
|
+
|
|
165
|
+
- name: Package Application (Windows)
|
|
166
|
+
if: matrix.os == 'windows-latest'
|
|
167
|
+
working-directory: ./tactus-desktop
|
|
168
|
+
run: npx electron-builder --win
|
|
169
|
+
|
|
170
|
+
- name: Package Application (Linux)
|
|
171
|
+
if: matrix.os == 'ubuntu-latest'
|
|
172
|
+
working-directory: ./tactus-desktop
|
|
173
|
+
run: npx electron-builder --linux
|
|
174
|
+
|
|
175
|
+
- name: Upload Desktop Artifacts to GitHub Artifacts
|
|
176
|
+
uses: actions/upload-artifact@v4
|
|
177
|
+
with:
|
|
178
|
+
name: desktop-${{ matrix.os }}
|
|
179
|
+
path: |
|
|
180
|
+
tactus-desktop/dist-electron/*.dmg
|
|
181
|
+
tactus-desktop/dist-electron/*.exe
|
|
182
|
+
tactus-desktop/dist-electron/*.AppImage
|
|
183
|
+
|
|
184
|
+
- name: Attach Desktop Builds to Release
|
|
185
|
+
if: success()
|
|
186
|
+
uses: softprops/action-gh-release@v1
|
|
187
|
+
with:
|
|
188
|
+
tag_name: ${{ steps.get_version.outputs.tag }}
|
|
189
|
+
files: |
|
|
190
|
+
tactus-desktop/dist-electron/*.dmg
|
|
191
|
+
tactus-desktop/dist-electron/*.exe
|
|
192
|
+
tactus-desktop/dist-electron/*.AppImage
|
|
193
|
+
fail_on_unmatched_files: false
|
|
194
|
+
env:
|
|
195
|
+
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
|
tactus-0.35.0/.gitignore
ADDED
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
# macOS
|
|
2
|
+
.DS_Store
|
|
3
|
+
|
|
4
|
+
# Python
|
|
5
|
+
__pycache__/
|
|
6
|
+
*.pyc
|
|
7
|
+
*.pyo
|
|
8
|
+
*.pyd
|
|
9
|
+
.Python
|
|
10
|
+
env/
|
|
11
|
+
venv/
|
|
12
|
+
.env
|
|
13
|
+
.venv
|
|
14
|
+
pip-log.txt
|
|
15
|
+
pip-delete-this-directory.txt
|
|
16
|
+
.tox/
|
|
17
|
+
.coverage
|
|
18
|
+
.coverage.*
|
|
19
|
+
.cache
|
|
20
|
+
nosetests.xml
|
|
21
|
+
coverage.xml
|
|
22
|
+
*.cover
|
|
23
|
+
*.log
|
|
24
|
+
.pytest_cache/
|
|
25
|
+
.ruff_cache/
|
|
26
|
+
|
|
27
|
+
# Distribution / packaging
|
|
28
|
+
dist/
|
|
29
|
+
build/
|
|
30
|
+
*.egg-info/
|
|
31
|
+
|
|
32
|
+
# Node / frontend
|
|
33
|
+
node_modules/
|
|
34
|
+
.vite/
|
|
35
|
+
npm-debug.log*
|
|
36
|
+
yarn-debug.log*
|
|
37
|
+
yarn-error.log*
|
|
38
|
+
|
|
39
|
+
# Tactus specific
|
|
40
|
+
.tactus/config.yml
|
|
41
|
+
progress.output
|
|
42
|
+
.tac/
|
|
43
|
+
tmp/
|
|
44
|
+
examples/output/
|
|
45
|
+
_recovery/
|
|
46
|
+
.tactus-broker/
|
|
47
|
+
|
|
48
|
+
*storybook.log
|
|
49
|
+
storybook-static
|
|
50
|
+
*.bak
|