tactus 0.15.1__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.
Files changed (1252) hide show
  1. tactus-0.35.0/.coveragerc +27 -0
  2. tactus-0.35.0/.github/workflows/release.yml +195 -0
  3. tactus-0.35.0/.gitignore +50 -0
  4. tactus-0.35.0/.tactus/config.yml.example +12 -0
  5. tactus-0.35.0/AGENTS.md +610 -0
  6. tactus-0.35.0/CHANGELOG.md +758 -0
  7. tactus-0.35.0/CHANGES_SUMMARY.md +176 -0
  8. tactus-0.35.0/CHECKPOINT_RESUME_PLAN.md +255 -0
  9. tactus-0.35.0/CURRENT_STATUS_AND_NEXT_STEPS.md +161 -0
  10. tactus-0.35.0/DETERMINISTIC_REQUEST_ID_FIX.md +135 -0
  11. tactus-0.35.0/EXECUTION_TRACE.md +212 -0
  12. tactus-0.35.0/IMPLEMENTATION.md +1904 -0
  13. tactus-0.35.0/Makefile +132 -0
  14. tactus-0.35.0/PHASE0_IPC_CHANNEL_COMPLETE.md +356 -0
  15. tactus-0.35.0/PHASE2_INTEGRATION_COMPLETE.md +256 -0
  16. tactus-0.35.0/PHASE3_IDE_HITL_INTEGRATION.md +288 -0
  17. tactus-0.35.0/PKG-INFO +1832 -0
  18. tactus-0.35.0/README.md +1766 -0
  19. tactus-0.35.0/SPECIFICATION.md +3256 -0
  20. tactus-0.35.0/TECHNICAL_DEBT.md +156 -0
  21. tactus-0.35.0/coverage.json +1 -0
  22. tactus-0.35.0/coverage_badge.json +1 -0
  23. tactus-0.35.0/docs/AGENTS.md +22 -0
  24. tactus-0.35.0/docs/BDD_TESTING.md +787 -0
  25. tactus-0.35.0/docs/CONFIGURATION.md +503 -0
  26. tactus-0.35.0/docs/CONTROL_LOOP_PHASE1_COMPLETE.md +304 -0
  27. tactus-0.35.0/docs/DURABILITY.md +1393 -0
  28. tactus-0.35.0/docs/MANUAL_CHECKPOINT_TESTING.md +283 -0
  29. tactus-0.35.0/docs/OMNICHANNEL_HITL_PLAN.md +2151 -0
  30. tactus-0.35.0/docs/SANDBOXING.md +553 -0
  31. tactus-0.35.0/docs/STREAMING.md +140 -0
  32. tactus-0.35.0/docs/TOOLS.md +943 -0
  33. tactus-0.35.0/docs/TOOL_ROADMAP.md +1266 -0
  34. tactus-0.35.0/docs/archive/CHECKPOINT_RESUME_STATUS.md +187 -0
  35. tactus-0.35.0/docs/archive/CHECKPOINT_TESTING_PLAN.md +316 -0
  36. tactus-0.35.0/docs/archive/CONTROL_LOOP_INTEGRATION.md +569 -0
  37. tactus-0.35.0/docs/archive/HITL_CHECKPOINT_FIX_COMPLETE.md +161 -0
  38. tactus-0.35.0/docs/archive/HITL_FIX_SUMMARY.md +261 -0
  39. tactus-0.35.0/docs/archive/LLM_CHECKPOINTING_COMPLETE.md +228 -0
  40. tactus-0.35.0/docs/development-mode.md +128 -0
  41. tactus-0.35.0/docs_output/classify.html +489 -0
  42. tactus-0.35.0/docs_output/index.html +256 -0
  43. tactus-0.35.0/examples/.tactus/config.yml +21 -0
  44. tactus-0.35.0/examples/.tactus/config.yml.example +12 -0
  45. tactus-0.35.0/examples/01-basics-hello-world.tac +18 -0
  46. tactus-0.35.0/examples/02-basics-simple-logic.tac +56 -0
  47. tactus-0.35.0/examples/03-basics-parameters.tac +54 -0
  48. tactus-0.35.0/examples/04-basics-simple-agent.tac +63 -0
  49. tactus-0.35.0/examples/05-basics-multi-model.tac +103 -0
  50. tactus-0.35.0/examples/06-basics-streaming.tac +45 -0
  51. tactus-0.35.0/examples/07-basics-bedrock.tac +90 -0
  52. tactus-0.35.0/examples/08-basics-models.tac +257 -0
  53. tactus-0.35.0/examples/09-basics-google-gemini.tac +154 -0
  54. tactus-0.35.0/examples/10-feature-state.tac +58 -0
  55. tactus-0.35.0/examples/11-feature-message-history-transforms.tac +84 -0
  56. tactus-0.35.0/examples/11-feature-message-history.tac +66 -0
  57. tactus-0.35.0/examples/12-feature-structured-output.tac +74 -0
  58. tactus-0.35.0/examples/13-feature-session.tac +66 -0
  59. tactus-0.35.0/examples/14-feature-per-turn-tools-simple.tac +68 -0
  60. tactus-0.35.0/examples/14-feature-per-turn-tools.tac +131 -0
  61. tactus-0.35.0/examples/15-feature-local-tools.tac +111 -0
  62. tactus-0.35.0/examples/16-feature-toolsets-advanced.tac +164 -0
  63. tactus-0.35.0/examples/17-feature-toolsets-dsl.tac +120 -0
  64. tactus-0.35.0/examples/18-feature-lua-tools-individual.tac +139 -0
  65. tactus-0.35.0/examples/18-feature-lua-tools-inline.tac +173 -0
  66. tactus-0.35.0/examples/18-feature-lua-tools-toolset.tac +189 -0
  67. tactus-0.35.0/examples/19-feature-direct-tool-calls.tac +146 -0
  68. tactus-0.35.0/examples/20-bdd-complete.tac +111 -0
  69. tactus-0.35.0/examples/21-bdd-passing.tac +80 -0
  70. tactus-0.35.0/examples/22-bdd-fuzzy-matching.tac +32 -0
  71. tactus-0.35.0/examples/30-eval-simple.tac +73 -0
  72. tactus-0.35.0/examples/31-eval-demo.tac +96 -0
  73. tactus-0.35.0/examples/32-eval-success-rate.tac +122 -0
  74. tactus-0.35.0/examples/33-eval-thresholds.tac +96 -0
  75. tactus-0.35.0/examples/34-eval-dataset.tac +96 -0
  76. tactus-0.35.0/examples/35-eval-trace.tac +142 -0
  77. tactus-0.35.0/examples/36-eval-advanced.tac +89 -0
  78. tactus-0.35.0/examples/37-eval-comprehensive.tac +137 -0
  79. tactus-0.35.0/examples/39-model-simple.tac +42 -0
  80. tactus-0.35.0/examples/40-mcp-test.tac +114 -0
  81. tactus-0.35.0/examples/40-model-text-classifier.tac +80 -0
  82. tactus-0.35.0/examples/41-mcp-simple.tac +75 -0
  83. tactus-0.35.0/examples/41-model-pytorch.tac +69 -0
  84. tactus-0.35.0/examples/43-sub-procedure-simple.tac +54 -0
  85. tactus-0.35.0/examples/44-sub-procedure-composition.tac +89 -0
  86. tactus-0.35.0/examples/45-sub-procedure-recursive.tac +37 -0
  87. tactus-0.35.0/examples/46-checkpoint-explicit.tac +51 -0
  88. tactus-0.35.0/examples/47-checkpoint-expensive-ops.tac +46 -0
  89. tactus-0.35.0/examples/48-script-mode-simple.tac +31 -0
  90. tactus-0.35.0/examples/50-inputs-showcase.tac +77 -0
  91. tactus-0.35.0/examples/51-inputs-calculator.tac +94 -0
  92. tactus-0.35.0/examples/52-file-io-basics.tac +93 -0
  93. tactus-0.35.0/examples/53-tsv-file-io.tac +87 -0
  94. tactus-0.35.0/examples/54-json-file-io.tac +141 -0
  95. tactus-0.35.0/examples/55-parquet-file-io.tac +129 -0
  96. tactus-0.35.0/examples/56-hdf5-file-io.tac +109 -0
  97. tactus-0.35.0/examples/57-excel-file-io.tac +154 -0
  98. tactus-0.35.0/examples/58-text-file-io.tac +224 -0
  99. tactus-0.35.0/examples/60-tool-sources.tac +138 -0
  100. tactus-0.35.0/examples/61-inline-toolset-lua.tac +160 -0
  101. tactus-0.35.0/examples/62-mcp-toolset-by-server.tac +183 -0
  102. tactus-0.35.0/examples/63-toolset-import-from-file.tac +159 -0
  103. tactus-0.35.0/examples/64-require-modules.tac +57 -0
  104. tactus-0.35.0/examples/65-optional-state-demo.tac +110 -0
  105. tactus-0.35.0/examples/66-host-tools-via-broker.tac +36 -0
  106. tactus-0.35.0/examples/67-host-tool-source.tac +41 -0
  107. tactus-0.35.0/examples/70-mocking-static.tac +150 -0
  108. tactus-0.35.0/examples/71-mocking-temporal.tac +156 -0
  109. tactus-0.35.0/examples/72-mocking-conditional.tac +178 -0
  110. tactus-0.35.0/examples/90-hitl-debug.tac +20 -0
  111. tactus-0.35.0/examples/90-hitl-simple.tac +84 -0
  112. tactus-0.35.0/examples/90-hitl-test-simple.tac +18 -0
  113. tactus-0.35.0/examples/90-hitl-ultra-debug.tac +38 -0
  114. tactus-0.35.0/examples/90-super-simple.tac +9 -0
  115. tactus-0.35.0/examples/90-test-params.tac +17 -0
  116. tactus-0.35.0/examples/91-control-loop-demo.tac +100 -0
  117. tactus-0.35.0/examples/92-test-inputs-simple.tac +100 -0
  118. tactus-0.35.0/examples/92-test-inputs.tac +109 -0
  119. tactus-0.35.0/examples/92-test-multiple.tac +109 -0
  120. tactus-0.35.0/examples/93-test-ide-hitl.tac +61 -0
  121. tactus-0.35.0/examples/93-test-individual-hitl.tac +89 -0
  122. tactus-0.35.0/examples/93-test-input-summary.tac +49 -0
  123. tactus-0.35.0/examples/94-test-custom-components.tac +69 -0
  124. tactus-0.35.0/examples/95-agent-hitl.tac +150 -0
  125. tactus-0.35.0/examples/99-misc-test-loading.tac +30 -0
  126. tactus-0.35.0/examples/README.md +483 -0
  127. tactus-0.35.0/examples/agent_test.tac +22 -0
  128. tactus-0.35.0/examples/app_config.ini +26 -0
  129. tactus-0.35.0/examples/classify_test.tac +34 -0
  130. tactus-0.35.0/examples/demo_output.json +11 -0
  131. tactus-0.35.0/examples/fuzzy_matching_demo.tac +308 -0
  132. tactus-0.35.0/examples/fuzzy_matching_demo_simple_spec.tac +77 -0
  133. tactus-0.35.0/examples/fuzzy_simple_test.tac +63 -0
  134. tactus-0.35.0/examples/helpers/math_module.tac +39 -0
  135. tactus-0.35.0/examples/helpers/product.tac +18 -0
  136. tactus-0.35.0/examples/helpers/string_module.tac +35 -0
  137. tactus-0.35.0/examples/helpers/sum.tac +18 -0
  138. tactus-0.35.0/examples/helpers/text_tools.tac +51 -0
  139. tactus-0.35.0/examples/hitl_toolset.lua +34 -0
  140. tactus-0.35.0/examples/inventory_summary.tsv +4 -0
  141. tactus-0.35.0/examples/llm_classify_binary.tac +94 -0
  142. tactus-0.35.0/examples/llm_classify_multiclass.tac +98 -0
  143. tactus-0.35.0/examples/llm_classify_with_metadata.tac +102 -0
  144. tactus-0.35.0/examples/output_summary.txt +1 -0
  145. tactus-0.35.0/examples/test-raw-module.tac +20 -0
  146. tactus-0.35.0/examples/test-raw-streaming.tac +20 -0
  147. tactus-0.35.0/examples/test-resume-basic.tac +33 -0
  148. tactus-0.35.0/examples/test-resume-hitl-types.tac +73 -0
  149. tactus-0.35.0/examples/test-resume-llm.tac +52 -0
  150. tactus-0.35.0/examples/test-resume-many-checkpoints.tac +48 -0
  151. tactus-0.35.0/examples/test-resume-mixed.tac +110 -0
  152. tactus-0.35.0/examples/test-resume-multi-hitl.tac +53 -0
  153. tactus-0.35.0/examples/test-resume-timeout.tac +38 -0
  154. tactus-0.35.0/examples/test-temperature-multi-calls.tac +34 -0
  155. tactus-0.35.0/examples/test-temperature-variation.tac +10 -0
  156. tactus-0.35.0/examples/tools/data_analysis.py +122 -0
  157. tactus-0.35.0/examples/tools/search.py +53 -0
  158. tactus-0.35.0/examples/with_dependencies/simple_http_test.tac +53 -0
  159. tactus-0.35.0/examples/with_dependencies/time_lookup.tac +67 -0
  160. tactus-0.35.0/features/17_lua_dsl_validation.feature +147 -0
  161. tactus-0.35.0/features/18_example_procedures.feature +62 -0
  162. tactus-0.35.0/features/20_parameters.feature +143 -0
  163. tactus-0.35.0/features/21_outputs.feature +145 -0
  164. tactus-0.35.0/features/23_prompts.feature +99 -0
  165. tactus-0.35.0/features/24_bdd_specifications.feature +148 -0
  166. tactus-0.35.0/features/25_bdd_custom_steps.feature +113 -0
  167. tactus-0.35.0/features/26_bdd_evaluation.feature +129 -0
  168. tactus-0.35.0/features/27_default_settings.feature +111 -0
  169. tactus-0.35.0/features/28_custom_prompts.feature +119 -0
  170. tactus-0.35.0/features/29_execution_settings.feature +107 -0
  171. tactus-0.35.0/features/30_session_filters.feature +204 -0
  172. tactus-0.35.0/features/31_matchers.feature +107 -0
  173. tactus-0.35.0/features/42_model_primitive.feature +143 -0
  174. tactus-0.35.0/features/46_explicit_checkpoint.feature +158 -0
  175. tactus-0.35.0/features/51_dspy_lm_config.feature +199 -0
  176. tactus-0.35.0/features/52_dspy_signature.feature +302 -0
  177. tactus-0.35.0/features/53_dspy_module.feature +322 -0
  178. tactus-0.35.0/features/54_dspy_history.feature +302 -0
  179. tactus-0.35.0/features/55_dspy_prediction.feature +295 -0
  180. tactus-0.35.0/features/56_dspy_agent.feature +323 -0
  181. tactus-0.35.0/features/57_chat_assistant.feature +60 -0
  182. tactus-0.35.0/features/60_formatting.feature +58 -0
  183. tactus-0.35.0/features/61_classify_primitive.feature +193 -0
  184. tactus-0.35.0/features/61_cli_run_exit_codes.feature +40 -0
  185. tactus-0.35.0/features/62_cli_info.feature +26 -0
  186. tactus-0.35.0/features/67_message_history_transforms.feature +21 -0
  187. tactus-0.35.0/features/68_ide_file_tools.feature +38 -0
  188. tactus-0.35.0/features/69_ide_assistant_service.feature +25 -0
  189. tactus-0.35.0/features/70_ide_chat_api.feature +52 -0
  190. tactus-0.35.0/features/71_ide_config_api.feature +39 -0
  191. tactus-0.35.0/features/documentation/Lua DSL/README.md +1057 -0
  192. tactus-0.35.0/features/steps/agent_primitives_steps.py +398 -0
  193. tactus-0.35.0/features/steps/chat_assistant_steps.py +160 -0
  194. tactus-0.35.0/features/steps/classify_primitive_steps.py +420 -0
  195. tactus-0.35.0/features/steps/cli_info_steps.py +29 -0
  196. tactus-0.35.0/features/steps/cli_run_steps.py +38 -0
  197. tactus-0.35.0/features/steps/dspy_agent_steps.py +832 -0
  198. tactus-0.35.0/features/steps/dspy_history_steps.py +652 -0
  199. tactus-0.35.0/features/steps/dspy_lm_steps.py +351 -0
  200. tactus-0.35.0/features/steps/dspy_module_steps.py +499 -0
  201. tactus-0.35.0/features/steps/dspy_prediction_steps.py +811 -0
  202. tactus-0.35.0/features/steps/dspy_signature_steps.py +381 -0
  203. tactus-0.35.0/features/steps/example_procedures_steps.py +197 -0
  204. tactus-0.35.0/features/steps/formatting_steps.py +224 -0
  205. tactus-0.35.0/features/steps/human_in_the_loop_steps.py +315 -0
  206. tactus-0.35.0/features/steps/ide_assistant_service_steps.py +141 -0
  207. tactus-0.35.0/features/steps/ide_chat_api_steps.py +204 -0
  208. tactus-0.35.0/features/steps/ide_config_api_steps.py +123 -0
  209. tactus-0.35.0/features/steps/ide_file_tools_steps.py +161 -0
  210. tactus-0.35.0/features/steps/lua_dsl_validation_steps.py +480 -0
  211. tactus-0.35.0/features/steps/result_and_output_steps.py +254 -0
  212. tactus-0.35.0/features/steps/support/__init__.py +17 -0
  213. tactus-0.35.0/features/steps/support/harnesses.py +574 -0
  214. tactus-0.35.0/planning/BROKER_AND_TOOL_RUNNERS.md +617 -0
  215. tactus-0.35.0/planning/CONVERSATION_HISTORY_TRANSFORMS.md +102 -0
  216. tactus-0.35.0/planning/FORMATTER.md +48 -0
  217. tactus-0.35.0/pyproject.toml +143 -0
  218. tactus-0.35.0/scripts/audit_examples_mocking.py +229 -0
  219. tactus-0.35.0/scripts/convert_examples.py +213 -0
  220. tactus-0.35.0/scripts/run_coverage.sh +49 -0
  221. tactus-0.35.0/scripts/run_precommit_suite.sh +61 -0
  222. tactus-0.35.0/scripts/timeout.py +49 -0
  223. tactus-0.35.0/tactus/__init__.py +49 -0
  224. tactus-0.35.0/tactus/adapters/__init__.py +26 -0
  225. tactus-0.35.0/tactus/adapters/broker_log.py +172 -0
  226. tactus-0.35.0/tactus/adapters/channels/__init__.py +155 -0
  227. tactus-0.35.0/tactus/adapters/channels/base.py +183 -0
  228. tactus-0.35.0/tactus/adapters/channels/broker.py +209 -0
  229. tactus-0.35.0/tactus/adapters/channels/cli.py +452 -0
  230. tactus-0.35.0/tactus/adapters/channels/host.py +234 -0
  231. tactus-0.35.0/tactus/adapters/channels/ipc.py +348 -0
  232. tactus-0.35.0/tactus/adapters/channels/sse.py +323 -0
  233. tactus-0.35.0/tactus/adapters/cli_hitl.py +411 -0
  234. tactus-0.35.0/tactus/adapters/cli_log.py +223 -0
  235. tactus-0.35.0/tactus/adapters/control_loop.py +918 -0
  236. tactus-0.35.0/tactus/adapters/cost_collector_log.py +56 -0
  237. tactus-0.35.0/tactus/adapters/file_storage.py +404 -0
  238. tactus-0.35.0/tactus/adapters/http_callback_log.py +119 -0
  239. tactus-0.35.0/tactus/adapters/ide_log.py +85 -0
  240. tactus-0.35.0/tactus/adapters/lua_tools.py +335 -0
  241. tactus-0.35.0/tactus/adapters/mcp.py +286 -0
  242. tactus-0.35.0/tactus/adapters/mcp_manager.py +212 -0
  243. tactus-0.35.0/tactus/adapters/memory.py +53 -0
  244. tactus-0.35.0/tactus/adapters/plugins.py +419 -0
  245. tactus-0.35.0/tactus/backends/http_backend.py +57 -0
  246. tactus-0.35.0/tactus/broker/__init__.py +12 -0
  247. tactus-0.35.0/tactus/broker/client.py +274 -0
  248. tactus-0.35.0/tactus/broker/protocol.py +183 -0
  249. tactus-0.35.0/tactus/broker/server.py +1502 -0
  250. tactus-0.35.0/tactus/broker/stdio.py +12 -0
  251. tactus-0.35.0/tactus/cli/app.py +2510 -0
  252. tactus-0.35.0/tactus/cli/control.py +393 -0
  253. tactus-0.35.0/tactus/core/config_manager.py +863 -0
  254. tactus-0.35.0/tactus/core/dependencies/registry.py +198 -0
  255. tactus-0.35.0/tactus/core/dsl_stubs.py +2260 -0
  256. tactus-0.35.0/tactus/core/exceptions.py +75 -0
  257. tactus-0.35.0/tactus/core/execution_context.py +777 -0
  258. tactus-0.35.0/tactus/core/lua_sandbox.py +515 -0
  259. tactus-0.35.0/tactus/core/message_history_manager.py +331 -0
  260. tactus-0.35.0/tactus/core/mocking.py +300 -0
  261. tactus-0.35.0/tactus/core/output_validator.py +296 -0
  262. tactus-0.35.0/tactus/core/registry.py +530 -0
  263. tactus-0.35.0/tactus/core/runtime.py +3150 -0
  264. tactus-0.35.0/tactus/core/template_resolver.py +142 -0
  265. tactus-0.35.0/tactus/core/yaml_parser.py +311 -0
  266. tactus-0.35.0/tactus/docker/Dockerfile +61 -0
  267. tactus-0.35.0/tactus/docker/Dockerfile.pypi +49 -0
  268. tactus-0.35.0/tactus/docker/entrypoint.sh +69 -0
  269. tactus-0.35.0/tactus/docs/__init__.py +33 -0
  270. tactus-0.35.0/tactus/docs/extractor.py +327 -0
  271. tactus-0.35.0/tactus/docs/html_renderer.py +72 -0
  272. tactus-0.35.0/tactus/docs/models.py +121 -0
  273. tactus-0.35.0/tactus/docs/templates/base.html +204 -0
  274. tactus-0.35.0/tactus/docs/templates/index.html +58 -0
  275. tactus-0.35.0/tactus/docs/templates/module.html +96 -0
  276. tactus-0.35.0/tactus/dspy/__init__.py +39 -0
  277. tactus-0.35.0/tactus/dspy/agent.py +1525 -0
  278. tactus-0.35.0/tactus/dspy/broker_lm.py +232 -0
  279. tactus-0.35.0/tactus/dspy/config.py +223 -0
  280. tactus-0.35.0/tactus/dspy/history.py +197 -0
  281. tactus-0.35.0/tactus/dspy/module.py +530 -0
  282. tactus-0.35.0/tactus/dspy/prediction.py +318 -0
  283. tactus-0.35.0/tactus/dspy/signature.py +184 -0
  284. tactus-0.35.0/tactus/formatting/__init__.py +7 -0
  285. tactus-0.35.0/tactus/formatting/formatter.py +437 -0
  286. tactus-0.35.0/tactus/ide/coding_assistant.py +343 -0
  287. tactus-0.35.0/tactus/ide/config_server.py +536 -0
  288. tactus-0.35.0/tactus/ide/server.py +2588 -0
  289. tactus-0.35.0/tactus/primitives/__init__.py +49 -0
  290. tactus-0.35.0/tactus/primitives/control.py +172 -0
  291. tactus-0.35.0/tactus/primitives/file.py +231 -0
  292. tactus-0.35.0/tactus/primitives/handles.py +390 -0
  293. tactus-0.35.0/tactus/primitives/host.py +96 -0
  294. tactus-0.35.0/tactus/primitives/human.py +931 -0
  295. tactus-0.35.0/tactus/primitives/json.py +188 -0
  296. tactus-0.35.0/tactus/primitives/log.py +187 -0
  297. tactus-0.35.0/tactus/primitives/message_history.py +411 -0
  298. tactus-0.35.0/tactus/primitives/model.py +169 -0
  299. tactus-0.35.0/tactus/primitives/procedure.py +586 -0
  300. tactus-0.35.0/tactus/primitives/procedure_callable.py +325 -0
  301. tactus-0.35.0/tactus/primitives/retry.py +157 -0
  302. tactus-0.35.0/tactus/primitives/session.py +165 -0
  303. tactus-0.35.0/tactus/primitives/state.py +193 -0
  304. tactus-0.35.0/tactus/primitives/step.py +205 -0
  305. tactus-0.35.0/tactus/primitives/system.py +105 -0
  306. tactus-0.35.0/tactus/primitives/tool.py +388 -0
  307. tactus-0.35.0/tactus/primitives/tool_handle.py +301 -0
  308. tactus-0.35.0/tactus/primitives/toolset.py +232 -0
  309. tactus-0.35.0/tactus/protocols/__init__.py +63 -0
  310. tactus-0.35.0/tactus/protocols/config.py +97 -0
  311. tactus-0.35.0/tactus/protocols/control.py +427 -0
  312. tactus-0.35.0/tactus/protocols/cost.py +31 -0
  313. tactus-0.35.0/tactus/protocols/models.py +355 -0
  314. tactus-0.35.0/tactus/protocols/notification.py +207 -0
  315. tactus-0.35.0/tactus/protocols/result.py +33 -0
  316. tactus-0.35.0/tactus/sandbox/__init__.py +63 -0
  317. tactus-0.35.0/tactus/sandbox/config.py +171 -0
  318. tactus-0.35.0/tactus/sandbox/container_runner.py +1221 -0
  319. tactus-0.35.0/tactus/sandbox/docker_manager.py +456 -0
  320. tactus-0.35.0/tactus/sandbox/entrypoint.py +255 -0
  321. tactus-0.35.0/tactus/sandbox/protocol.py +216 -0
  322. tactus-0.35.0/tactus/stdlib/README.md +77 -0
  323. tactus-0.35.0/tactus/stdlib/__init__.py +36 -0
  324. tactus-0.35.0/tactus/stdlib/classify/__init__.py +165 -0
  325. tactus-0.35.0/tactus/stdlib/classify/classify.spec.tac +195 -0
  326. tactus-0.35.0/tactus/stdlib/classify/classify.tac +257 -0
  327. tactus-0.35.0/tactus/stdlib/classify/fuzzy.py +282 -0
  328. tactus-0.35.0/tactus/stdlib/classify/llm.py +317 -0
  329. tactus-0.35.0/tactus/stdlib/classify/primitive.py +287 -0
  330. tactus-0.35.0/tactus/stdlib/core/__init__.py +57 -0
  331. tactus-0.35.0/tactus/stdlib/core/base.py +320 -0
  332. tactus-0.35.0/tactus/stdlib/core/confidence.py +211 -0
  333. tactus-0.35.0/tactus/stdlib/core/models.py +161 -0
  334. tactus-0.35.0/tactus/stdlib/core/retry.py +171 -0
  335. tactus-0.35.0/tactus/stdlib/core/validation.py +271 -0
  336. tactus-0.35.0/tactus/stdlib/extract/__init__.py +125 -0
  337. tactus-0.35.0/tactus/stdlib/extract/llm.py +330 -0
  338. tactus-0.35.0/tactus/stdlib/extract/primitive.py +256 -0
  339. tactus-0.35.0/tactus/stdlib/io/__init__.py +13 -0
  340. tactus-0.35.0/tactus/stdlib/io/csv.py +88 -0
  341. tactus-0.35.0/tactus/stdlib/io/excel.py +136 -0
  342. tactus-0.35.0/tactus/stdlib/io/file.py +90 -0
  343. tactus-0.35.0/tactus/stdlib/io/fs.py +154 -0
  344. tactus-0.35.0/tactus/stdlib/io/hdf5.py +121 -0
  345. tactus-0.35.0/tactus/stdlib/io/json.py +109 -0
  346. tactus-0.35.0/tactus/stdlib/io/parquet.py +83 -0
  347. tactus-0.35.0/tactus/stdlib/io/tsv.py +88 -0
  348. tactus-0.35.0/tactus/stdlib/loader.py +274 -0
  349. tactus-0.35.0/tactus/stdlib/tac/tactus/classify/base.tac +51 -0
  350. tactus-0.35.0/tactus/stdlib/tac/tactus/classify/fuzzy.tac +87 -0
  351. tactus-0.35.0/tactus/stdlib/tac/tactus/classify/index.md +77 -0
  352. tactus-0.35.0/tactus/stdlib/tac/tactus/classify/init.tac +29 -0
  353. tactus-0.35.0/tactus/stdlib/tac/tactus/classify/llm.tac +150 -0
  354. tactus-0.35.0/tactus/stdlib/tac/tactus/classify.spec.tac +191 -0
  355. tactus-0.35.0/tactus/stdlib/tac/tactus/extract/base.tac +138 -0
  356. tactus-0.35.0/tactus/stdlib/tac/tactus/extract/index.md +96 -0
  357. tactus-0.35.0/tactus/stdlib/tac/tactus/extract/init.tac +27 -0
  358. tactus-0.35.0/tactus/stdlib/tac/tactus/extract/llm.tac +201 -0
  359. tactus-0.35.0/tactus/stdlib/tac/tactus/extract.spec.tac +153 -0
  360. tactus-0.35.0/tactus/stdlib/tac/tactus/generate/base.tac +142 -0
  361. tactus-0.35.0/tactus/stdlib/tac/tactus/generate/index.md +195 -0
  362. tactus-0.35.0/tactus/stdlib/tac/tactus/generate/init.tac +28 -0
  363. tactus-0.35.0/tactus/stdlib/tac/tactus/generate/llm.tac +169 -0
  364. tactus-0.35.0/tactus/stdlib/tac/tactus/generate.spec.tac +210 -0
  365. tactus-0.35.0/tactus/stdlib/tac/tactus/tools/done.tac +33 -0
  366. tactus-0.35.0/tactus/stdlib/tac/tactus/tools/log.tac +50 -0
  367. tactus-0.35.0/tactus/testing/README.md +273 -0
  368. tactus-0.35.0/tactus/testing/behave_integration.py +544 -0
  369. tactus-0.35.0/tactus/testing/context.py +485 -0
  370. tactus-0.35.0/tactus/testing/evaluation_runner.py +221 -0
  371. tactus-0.35.0/tactus/testing/gherkin_parser.py +133 -0
  372. tactus-0.35.0/tactus/testing/mock_agent.py +315 -0
  373. tactus-0.35.0/tactus/testing/mock_hitl.py +170 -0
  374. tactus-0.35.0/tactus/testing/mock_tools.py +132 -0
  375. tactus-0.35.0/tactus/testing/models.py +114 -0
  376. tactus-0.35.0/tactus/testing/pydantic_eval_runner.py +508 -0
  377. tactus-0.35.0/tactus/testing/steps/builtin.py +901 -0
  378. tactus-0.35.0/tactus/testing/steps/custom.py +128 -0
  379. tactus-0.35.0/tactus/testing/steps/registry.py +67 -0
  380. tactus-0.35.0/tactus/testing/test_runner.py +495 -0
  381. tactus-0.35.0/tactus/tracing/trace_manager.py +417 -0
  382. tactus-0.35.0/tactus/utils/asyncio_helpers.py +27 -0
  383. tactus-0.35.0/tactus/utils/cost_calculator.py +72 -0
  384. tactus-0.35.0/tactus/utils/model_pricing.py +131 -0
  385. tactus-0.35.0/tactus/utils/safe_file_library.py +526 -0
  386. tactus-0.35.0/tactus/utils/safe_libraries.py +234 -0
  387. tactus-0.35.0/tactus/validation/LuaLexerBase.py +66 -0
  388. tactus-0.35.0/tactus/validation/LuaParserBase.py +23 -0
  389. tactus-0.35.0/tactus/validation/error_listener.py +34 -0
  390. tactus-0.35.0/tactus/validation/generated/LuaLexer.py +5548 -0
  391. tactus-0.35.0/tactus/validation/generated/LuaLexerBase.py +66 -0
  392. tactus-0.35.0/tactus/validation/generated/LuaParser.py +6439 -0
  393. tactus-0.35.0/tactus/validation/generated/LuaParserBase.py +23 -0
  394. tactus-0.35.0/tactus/validation/generated/LuaParserVisitor.py +118 -0
  395. tactus-0.35.0/tactus/validation/generated/__init__.py +7 -0
  396. tactus-0.35.0/tactus/validation/semantic_visitor.py +882 -0
  397. tactus-0.35.0/tactus/validation/validator.py +196 -0
  398. tactus-0.35.0/tactus-desktop/BUILD_GUIDE.md +222 -0
  399. tactus-0.35.0/tactus-desktop/DISTRIBUTION.md +205 -0
  400. tactus-0.35.0/tactus-desktop/ELECTRON_INTEGRATION.md +206 -0
  401. tactus-0.35.0/tactus-desktop/README.md +124 -0
  402. tactus-0.35.0/tactus-desktop/backend/tactus_backend.spec +114 -0
  403. tactus-0.35.0/tactus-desktop/package-lock.json +4155 -0
  404. tactus-0.35.0/tactus-desktop/package.json +90 -0
  405. tactus-0.35.0/tactus-desktop/preload/preload.ts +24 -0
  406. tactus-0.35.0/tactus-desktop/resources/app-icon.icns +0 -0
  407. tactus-0.35.0/tactus-desktop/resources/app-icon.ico +0 -0
  408. tactus-0.35.0/tactus-desktop/resources/app-icon.png +0 -0
  409. tactus-0.35.0/tactus-desktop/scripts/build-backend.mjs +102 -0
  410. tactus-0.35.0/tactus-desktop/scripts/generate-icons.sh +95 -0
  411. tactus-0.35.0/tactus-desktop/scripts/test-ci-build.sh +74 -0
  412. tactus-0.35.0/tactus-desktop/src/main.ts +100 -0
  413. tactus-0.35.0/tactus-desktop/src/menu.ts +135 -0
  414. tactus-0.35.0/tactus-desktop/src/preferences-window.ts +47 -0
  415. tactus-0.35.0/tactus-ide/ARCHITECTURE.md +515 -0
  416. tactus-0.35.0/tactus-ide/README.md +244 -0
  417. tactus-0.35.0/tactus-ide/backend/assistant_service.py +444 -0
  418. tactus-0.35.0/tactus-ide/backend/assistant_tools.py +397 -0
  419. tactus-0.35.0/tactus-ide/backend/chat_server.py +339 -0
  420. tactus-0.35.0/tactus-ide/backend/config_server.py +465 -0
  421. tactus-0.35.0/tactus-ide/backend/text_editor_tool.py +172 -0
  422. tactus-0.35.0/tactus-ide/dev.sh +160 -0
  423. tactus-0.35.0/tactus-ide/frontend/.storybook/main.ts +29 -0
  424. tactus-0.35.0/tactus-ide/frontend/README.md +125 -0
  425. tactus-0.35.0/tactus-ide/frontend/components.json +20 -0
  426. tactus-0.35.0/tactus-ide/frontend/demo.ts +187 -0
  427. tactus-0.35.0/tactus-ide/frontend/package-lock.json +10720 -0
  428. tactus-0.35.0/tactus-ide/frontend/package.json +75 -0
  429. tactus-0.35.0/tactus-ide/frontend/postcss.config.js +6 -0
  430. tactus-0.35.0/tactus-ide/frontend/src/App.tsx +1183 -0
  431. tactus-0.35.0/tactus-ide/frontend/src/commands/registry.ts +161 -0
  432. tactus-0.35.0/tactus-ide/frontend/src/components/AboutDialog.tsx +138 -0
  433. tactus-0.35.0/tactus-ide/frontend/src/components/AuthErrorDialog.tsx +69 -0
  434. tactus-0.35.0/tactus-ide/frontend/src/components/ChatSidebar.tsx +24 -0
  435. tactus-0.35.0/tactus-ide/frontend/src/components/CollapsibleRun.tsx +151 -0
  436. tactus-0.35.0/tactus-ide/frontend/src/components/FileTree.tsx +191 -0
  437. tactus-0.35.0/tactus-ide/frontend/src/components/MessageFeed.tsx +135 -0
  438. tactus-0.35.0/tactus-ide/frontend/src/components/PreferencesView.tsx +305 -0
  439. tactus-0.35.0/tactus-ide/frontend/src/components/ProcedureInputsModal.tsx +278 -0
  440. tactus-0.35.0/tactus-ide/frontend/src/components/ResizeHandle.tsx +79 -0
  441. tactus-0.35.0/tactus-ide/frontend/src/components/ResultsSidebar.tsx +324 -0
  442. tactus-0.35.0/tactus-ide/frontend/src/components/TestOptionsModal.tsx +185 -0
  443. tactus-0.35.0/tactus-ide/frontend/src/components/ai-elements/confirmation.tsx +182 -0
  444. tactus-0.35.0/tactus-ide/frontend/src/components/chat/ChatInterface.tsx +100 -0
  445. tactus-0.35.0/tactus-ide/frontend/src/components/chat/MessageInput.tsx +54 -0
  446. tactus-0.35.0/tactus-ide/frontend/src/components/chat/MessageList.tsx +97 -0
  447. tactus-0.35.0/tactus-ide/frontend/src/components/debugger/CheckpointDetails.stories.tsx +167 -0
  448. tactus-0.35.0/tactus-ide/frontend/src/components/events/CheckpointEventComponent.tsx +106 -0
  449. tactus-0.35.0/tactus-ide/frontend/src/components/events/CollapsibleTestScenario.tsx +194 -0
  450. tactus-0.35.0/tactus-ide/frontend/src/components/events/ContainerStatusEventComponent.tsx +95 -0
  451. tactus-0.35.0/tactus-ide/frontend/src/components/events/CostEventComponent.tsx +208 -0
  452. tactus-0.35.0/tactus-ide/frontend/src/components/events/EventRenderer.tsx +100 -0
  453. tactus-0.35.0/tactus-ide/frontend/src/components/events/HITLEventComponent.stories.tsx +306 -0
  454. tactus-0.35.0/tactus-ide/frontend/src/components/events/HITLEventComponent.tsx +388 -0
  455. tactus-0.35.0/tactus-ide/frontend/src/components/events/LoadingEventComponent.tsx +42 -0
  456. tactus-0.35.0/tactus-ide/frontend/src/components/events/TestProgressContainer.tsx +262 -0
  457. tactus-0.35.0/tactus-ide/frontend/src/components/hitl/registry.ts +178 -0
  458. tactus-0.35.0/tactus-ide/frontend/src/components/hitl/standard-library/builtin/ApprovalComponent.tsx +91 -0
  459. tactus-0.35.0/tactus-ide/frontend/src/components/hitl/standard-library/builtin/InputComponent.tsx +67 -0
  460. tactus-0.35.0/tactus-ide/frontend/src/components/hitl/standard-library/builtin/SelectComponent.tsx +63 -0
  461. tactus-0.35.0/tactus-ide/frontend/src/components/hitl/standard-library/builtin/index.ts +11 -0
  462. tactus-0.35.0/tactus-ide/frontend/src/components/hitl/standard-library/index.ts +8 -0
  463. tactus-0.35.0/tactus-ide/frontend/src/components/hitl/standard-library/selectors/ImageSelectorComponent.tsx +117 -0
  464. tactus-0.35.0/tactus-ide/frontend/src/components/hitl/standard-library/selectors/index.ts +5 -0
  465. tactus-0.35.0/tactus-ide/frontend/src/components/hitl/types.ts +20 -0
  466. tactus-0.35.0/tactus-ide/frontend/src/components/metadata/OutputsSection.tsx +49 -0
  467. tactus-0.35.0/tactus-ide/frontend/src/components/metadata/ParametersSection.tsx +54 -0
  468. tactus-0.35.0/tactus-ide/frontend/src/components/preferences/ConfigFieldView.tsx +176 -0
  469. tactus-0.35.0/tactus-ide/frontend/src/components/preferences/SourceBadge.tsx +254 -0
  470. tactus-0.35.0/tactus-ide/frontend/src/components/preferences/YamlCodeEditor.tsx +123 -0
  471. tactus-0.35.0/tactus-ide/frontend/src/components/ui/ai/prompt-input.tsx +109 -0
  472. tactus-0.35.0/tactus-ide/frontend/src/components/ui/alert.tsx +59 -0
  473. tactus-0.35.0/tactus-ide/frontend/src/components/ui/badge.tsx +36 -0
  474. tactus-0.35.0/tactus-ide/frontend/src/components/ui/button.tsx +57 -0
  475. tactus-0.35.0/tactus-ide/frontend/src/components/ui/dropdown-menu.tsx +114 -0
  476. tactus-0.35.0/tactus-ide/frontend/src/components/ui/label.tsx +24 -0
  477. tactus-0.35.0/tactus-ide/frontend/src/components/ui/logo.tsx +22 -0
  478. tactus-0.35.0/tactus-ide/frontend/src/components/ui/select.tsx +158 -0
  479. tactus-0.35.0/tactus-ide/frontend/src/components/ui/switch.tsx +27 -0
  480. tactus-0.35.0/tactus-ide/frontend/src/components/ui/tooltip.tsx +28 -0
  481. tactus-0.35.0/tactus-ide/frontend/src/hooks/useChatSSE.ts +204 -0
  482. tactus-0.35.0/tactus-ide/frontend/src/hooks/useEventStream.ts +401 -0
  483. tactus-0.35.0/tactus-ide/frontend/src/main.tsx +62 -0
  484. tactus-0.35.0/tactus-ide/frontend/src/types/events.ts +403 -0
  485. tactus-0.35.0/tactus-ide/frontend/src/types/preferences.ts +128 -0
  486. tactus-0.35.0/tactus-ide/frontend/src/utils/clipboard.ts +17 -0
  487. tactus-0.35.0/tactus-ide/frontend/src/utils/runExport.ts +39 -0
  488. tactus-0.35.0/tactus-ide/frontend/src/utils/yamlSync.ts +77 -0
  489. tactus-0.35.0/tactus-ide/frontend/tests/runExport.test.ts +52 -0
  490. tactus-0.35.0/tactus-ide/frontend/tsconfig.json +48 -0
  491. tactus-0.35.0/tactus-ide/frontend/vendor/tactus-hitl-components/package.json +9 -0
  492. tactus-0.35.0/tactus-ide/frontend/vendor/tactus-hitl-components/src/index.tsx +15 -0
  493. tactus-0.35.0/tactus-ide/frontend/vendor/tactus-hitl-components/src/styles.css +1 -0
  494. tactus-0.35.0/tactus-ide/frontend/vite.config.ts +37 -0
  495. tactus-0.35.0/test-ci.sh +5 -0
  496. tactus-0.35.0/test_classify_loading.tac +44 -0
  497. tactus-0.35.0/test_run_inputs.sh +14 -0
  498. tactus-0.35.0/tests/adapters/channels/test_base_channel.py +130 -0
  499. tactus-0.35.0/tests/adapters/channels/test_broker_channel.py +130 -0
  500. tactus-0.35.0/tests/adapters/channels/test_channels_init.py +146 -0
  501. tactus-0.35.0/tests/adapters/channels/test_cli_channel.py +862 -0
  502. tactus-0.35.0/tests/adapters/channels/test_host_channel.py +165 -0
  503. tactus-0.35.0/tests/adapters/channels/test_ipc_channel.py +372 -0
  504. tactus-0.35.0/tests/adapters/channels/test_sse_channel.py +194 -0
  505. tactus-0.35.0/tests/adapters/test_broker_log.py +185 -0
  506. tactus-0.35.0/tests/adapters/test_cli_hitl_handler.py +559 -0
  507. tactus-0.35.0/tests/adapters/test_cli_log_handler.py +226 -0
  508. tactus-0.35.0/tests/adapters/test_control_loop.py +1188 -0
  509. tactus-0.35.0/tests/adapters/test_file_storage.py +402 -0
  510. tactus-0.35.0/tests/adapters/test_log_handlers.py +147 -0
  511. tactus-0.35.0/tests/adapters/test_lua_tools_adapter.py +565 -0
  512. tactus-0.35.0/tests/adapters/test_mcp_adapter.py +314 -0
  513. tactus-0.35.0/tests/adapters/test_mcp_manager.py +182 -0
  514. tactus-0.35.0/tests/adapters/test_memory_storage.py +31 -0
  515. tactus-0.35.0/tests/adapters/test_plugins.py +485 -0
  516. tactus-0.35.0/tests/backends/test_http_backend.py +65 -0
  517. tactus-0.35.0/tests/backends/test_pytorch_backend.py +230 -0
  518. tactus-0.35.0/tests/broker/test_broker_client_extra.py +136 -0
  519. tactus-0.35.0/tests/broker/test_broker_client_unit.py +458 -0
  520. tactus-0.35.0/tests/broker/test_broker_host_tool_source.py +39 -0
  521. tactus-0.35.0/tests/broker/test_broker_integration.py +111 -0
  522. tactus-0.35.0/tests/broker/test_broker_protocol.py +297 -0
  523. tactus-0.35.0/tests/broker/test_broker_server_additional.py +1153 -0
  524. tactus-0.35.0/tests/broker/test_broker_server_anyio_handlers.py +317 -0
  525. tactus-0.35.0/tests/broker/test_broker_server_asyncio_handlers.py +313 -0
  526. tactus-0.35.0/tests/broker/test_broker_server_connection.py +69 -0
  527. tactus-0.35.0/tests/broker/test_broker_server_helpers.py +78 -0
  528. tactus-0.35.0/tests/broker/test_broker_server_unit.py +332 -0
  529. tactus-0.35.0/tests/broker/test_broker_server_utils.py +28 -0
  530. tactus-0.35.0/tests/broker/test_broker_stdio_transport.py +169 -0
  531. tactus-0.35.0/tests/broker/test_broker_tcp_integration.py +115 -0
  532. tactus-0.35.0/tests/broker/test_broker_tcp_unit.py +187 -0
  533. tactus-0.35.0/tests/broker/test_brokered_lm_unit.py +75 -0
  534. tactus-0.35.0/tests/cli/test_app_commands.py +287 -0
  535. tactus-0.35.0/tests/cli/test_app_helpers.py +206 -0
  536. tactus-0.35.0/tests/cli/test_app_inputs.py +91 -0
  537. tactus-0.35.0/tests/cli/test_app_run.py +1617 -0
  538. tactus-0.35.0/tests/cli/test_app_sandbox.py +136 -0
  539. tactus-0.35.0/tests/cli/test_cli.py +195 -0
  540. tactus-0.35.0/tests/cli/test_cli_config_loading.py +227 -0
  541. tactus-0.35.0/tests/cli/test_cli_control_main.py +179 -0
  542. tactus-0.35.0/tests/cli/test_cli_display_helpers.py +325 -0
  543. tactus-0.35.0/tests/cli/test_cli_format_info.py +51 -0
  544. tactus-0.35.0/tests/cli/test_cli_ide_main.py +262 -0
  545. tactus-0.35.0/tests/cli/test_cli_input_helpers.py +88 -0
  546. tactus-0.35.0/tests/cli/test_cli_inputs.py +417 -0
  547. tactus-0.35.0/tests/cli/test_cli_logging.py +62 -0
  548. tactus-0.35.0/tests/cli/test_cli_main_entry.py +39 -0
  549. tactus-0.35.0/tests/cli/test_cli_run_errors.py +57 -0
  550. tactus-0.35.0/tests/cli/test_cli_sandbox_validate.py +118 -0
  551. tactus-0.35.0/tests/cli/test_cli_stdlib_control.py +416 -0
  552. tactus-0.35.0/tests/cli/test_cli_test_eval_commands.py +1022 -0
  553. tactus-0.35.0/tests/cli/test_cli_trace_commands.py +410 -0
  554. tactus-0.35.0/tests/cli/test_control_cli.py +789 -0
  555. tactus-0.35.0/tests/cli/test_sandbox_commands.py +132 -0
  556. tactus-0.35.0/tests/cli/test_validate_command.py +64 -0
  557. tactus-0.35.0/tests/cli/test_version_command.py +19 -0
  558. tactus-0.35.0/tests/core/dependencies/test_registry.py +220 -0
  559. tactus-0.35.0/tests/core/test_config_manager.py +999 -0
  560. tactus-0.35.0/tests/core/test_dsl_stubs_additional.py +2494 -0
  561. tactus-0.35.0/tests/core/test_dsl_stubs_minimal.py +93 -0
  562. tactus-0.35.0/tests/core/test_dsl_stubs_utils.py +44 -0
  563. tactus-0.35.0/tests/core/test_execution_context.py +466 -0
  564. tactus-0.35.0/tests/core/test_lua_sandbox_helpers.py +304 -0
  565. tactus-0.35.0/tests/core/test_lua_sandbox_security.py +161 -0
  566. tactus-0.35.0/tests/core/test_message_history_manager.py +299 -0
  567. tactus-0.35.0/tests/core/test_mocking.py +123 -0
  568. tactus-0.35.0/tests/core/test_output_validator.py +216 -0
  569. tactus-0.35.0/tests/core/test_registry_builder_errors.py +51 -0
  570. tactus-0.35.0/tests/core/test_runtime_dependencies.py +61 -0
  571. tactus-0.35.0/tests/core/test_runtime_enhance_handles.py +88 -0
  572. tactus-0.35.0/tests/core/test_runtime_execute_branches.py +867 -0
  573. tactus-0.35.0/tests/core/test_runtime_execute_workflow.py +218 -0
  574. tactus-0.35.0/tests/core/test_runtime_helpers.py +572 -0
  575. tactus-0.35.0/tests/core/test_runtime_init.py +43 -0
  576. tactus-0.35.0/tests/core/test_runtime_inject_primitives.py +178 -0
  577. tactus-0.35.0/tests/core/test_runtime_inputs.py +475 -0
  578. tactus-0.35.0/tests/core/test_runtime_named_procedures.py +112 -0
  579. tactus-0.35.0/tests/core/test_runtime_output_models.py +64 -0
  580. tactus-0.35.0/tests/core/test_runtime_setup_agents_branches.py +233 -0
  581. tactus-0.35.0/tests/core/test_runtime_setup_agents_tools_output.py +674 -0
  582. tactus-0.35.0/tests/core/test_runtime_templates.py +116 -0
  583. tactus-0.35.0/tests/core/test_runtime_tool_source.py +665 -0
  584. tactus-0.35.0/tests/core/test_runtime_toolsets.py +852 -0
  585. tactus-0.35.0/tests/core/test_script_mode.py +237 -0
  586. tactus-0.35.0/tests/core/test_template_resolver.py +51 -0
  587. tactus-0.35.0/tests/core/test_yaml_parser.py +361 -0
  588. tactus-0.35.0/tests/docs/test_docs_extractor.py +405 -0
  589. tactus-0.35.0/tests/docs/test_docs_init.py +25 -0
  590. tactus-0.35.0/tests/docs/test_docs_models.py +19 -0
  591. tactus-0.35.0/tests/docs/test_html_renderer.py +58 -0
  592. tactus-0.35.0/tests/dspy/__init__.py +1 -0
  593. tactus-0.35.0/tests/dspy/test_agent_execution.py +1554 -0
  594. tactus-0.35.0/tests/dspy/test_agent_handle.py +136 -0
  595. tactus-0.35.0/tests/dspy/test_agent_helpers.py +147 -0
  596. tactus-0.35.0/tests/dspy/test_agent_mocking.py +67 -0
  597. tactus-0.35.0/tests/dspy/test_agent_utilities.py +111 -0
  598. tactus-0.35.0/tests/dspy/test_broker_lm.py +413 -0
  599. tactus-0.35.0/tests/dspy/test_config.py +161 -0
  600. tactus-0.35.0/tests/dspy/test_config_utilities.py +80 -0
  601. tactus-0.35.0/tests/dspy/test_history.py +123 -0
  602. tactus-0.35.0/tests/dspy/test_mock_field_normalization.py +100 -0
  603. tactus-0.35.0/tests/dspy/test_module_parameter.py +142 -0
  604. tactus-0.35.0/tests/dspy/test_module_utilities.py +536 -0
  605. tactus-0.35.0/tests/dspy/test_prediction_messages.py +157 -0
  606. tactus-0.35.0/tests/dspy/test_signature.py +63 -0
  607. tactus-0.35.0/tests/dspy/test_streaming.py +276 -0
  608. tactus-0.35.0/tests/fixtures/brave_search_mcp_server.py +36 -0
  609. tactus-0.35.0/tests/fixtures/filesystem_mcp_server.py +38 -0
  610. tactus-0.35.0/tests/ide_backend/test_assistant_service.py +468 -0
  611. tactus-0.35.0/tests/ide_backend/test_assistant_tools.py +291 -0
  612. tactus-0.35.0/tests/ide_backend/test_chat_server.py +285 -0
  613. tactus-0.35.0/tests/ide_backend/test_coding_assistant.py +236 -0
  614. tactus-0.35.0/tests/ide_backend/test_config_helpers.py +69 -0
  615. tactus-0.35.0/tests/ide_backend/test_config_server.py +772 -0
  616. tactus-0.35.0/tests/ide_backend/test_config_server_api.py +419 -0
  617. tactus-0.35.0/tests/ide_backend/test_events.py +51 -0
  618. tactus-0.35.0/tests/ide_backend/test_ide_server.py +607 -0
  619. tactus-0.35.0/tests/ide_backend/test_ide_server_additional.py +91 -0
  620. tactus-0.35.0/tests/ide_backend/test_ide_server_basics.py +117 -0
  621. tactus-0.35.0/tests/ide_backend/test_ide_server_error_branches.py +672 -0
  622. tactus-0.35.0/tests/ide_backend/test_ide_server_hitl.py +20 -0
  623. tactus-0.35.0/tests/ide_backend/test_ide_server_hitl_chat_stream.py +66 -0
  624. tactus-0.35.0/tests/ide_backend/test_ide_server_lsp_additional.py +49 -0
  625. tactus-0.35.0/tests/ide_backend/test_ide_server_lsp_chat.py +133 -0
  626. tactus-0.35.0/tests/ide_backend/test_ide_server_metadata.py +222 -0
  627. tactus-0.35.0/tests/ide_backend/test_ide_server_misc.py +946 -0
  628. tactus-0.35.0/tests/ide_backend/test_ide_server_run_stream.py +850 -0
  629. tactus-0.35.0/tests/ide_backend/test_ide_server_stream_errors.py +67 -0
  630. tactus-0.35.0/tests/ide_backend/test_ide_server_stream_failures.py +403 -0
  631. tactus-0.35.0/tests/ide_backend/test_ide_server_stream_success.py +458 -0
  632. tactus-0.35.0/tests/ide_backend/test_ide_server_trace_errors.py +46 -0
  633. tactus-0.35.0/tests/ide_backend/test_ide_server_traces.py +170 -0
  634. tactus-0.35.0/tests/ide_backend/test_ide_server_validate.py +46 -0
  635. tactus-0.35.0/tests/ide_backend/test_logging_capture.py +121 -0
  636. tactus-0.35.0/tests/ide_backend/test_lsp_server.py +219 -0
  637. tactus-0.35.0/tests/ide_backend/test_tactus_lsp_handler.py +154 -0
  638. tactus-0.35.0/tests/ide_backend/test_text_editor_tool.py +229 -0
  639. tactus-0.35.0/tests/primitives/test_checkpoint_primitive.py +125 -0
  640. tactus-0.35.0/tests/primitives/test_control_primitive.py +53 -0
  641. tactus-0.35.0/tests/primitives/test_file_primitive.py +88 -0
  642. tactus-0.35.0/tests/primitives/test_handles.py +338 -0
  643. tactus-0.35.0/tests/primitives/test_host_primitive.py +98 -0
  644. tactus-0.35.0/tests/primitives/test_human_primitive.py +388 -0
  645. tactus-0.35.0/tests/primitives/test_json_primitive.py +115 -0
  646. tactus-0.35.0/tests/primitives/test_log_primitive.py +84 -0
  647. tactus-0.35.0/tests/primitives/test_message_history_primitive.py +501 -0
  648. tactus-0.35.0/tests/primitives/test_model_primitive.py +145 -0
  649. tactus-0.35.0/tests/primitives/test_procedure_callable.py +514 -0
  650. tactus-0.35.0/tests/primitives/test_procedure_primitive.py +534 -0
  651. tactus-0.35.0/tests/primitives/test_retry_primitive.py +125 -0
  652. tactus-0.35.0/tests/primitives/test_session_primitive.py +77 -0
  653. tactus-0.35.0/tests/primitives/test_state_primitive.py +48 -0
  654. tactus-0.35.0/tests/primitives/test_step_primitive.py +99 -0
  655. tactus-0.35.0/tests/primitives/test_system_alert.py +71 -0
  656. tactus-0.35.0/tests/primitives/test_system_primitive.py +69 -0
  657. tactus-0.35.0/tests/primitives/test_tool_handle.py +147 -0
  658. tactus-0.35.0/tests/primitives/test_tool_primitive.py +319 -0
  659. tactus-0.35.0/tests/primitives/test_toolset_primitive.py +237 -0
  660. tactus-0.35.0/tests/protocols/test_protocol_models.py +86 -0
  661. tactus-0.35.0/tests/protocols/test_protocol_stubs.py +27 -0
  662. tactus-0.35.0/tests/protocols/test_protocols_misc.py +146 -0
  663. tactus-0.35.0/tests/protocols/test_storage_protocol.py +12 -0
  664. tactus-0.35.0/tests/providers/test_provider_configurations.py +63 -0
  665. tactus-0.35.0/tests/providers/test_providers.py +143 -0
  666. tactus-0.35.0/tests/sandbox/test_config.py +12 -0
  667. tactus-0.35.0/tests/sandbox/test_container_runner.py +815 -0
  668. tactus-0.35.0/tests/sandbox/test_container_runner_helpers.py +321 -0
  669. tactus-0.35.0/tests/sandbox/test_container_runner_run_container.py +983 -0
  670. tactus-0.35.0/tests/sandbox/test_docker_manager.py +624 -0
  671. tactus-0.35.0/tests/sandbox/test_docker_sandbox_smoke.py +98 -0
  672. tactus-0.35.0/tests/sandbox/test_entrypoint.py +367 -0
  673. tactus-0.35.0/tests/sandbox/test_protocol.py +84 -0
  674. tactus-0.35.0/tests/stdlib/__init__.py +1 -0
  675. tactus-0.35.0/tests/stdlib/classify/__init__.py +1 -0
  676. tactus-0.35.0/tests/stdlib/classify/test_classify_primitive.py +574 -0
  677. tactus-0.35.0/tests/stdlib/classify/test_fuzzy_algorithms.py +174 -0
  678. tactus-0.35.0/tests/stdlib/classify/test_fuzzy_classifier.py +261 -0
  679. tactus-0.35.0/tests/stdlib/classify/test_fuzzy_demo.py +251 -0
  680. tactus-0.35.0/tests/stdlib/classify/test_fuzzy_import_error.py +29 -0
  681. tactus-0.35.0/tests/stdlib/classify/test_llm_classifier_additional.py +157 -0
  682. tactus-0.35.0/tests/stdlib/core/test_base.py +138 -0
  683. tactus-0.35.0/tests/stdlib/core/test_confidence.py +38 -0
  684. tactus-0.35.0/tests/stdlib/core/test_models.py +22 -0
  685. tactus-0.35.0/tests/stdlib/core/test_retry.py +62 -0
  686. tactus-0.35.0/tests/stdlib/core/test_validation.py +109 -0
  687. tactus-0.35.0/tests/stdlib/extract/__init__.py +1 -0
  688. tactus-0.35.0/tests/stdlib/extract/test_extract_primitive.py +162 -0
  689. tactus-0.35.0/tests/stdlib/extract/test_llm_extractor.py +363 -0
  690. tactus-0.35.0/tests/stdlib/io/test_excel.py +46 -0
  691. tactus-0.35.0/tests/stdlib/io/test_excel_parquet_hdf5.py +134 -0
  692. tactus-0.35.0/tests/stdlib/io/test_file.py +31 -0
  693. tactus-0.35.0/tests/stdlib/io/test_file_csv_tsv.py +93 -0
  694. tactus-0.35.0/tests/stdlib/io/test_fs.py +162 -0
  695. tactus-0.35.0/tests/stdlib/io/test_hdf5.py +30 -0
  696. tactus-0.35.0/tests/stdlib/io/test_import_errors.py +42 -0
  697. tactus-0.35.0/tests/stdlib/io/test_serializers.py +129 -0
  698. tactus-0.35.0/tests/stdlib/test_loader.py +233 -0
  699. tactus-0.35.0/tests/stdlib/test_require_python.py +228 -0
  700. tactus-0.35.0/tests/test_checkpoints_integration.py +59 -0
  701. tactus-0.35.0/tests/test_formatter.py +337 -0
  702. tactus-0.35.0/tests/test_mcp_integration.py +162 -0
  703. tactus-0.35.0/tests/test_tracing.py +975 -0
  704. tactus-0.35.0/tests/testing/test_all_examples.py +405 -0
  705. tactus-0.35.0/tests/testing/test_behave_integration.py +127 -0
  706. tactus-0.35.0/tests/testing/test_behave_integration_additional.py +288 -0
  707. tactus-0.35.0/tests/testing/test_builtin_steps.py +350 -0
  708. tactus-0.35.0/tests/testing/test_builtin_steps_additional.py +351 -0
  709. tactus-0.35.0/tests/testing/test_builtin_steps_regex.py +31 -0
  710. tactus-0.35.0/tests/testing/test_context_agent_mocks.py +81 -0
  711. tactus-0.35.0/tests/testing/test_context_capture.py +37 -0
  712. tactus-0.35.0/tests/testing/test_context_edge_cases.py +249 -0
  713. tactus-0.35.0/tests/testing/test_context_fallbacks.py +20 -0
  714. tactus-0.35.0/tests/testing/test_context_helpers.py +74 -0
  715. tactus-0.35.0/tests/testing/test_context_internals.py +87 -0
  716. tactus-0.35.0/tests/testing/test_context_missing_branches.py +216 -0
  717. tactus-0.35.0/tests/testing/test_context_run_wrapper.py +15 -0
  718. tactus-0.35.0/tests/testing/test_custom_steps_additional.py +30 -0
  719. tactus-0.35.0/tests/testing/test_custom_steps_manager.py +100 -0
  720. tactus-0.35.0/tests/testing/test_e2e.py +175 -0
  721. tactus-0.35.0/tests/testing/test_eval_models.py +45 -0
  722. tactus-0.35.0/tests/testing/test_evaluation_runner.py +45 -0
  723. tactus-0.35.0/tests/testing/test_evaluation_runner_additional.py +96 -0
  724. tactus-0.35.0/tests/testing/test_evaluation_runner_edges.py +15 -0
  725. tactus-0.35.0/tests/testing/test_evaluators.py +183 -0
  726. tactus-0.35.0/tests/testing/test_evaluators_additional.py +126 -0
  727. tactus-0.35.0/tests/testing/test_evaluators_import_error.py +55 -0
  728. tactus-0.35.0/tests/testing/test_evaluators_more.py +175 -0
  729. tactus-0.35.0/tests/testing/test_evaluators_traceaware.py +45 -0
  730. tactus-0.35.0/tests/testing/test_gherkin_parser.py +115 -0
  731. tactus-0.35.0/tests/testing/test_gherkin_parser_additional.py +91 -0
  732. tactus-0.35.0/tests/testing/test_integration.py +117 -0
  733. tactus-0.35.0/tests/testing/test_mock_agent.py +102 -0
  734. tactus-0.35.0/tests/testing/test_mock_agent_additional.py +326 -0
  735. tactus-0.35.0/tests/testing/test_mock_dependencies.py +65 -0
  736. tactus-0.35.0/tests/testing/test_mock_dependencies_additional.py +81 -0
  737. tactus-0.35.0/tests/testing/test_mock_hitl.py +63 -0
  738. tactus-0.35.0/tests/testing/test_mock_registry.py +95 -0
  739. tactus-0.35.0/tests/testing/test_mock_registry_additional.py +38 -0
  740. tactus-0.35.0/tests/testing/test_mock_tools.py +63 -0
  741. tactus-0.35.0/tests/testing/test_models.py +161 -0
  742. tactus-0.35.0/tests/testing/test_pydantic_eval_runner.py +242 -0
  743. tactus-0.35.0/tests/testing/test_pydantic_eval_runner_dataset.py +53 -0
  744. tactus-0.35.0/tests/testing/test_pydantic_eval_runner_errors.py +106 -0
  745. tactus-0.35.0/tests/testing/test_pydantic_eval_runner_helpers.py +36 -0
  746. tactus-0.35.0/tests/testing/test_pydantic_eval_runner_import_error.py +32 -0
  747. tactus-0.35.0/tests/testing/test_pydantic_eval_runner_loaders.py +126 -0
  748. tactus-0.35.0/tests/testing/test_pydantic_eval_runner_task.py +71 -0
  749. tactus-0.35.0/tests/testing/test_pydantic_eval_runner_thresholds.py +84 -0
  750. tactus-0.35.0/tests/testing/test_pydantic_eval_runner_trace.py +59 -0
  751. tactus-0.35.0/tests/testing/test_runtime_integration.py +248 -0
  752. tactus-0.35.0/tests/testing/test_test_runner_additional.py +110 -0
  753. tactus-0.35.0/tests/testing/test_test_runner_helpers.py +137 -0
  754. tactus-0.35.0/tests/testing/test_test_runner_run.py +353 -0
  755. tactus-0.35.0/tests/testing/test_test_runner_statuses.py +47 -0
  756. tactus-0.35.0/tests/tracing/test_trace_manager_additional.py +70 -0
  757. tactus-0.35.0/tests/utils/test_cost_calculator.py +35 -0
  758. tactus-0.35.0/tests/utils/test_model_pricing.py +55 -0
  759. tactus-0.35.0/tests/utils/test_safe_file_library.py +561 -0
  760. tactus-0.35.0/tests/utils/test_safe_file_library_additional.py +539 -0
  761. tactus-0.35.0/tests/utils/test_safe_libraries.py +93 -0
  762. tactus-0.35.0/tests/validation/test_semantic_visitor.py +121 -0
  763. tactus-0.35.0/tests/validation/test_semantic_visitor_additional.py +43 -0
  764. tactus-0.35.0/tests/validation/test_semantic_visitor_helpers.py +3923 -0
  765. tactus-0.35.0/tests/validation/test_semantic_visitor_more.py +371 -0
  766. tactus-0.35.0/tests/validation/test_tool_curried_syntax_disallowed.py +57 -0
  767. tactus-0.35.0/tests/validation/test_validator_additional.py +40 -0
  768. tactus-0.35.0/tests/validation/test_validator_helpers.py +28 -0
  769. tactus-0.15.1/.github/workflows/desktop-release.yml +0 -83
  770. tactus-0.15.1/.github/workflows/release.yml +0 -86
  771. tactus-0.15.1/.gitignore +0 -42
  772. tactus-0.15.1/.tactus/config.yml.example +0 -41
  773. tactus-0.15.1/AGENTS.md +0 -395
  774. tactus-0.15.1/CHANGELOG.md +0 -260
  775. tactus-0.15.1/IMPLEMENTATION.md +0 -1918
  776. tactus-0.15.1/Makefile +0 -123
  777. tactus-0.15.1/PKG-INFO +0 -1644
  778. tactus-0.15.1/README.md +0 -1592
  779. tactus-0.15.1/SPECIFICATION.md +0 -2846
  780. tactus-0.15.1/docs/BDD_TESTING.md +0 -551
  781. tactus-0.15.1/docs/CONFIGURATION.md +0 -314
  782. tactus-0.15.1/docs/DURABILITY.md +0 -1366
  783. tactus-0.15.1/docs/STREAMING.md +0 -107
  784. tactus-0.15.1/docs/TOOLS.md +0 -837
  785. tactus-0.15.1/docs/TOOL_ROADMAP.md +0 -1266
  786. tactus-0.15.1/examples/.tactus/config.yml +0 -21
  787. tactus-0.15.1/examples/01-basics-hello-world.tac +0 -53
  788. tactus-0.15.1/examples/02-basics-simple-logic.tac +0 -74
  789. tactus-0.15.1/examples/03-basics-parameters.tac +0 -57
  790. tactus-0.15.1/examples/04-basics-simple-agent.tac +0 -78
  791. tactus-0.15.1/examples/05-basics-multi-model.tac +0 -88
  792. tactus-0.15.1/examples/06-basics-streaming.tac +0 -50
  793. tactus-0.15.1/examples/07-basics-bedrock.tac +0 -83
  794. tactus-0.15.1/examples/08-basics-models.tac +0 -241
  795. tactus-0.15.1/examples/09-basics-google-gemini.tac +0 -141
  796. tactus-0.15.1/examples/10-feature-state.tac +0 -55
  797. tactus-0.15.1/examples/11-feature-message-history.tac +0 -71
  798. tactus-0.15.1/examples/12-feature-structured-output.tac +0 -84
  799. tactus-0.15.1/examples/13-feature-session.tac +0 -71
  800. tactus-0.15.1/examples/14-feature-per-turn-tools-simple.tac +0 -53
  801. tactus-0.15.1/examples/14-feature-per-turn-tools.tac +0 -129
  802. tactus-0.15.1/examples/15-feature-local-tools.tac +0 -95
  803. tactus-0.15.1/examples/15-feature-local-tools.tac.yml +0 -11
  804. tactus-0.15.1/examples/16-feature-toolsets-advanced.tac +0 -165
  805. tactus-0.15.1/examples/16-feature-toolsets-advanced.tac.yml +0 -33
  806. tactus-0.15.1/examples/17-feature-toolsets-dsl.tac +0 -115
  807. tactus-0.15.1/examples/17-feature-toolsets-dsl.tac.yml +0 -6
  808. tactus-0.15.1/examples/18-feature-lua-tools-individual.tac +0 -137
  809. tactus-0.15.1/examples/18-feature-lua-tools-inline.tac +0 -169
  810. tactus-0.15.1/examples/18-feature-lua-tools-toolset.tac +0 -183
  811. tactus-0.15.1/examples/19-feature-direct-tool-calls.tac +0 -143
  812. tactus-0.15.1/examples/20-bdd-complete.tac +0 -126
  813. tactus-0.15.1/examples/21-bdd-passing.tac +0 -95
  814. tactus-0.15.1/examples/30-eval-simple.tac +0 -63
  815. tactus-0.15.1/examples/31-eval-demo.tac +0 -82
  816. tactus-0.15.1/examples/32-eval-success-rate.tac +0 -108
  817. tactus-0.15.1/examples/33-eval-thresholds.tac +0 -83
  818. tactus-0.15.1/examples/34-eval-dataset.tac +0 -83
  819. tactus-0.15.1/examples/35-eval-trace.tac +0 -119
  820. tactus-0.15.1/examples/36-eval-advanced.tac +0 -81
  821. tactus-0.15.1/examples/37-eval-comprehensive.tac +0 -117
  822. tactus-0.15.1/examples/39-model-simple.tac +0 -40
  823. tactus-0.15.1/examples/40-mcp-test.tac +0 -99
  824. tactus-0.15.1/examples/40-model-text-classifier.tac +0 -83
  825. tactus-0.15.1/examples/41-mcp-simple.tac +0 -60
  826. tactus-0.15.1/examples/41-model-pytorch.tac +0 -76
  827. tactus-0.15.1/examples/43-sub-procedure-simple.tac +0 -59
  828. tactus-0.15.1/examples/44-sub-procedure-composition.tac +0 -116
  829. tactus-0.15.1/examples/45-sub-procedure-recursive.tac +0 -78
  830. tactus-0.15.1/examples/46-checkpoint-explicit.tac +0 -98
  831. tactus-0.15.1/examples/47-checkpoint-expensive-ops.tac +0 -83
  832. tactus-0.15.1/examples/48-script-mode-simple.tac +0 -19
  833. tactus-0.15.1/examples/50-inputs-showcase.tac +0 -69
  834. tactus-0.15.1/examples/51-inputs-calculator.tac +0 -80
  835. tactus-0.15.1/examples/52-file-io-basics.tac +0 -87
  836. tactus-0.15.1/examples/53-tsv-file-io.tac +0 -83
  837. tactus-0.15.1/examples/54-json-file-io.tac +0 -136
  838. tactus-0.15.1/examples/55-parquet-file-io.tac +0 -125
  839. tactus-0.15.1/examples/56-hdf5-file-io.tac +0 -146
  840. tactus-0.15.1/examples/57-excel-file-io.tac +0 -150
  841. tactus-0.15.1/examples/58-text-file-io.tac +0 -215
  842. tactus-0.15.1/examples/60-tool-sources.tac +0 -120
  843. tactus-0.15.1/examples/61-inline-toolset-lua.tac +0 -161
  844. tactus-0.15.1/examples/62-mcp-toolset-by-server.tac +0 -173
  845. tactus-0.15.1/examples/63-toolset-import-from-file.tac +0 -164
  846. tactus-0.15.1/examples/65-optional-state-demo.tac +0 -114
  847. tactus-0.15.1/examples/70-mocking-static.tac +0 -146
  848. tactus-0.15.1/examples/71-mocking-temporal.tac +0 -132
  849. tactus-0.15.1/examples/72-mocking-conditional.tac +0 -168
  850. tactus-0.15.1/examples/99-misc-test-loading.tac +0 -15
  851. tactus-0.15.1/examples/README.md +0 -472
  852. tactus-0.15.1/examples/helpers/product.tac +0 -22
  853. tactus-0.15.1/examples/helpers/sum.tac +0 -22
  854. tactus-0.15.1/examples/helpers/text_tools.tac +0 -51
  855. tactus-0.15.1/examples/tools/data_analysis.py +0 -122
  856. tactus-0.15.1/examples/tools/search.py +0 -53
  857. tactus-0.15.1/examples/with_dependencies/simple_http_test.tac +0 -60
  858. tactus-0.15.1/examples/with_dependencies/time_lookup.tac +0 -73
  859. tactus-0.15.1/features/14_stage_and_step_tracking.feature +0 -73
  860. tactus-0.15.1/features/17_lua_dsl_validation.feature +0 -159
  861. tactus-0.15.1/features/18_example_procedures.feature +0 -64
  862. tactus-0.15.1/features/20_parameters.feature +0 -144
  863. tactus-0.15.1/features/21_outputs.feature +0 -146
  864. tactus-0.15.1/features/23_prompts.feature +0 -100
  865. tactus-0.15.1/features/24_bdd_specifications.feature +0 -157
  866. tactus-0.15.1/features/25_bdd_custom_steps.feature +0 -113
  867. tactus-0.15.1/features/26_bdd_evaluation.feature +0 -129
  868. tactus-0.15.1/features/27_default_settings.feature +0 -111
  869. tactus-0.15.1/features/28_custom_prompts.feature +0 -119
  870. tactus-0.15.1/features/29_execution_settings.feature +0 -107
  871. tactus-0.15.1/features/30_session_filters.feature +0 -116
  872. tactus-0.15.1/features/31_matchers.feature +0 -107
  873. tactus-0.15.1/features/42_model_primitive.feature +0 -143
  874. tactus-0.15.1/features/46_explicit_checkpoint.feature +0 -158
  875. tactus-0.15.1/features/50_dspy_integration.feature +0 -108
  876. tactus-0.15.1/features/documentation/Lua DSL/PLAN.md +0 -243
  877. tactus-0.15.1/features/documentation/Lua DSL/README.md +0 -1067
  878. tactus-0.15.1/features/steps/agent_primitives_steps.py +0 -387
  879. tactus-0.15.1/features/steps/dspy_integration_steps.py +0 -488
  880. tactus-0.15.1/features/steps/example_procedures_steps.py +0 -184
  881. tactus-0.15.1/features/steps/human_in_the_loop_steps.py +0 -313
  882. tactus-0.15.1/features/steps/lua_dsl_validation_steps.py +0 -473
  883. tactus-0.15.1/features/steps/result_and_output_steps.py +0 -244
  884. tactus-0.15.1/features/steps/stage_tracking_steps.py +0 -282
  885. tactus-0.15.1/features/steps/storage_backend_steps.py.bak +0 -343
  886. tactus-0.15.1/features/steps/support/__init__.py +0 -19
  887. tactus-0.15.1/features/steps/support/harnesses.py +0 -517
  888. tactus-0.15.1/pyproject.toml +0 -113
  889. tactus-0.15.1/tactus/__init__.py +0 -49
  890. tactus-0.15.1/tactus/adapters/__init__.py +0 -9
  891. tactus-0.15.1/tactus/adapters/cli_hitl.py +0 -189
  892. tactus-0.15.1/tactus/adapters/cli_log.py +0 -223
  893. tactus-0.15.1/tactus/adapters/file_storage.py +0 -367
  894. tactus-0.15.1/tactus/adapters/ide_log.py +0 -62
  895. tactus-0.15.1/tactus/adapters/lua_tools.py +0 -314
  896. tactus-0.15.1/tactus/adapters/mcp.py +0 -289
  897. tactus-0.15.1/tactus/adapters/mcp_manager.py +0 -169
  898. tactus-0.15.1/tactus/adapters/memory.py +0 -53
  899. tactus-0.15.1/tactus/adapters/plugins.py +0 -419
  900. tactus-0.15.1/tactus/backends/http_backend.py +0 -58
  901. tactus-0.15.1/tactus/cli/app.py +0 -1849
  902. tactus-0.15.1/tactus/core/config_manager.py +0 -267
  903. tactus-0.15.1/tactus/core/dependencies/registry.py +0 -181
  904. tactus-0.15.1/tactus/core/dsl_stubs.py +0 -1242
  905. tactus-0.15.1/tactus/core/exceptions.py +0 -66
  906. tactus-0.15.1/tactus/core/execution_context.py +0 -472
  907. tactus-0.15.1/tactus/core/lua_sandbox.py +0 -410
  908. tactus-0.15.1/tactus/core/message_history_manager.py +0 -236
  909. tactus-0.15.1/tactus/core/mocking.py +0 -286
  910. tactus-0.15.1/tactus/core/output_validator.py +0 -237
  911. tactus-0.15.1/tactus/core/registry.py +0 -460
  912. tactus-0.15.1/tactus/core/runtime.py +0 -2625
  913. tactus-0.15.1/tactus/core/template_resolver.py +0 -142
  914. tactus-0.15.1/tactus/core/yaml_parser.py +0 -301
  915. tactus-0.15.1/tactus/dspy/__init__.py +0 -38
  916. tactus-0.15.1/tactus/dspy/agent.py +0 -244
  917. tactus-0.15.1/tactus/dspy/config.py +0 -99
  918. tactus-0.15.1/tactus/dspy/history.py +0 -114
  919. tactus-0.15.1/tactus/dspy/module.py +0 -127
  920. tactus-0.15.1/tactus/dspy/prediction.py +0 -142
  921. tactus-0.15.1/tactus/dspy/signature.py +0 -152
  922. tactus-0.15.1/tactus/ide/server.py +0 -1858
  923. tactus-0.15.1/tactus/primitives/__init__.py +0 -47
  924. tactus-0.15.1/tactus/primitives/_deprecated_pydantic_ai/agent.py +0 -1318
  925. tactus-0.15.1/tactus/primitives/_deprecated_pydantic_ai/deps_generator.py +0 -106
  926. tactus-0.15.1/tactus/primitives/_deprecated_pydantic_ai/result.py +0 -260
  927. tactus-0.15.1/tactus/primitives/_deprecated_pydantic_ai/test_agent_tool_integration.py +0 -439
  928. tactus-0.15.1/tactus/primitives/_deprecated_pydantic_ai/test_tool_error_handling.py +0 -371
  929. tactus-0.15.1/tactus/primitives/control.py +0 -168
  930. tactus-0.15.1/tactus/primitives/file.py +0 -229
  931. tactus-0.15.1/tactus/primitives/handles.py +0 -223
  932. tactus-0.15.1/tactus/primitives/human.py +0 -342
  933. tactus-0.15.1/tactus/primitives/json.py +0 -189
  934. tactus-0.15.1/tactus/primitives/log.py +0 -183
  935. tactus-0.15.1/tactus/primitives/message_history.py +0 -157
  936. tactus-0.15.1/tactus/primitives/model.py +0 -125
  937. tactus-0.15.1/tactus/primitives/procedure.py +0 -488
  938. tactus-0.15.1/tactus/primitives/procedure_callable.py +0 -290
  939. tactus-0.15.1/tactus/primitives/retry.py +0 -155
  940. tactus-0.15.1/tactus/primitives/session.py +0 -152
  941. tactus-0.15.1/tactus/primitives/stage.py +0 -202
  942. tactus-0.15.1/tactus/primitives/state.py +0 -182
  943. tactus-0.15.1/tactus/primitives/step.py +0 -152
  944. tactus-0.15.1/tactus/primitives/tool.py +0 -375
  945. tactus-0.15.1/tactus/primitives/tool_handle.py +0 -163
  946. tactus-0.15.1/tactus/primitives/toolset.py +0 -229
  947. tactus-0.15.1/tactus/protocols/__init__.py +0 -38
  948. tactus-0.15.1/tactus/protocols/config.py +0 -102
  949. tactus-0.15.1/tactus/protocols/models.py +0 -341
  950. tactus-0.15.1/tactus/stdlib/__init__.py +0 -97
  951. tactus-0.15.1/tactus/stdlib/done/__init__.py +0 -39
  952. tactus-0.15.1/tactus/stdlib/file/__init__.py +0 -230
  953. tactus-0.15.1/tactus/stdlib/http/__init__.py +0 -197
  954. tactus-0.15.1/tactus/stdlib/log/__init__.py +0 -65
  955. tactus-0.15.1/tactus/stdlib/tools/done.tac +0 -21
  956. tactus-0.15.1/tactus/testing/README.md +0 -284
  957. tactus-0.15.1/tactus/testing/behave_integration.py +0 -357
  958. tactus-0.15.1/tactus/testing/context.py +0 -359
  959. tactus-0.15.1/tactus/testing/evaluation_runner.py +0 -222
  960. tactus-0.15.1/tactus/testing/gherkin_parser.py +0 -135
  961. tactus-0.15.1/tactus/testing/mock_agent.py +0 -69
  962. tactus-0.15.1/tactus/testing/mock_hitl.py +0 -171
  963. tactus-0.15.1/tactus/testing/mock_tools.py +0 -122
  964. tactus-0.15.1/tactus/testing/models.py +0 -115
  965. tactus-0.15.1/tactus/testing/pydantic_eval_runner.py +0 -508
  966. tactus-0.15.1/tactus/testing/steps/builtin.py +0 -614
  967. tactus-0.15.1/tactus/testing/steps/custom.py +0 -69
  968. tactus-0.15.1/tactus/testing/steps/registry.py +0 -68
  969. tactus-0.15.1/tactus/testing/test_runner.py +0 -471
  970. tactus-0.15.1/tactus/tracing/trace_manager.py +0 -417
  971. tactus-0.15.1/tactus/utils/cost_calculator.py +0 -72
  972. tactus-0.15.1/tactus/utils/model_pricing.py +0 -132
  973. tactus-0.15.1/tactus/utils/safe_file_library.py +0 -502
  974. tactus-0.15.1/tactus/utils/safe_libraries.py +0 -234
  975. tactus-0.15.1/tactus/validation/LuaLexerBase.py +0 -67
  976. tactus-0.15.1/tactus/validation/LuaParserBase.py +0 -24
  977. tactus-0.15.1/tactus/validation/error_listener.py +0 -21
  978. tactus-0.15.1/tactus/validation/generated/LuaLexer.py +0 -5549
  979. tactus-0.15.1/tactus/validation/generated/LuaLexerBase.py +0 -67
  980. tactus-0.15.1/tactus/validation/generated/LuaParser.py +0 -6465
  981. tactus-0.15.1/tactus/validation/generated/LuaParserBase.py +0 -24
  982. tactus-0.15.1/tactus/validation/generated/LuaParserVisitor.py +0 -119
  983. tactus-0.15.1/tactus/validation/generated/__init__.py +0 -7
  984. tactus-0.15.1/tactus/validation/grammar/Lua.g4 +0 -1439
  985. tactus-0.15.1/tactus/validation/semantic_visitor.py +0 -596
  986. tactus-0.15.1/tactus/validation/validator.py +0 -157
  987. tactus-0.15.1/tactus-desktop/README.md +0 -88
  988. tactus-0.15.1/tactus-desktop/backend/tactus_backend.spec +0 -101
  989. tactus-0.15.1/tactus-desktop/package-lock.json +0 -4123
  990. tactus-0.15.1/tactus-desktop/package.json +0 -88
  991. tactus-0.15.1/tactus-desktop/preload/preload.ts +0 -19
  992. tactus-0.15.1/tactus-desktop/scripts/build-backend.js +0 -88
  993. tactus-0.15.1/tactus-desktop/src/main.ts +0 -76
  994. tactus-0.15.1/tactus-desktop/src/menu.ts +0 -118
  995. tactus-0.15.1/tactus-ide/ARCHITECTURE.md +0 -515
  996. tactus-0.15.1/tactus-ide/README.md +0 -244
  997. tactus-0.15.1/tactus-ide/backend/test_lsp_server.py +0 -226
  998. tactus-0.15.1/tactus-ide/dev.sh +0 -164
  999. tactus-0.15.1/tactus-ide/frontend/.storybook/main.ts +0 -16
  1000. tactus-0.15.1/tactus-ide/frontend/README.md +0 -125
  1001. tactus-0.15.1/tactus-ide/frontend/demo.ts +0 -187
  1002. tactus-0.15.1/tactus-ide/frontend/package-lock.json +0 -10984
  1003. tactus-0.15.1/tactus-ide/frontend/package.json +0 -67
  1004. tactus-0.15.1/tactus-ide/frontend/postcss.config.js +0 -15
  1005. tactus-0.15.1/tactus-ide/frontend/src/App.tsx +0 -927
  1006. tactus-0.15.1/tactus-ide/frontend/src/commands/registry.ts +0 -145
  1007. tactus-0.15.1/tactus-ide/frontend/src/components/CollapsibleRun.tsx +0 -136
  1008. tactus-0.15.1/tactus-ide/frontend/src/components/FileTree.tsx +0 -191
  1009. tactus-0.15.1/tactus-ide/frontend/src/components/MessageFeed.tsx +0 -83
  1010. tactus-0.15.1/tactus-ide/frontend/src/components/ProcedureInputsModal.tsx +0 -255
  1011. tactus-0.15.1/tactus-ide/frontend/src/components/ResizeHandle.tsx +0 -70
  1012. tactus-0.15.1/tactus-ide/frontend/src/components/ResultsSidebar.tsx +0 -249
  1013. tactus-0.15.1/tactus-ide/frontend/src/components/debugger/CheckpointDetails.stories.tsx +0 -167
  1014. tactus-0.15.1/tactus-ide/frontend/src/components/events/CheckpointEventComponent.tsx +0 -105
  1015. tactus-0.15.1/tactus-ide/frontend/src/components/events/CostEventComponent.tsx +0 -208
  1016. tactus-0.15.1/tactus-ide/frontend/src/components/events/EventRenderer.tsx +0 -101
  1017. tactus-0.15.1/tactus-ide/frontend/src/components/events/LoadingEventComponent.tsx +0 -29
  1018. tactus-0.15.1/tactus-ide/frontend/src/components/metadata/OutputsSection.tsx +0 -42
  1019. tactus-0.15.1/tactus-ide/frontend/src/components/metadata/ParametersSection.tsx +0 -47
  1020. tactus-0.15.1/tactus-ide/frontend/src/components/ui/ai/prompt-input.tsx +0 -109
  1021. tactus-0.15.1/tactus-ide/frontend/src/components/ui/button.tsx +0 -66
  1022. tactus-0.15.1/tactus-ide/frontend/src/components/ui/logo.tsx +0 -579
  1023. tactus-0.15.1/tactus-ide/frontend/src/hooks/useEventStream.ts +0 -289
  1024. tactus-0.15.1/tactus-ide/frontend/src/main.tsx +0 -62
  1025. tactus-0.15.1/tactus-ide/frontend/src/types/events.ts +0 -264
  1026. tactus-0.15.1/tactus-ide/frontend/tsconfig.json +0 -43
  1027. tactus-0.15.1/tactus-ide/frontend/vite.config.ts +0 -26
  1028. tactus-0.15.1/test_checkpoints_integration.py +0 -104
  1029. tactus-0.15.1/tests/adapters/test_lua_tools_adapter.py +0 -379
  1030. tactus-0.15.1/tests/adapters/test_plugins.py +0 -153
  1031. tactus-0.15.1/tests/cli/test_cli.py +0 -121
  1032. tactus-0.15.1/tests/cli/test_cli_inputs.py +0 -381
  1033. tactus-0.15.1/tests/core/test_config_manager.py +0 -251
  1034. tactus-0.15.1/tests/core/test_lua_sandbox_security.py +0 -144
  1035. tactus-0.15.1/tests/core/test_runtime_inputs.py +0 -475
  1036. tactus-0.15.1/tests/primitives/test_retry_primitive.py +0 -33
  1037. tactus-0.15.1/tests/primitives/test_state_primitive.py +0 -24
  1038. tactus-0.15.1/tests/primitives/test_tool_primitive.py +0 -208
  1039. tactus-0.15.1/tests/test_mcp_integration.py +0 -162
  1040. tactus-0.15.1/tests/test_tracing.py +0 -666
  1041. tactus-0.15.1/tests/testing/test_all_examples.py +0 -287
  1042. tactus-0.15.1/tests/testing/test_e2e.py +0 -179
  1043. tactus-0.15.1/tests/testing/test_gherkin_parser.py +0 -115
  1044. tactus-0.15.1/tests/testing/test_integration.py +0 -118
  1045. tactus-0.15.1/tests/testing/test_models.py +0 -161
  1046. tactus-0.15.1/tests/testing/test_runtime_integration.py +0 -247
  1047. tactus-0.15.1/tests/utils/test_safe_file_library.py +0 -557
  1048. {tactus-0.15.1 → tactus-0.35.0}/.claude/agents.md +0 -0
  1049. {tactus-0.15.1 → tactus-0.35.0}/LICENSE +0 -0
  1050. {tactus-0.15.1 → tactus-0.35.0}/behave.ini +0 -0
  1051. {tactus-0.15.1 → tactus-0.35.0}/docs/FILE_IO.md +0 -0
  1052. {tactus-0.15.1 → tactus-0.35.0}/examples/34-eval-dataset.jsonl +0 -0
  1053. {tactus-0.15.1 → tactus-0.35.0}/examples/data/sample.csv +0 -0
  1054. {tactus-0.15.1 → tactus-0.35.0}/examples/mock-config.json +0 -0
  1055. {tactus-0.15.1 → tactus-0.35.0}/examples/models/README.md +0 -0
  1056. {tactus-0.15.1 → tactus-0.35.0}/examples/models/create_sentiment_model.py +0 -0
  1057. {tactus-0.15.1 → tactus-0.35.0}/examples/tools/calculations.py +0 -0
  1058. {tactus-0.15.1 → tactus-0.35.0}/examples/with_dependencies/README.md +0 -0
  1059. {tactus-0.15.1 → tactus-0.35.0}/features/01_state_management.feature +0 -0
  1060. {tactus-0.15.1 → tactus-0.35.0}/features/02_checkpointing.feature +0 -0
  1061. {tactus-0.15.1 → tactus-0.35.0}/features/03_human_in_the_loop.feature +0 -0
  1062. {tactus-0.15.1 → tactus-0.35.0}/features/04_control_flow.feature +0 -0
  1063. {tactus-0.15.1 → tactus-0.35.0}/features/05_tool_integration.feature +0 -0
  1064. {tactus-0.15.1 → tactus-0.35.0}/features/06_retry_logic.feature +0 -0
  1065. {tactus-0.15.1 → tactus-0.35.0}/features/07_file_operations.feature +0 -0
  1066. {tactus-0.15.1 → tactus-0.35.0}/features/08_agent_primitives.feature +0 -0
  1067. {tactus-0.15.1 → tactus-0.35.0}/features/09_workflow_execution.feature +0 -0
  1068. {tactus-0.15.1 → tactus-0.35.0}/features/10_lua_integration.feature +0 -0
  1069. {tactus-0.15.1 → tactus-0.35.0}/features/11_storage_backends.feature +0 -0
  1070. {tactus-0.15.1 → tactus-0.35.0}/features/12_json_operations.feature +0 -0
  1071. {tactus-0.15.1 → tactus-0.35.0}/features/13_logging.feature +0 -0
  1072. {tactus-0.15.1 → tactus-0.35.0}/features/15_procedure_calls.feature +0 -0
  1073. {tactus-0.15.1 → tactus-0.35.0}/features/16_session_management.feature +0 -0
  1074. {tactus-0.15.1 → tactus-0.35.0}/features/19_ide_server.feature +0 -0
  1075. {tactus-0.15.1 → tactus-0.35.0}/features/32_result_object.feature +0 -0
  1076. {tactus-0.15.1 → tactus-0.35.0}/features/33_output_type.feature +0 -0
  1077. {tactus-0.15.1 → tactus-0.35.0}/features/43_sub_procedure_checkpointing.feature +0 -0
  1078. {tactus-0.15.1 → tactus-0.35.0}/features/48_script_mode.feature +0 -0
  1079. {tactus-0.15.1 → tactus-0.35.0}/features/documentation/IDE_SERVER_BEHAVIOR.md +0 -0
  1080. {tactus-0.15.1 → tactus-0.35.0}/features/environment.py +0 -0
  1081. {tactus-0.15.1 → tactus-0.35.0}/features/steps/checkpointing_steps.py +0 -0
  1082. {tactus-0.15.1 → tactus-0.35.0}/features/steps/control_flow_steps.py +0 -0
  1083. {tactus-0.15.1 → tactus-0.35.0}/features/steps/file_operations_steps.py +0 -0
  1084. {tactus-0.15.1 → tactus-0.35.0}/features/steps/ide_server_steps.py +0 -0
  1085. {tactus-0.15.1 → tactus-0.35.0}/features/steps/json_operations_steps.py +0 -0
  1086. {tactus-0.15.1 → tactus-0.35.0}/features/steps/logging_steps.py +0 -0
  1087. {tactus-0.15.1 → tactus-0.35.0}/features/steps/lua_integration_steps.py +0 -0
  1088. {tactus-0.15.1 → tactus-0.35.0}/features/steps/mocking_steps.py +0 -0
  1089. {tactus-0.15.1 → tactus-0.35.0}/features/steps/procedure_calls_steps.py +0 -0
  1090. {tactus-0.15.1 → tactus-0.35.0}/features/steps/retry_logic_steps.py +0 -0
  1091. {tactus-0.15.1 → tactus-0.35.0}/features/steps/session_management_steps.py +0 -0
  1092. {tactus-0.15.1 → tactus-0.35.0}/features/steps/state_management_steps.py +0 -0
  1093. {tactus-0.15.1 → tactus-0.35.0}/features/steps/storage_backend_steps.py +0 -0
  1094. {tactus-0.15.1 → tactus-0.35.0}/features/steps/tool_integration_steps.py +0 -0
  1095. {tactus-0.15.1 → tactus-0.35.0}/features/steps/workflow_execution_steps.py +0 -0
  1096. {tactus-0.15.1 → tactus-0.35.0}/start-web-ide.sh +0 -0
  1097. {tactus-0.15.1 → tactus-0.35.0}/tactus/backends/model_backend.py +0 -0
  1098. {tactus-0.15.1 → tactus-0.35.0}/tactus/backends/pytorch_backend.py +0 -0
  1099. {tactus-0.15.1 → tactus-0.35.0}/tactus/cli/__init__.py +0 -0
  1100. {tactus-0.15.1 → tactus-0.35.0}/tactus/cli/commands/__init__.py +0 -0
  1101. {tactus-0.15.1 → tactus-0.35.0}/tactus/core/__init__.py +0 -0
  1102. {tactus-0.15.1 → tactus-0.35.0}/tactus/core/dependencies/__init__.py +0 -0
  1103. {tactus-0.15.1 → tactus-0.35.0}/tactus/ide/__init__.py +0 -0
  1104. {tactus-0.15.1 → tactus-0.35.0}/tactus/protocols/chat_recorder.py +0 -0
  1105. {tactus-0.15.1 → tactus-0.35.0}/tactus/protocols/hitl.py +0 -0
  1106. {tactus-0.15.1 → tactus-0.35.0}/tactus/protocols/log_handler.py +0 -0
  1107. {tactus-0.15.1 → tactus-0.35.0}/tactus/protocols/storage.py +0 -0
  1108. {tactus-0.15.1 → tactus-0.35.0}/tactus/providers/__init__.py +0 -0
  1109. {tactus-0.15.1 → tactus-0.35.0}/tactus/providers/base.py +0 -0
  1110. {tactus-0.15.1 → tactus-0.35.0}/tactus/providers/bedrock.py +0 -0
  1111. {tactus-0.15.1 → tactus-0.35.0}/tactus/providers/google.py +0 -0
  1112. {tactus-0.15.1 → tactus-0.35.0}/tactus/providers/openai.py +0 -0
  1113. {tactus-0.15.1 → tactus-0.35.0}/tactus/testing/__init__.py +0 -0
  1114. {tactus-0.15.1 → tactus-0.35.0}/tactus/testing/eval_models.py +0 -0
  1115. {tactus-0.15.1 → tactus-0.35.0}/tactus/testing/evaluators.py +0 -0
  1116. {tactus-0.15.1 → tactus-0.35.0}/tactus/testing/events.py +0 -0
  1117. {tactus-0.15.1 → tactus-0.35.0}/tactus/testing/mock_dependencies.py +0 -0
  1118. {tactus-0.15.1 → tactus-0.35.0}/tactus/testing/mock_registry.py +0 -0
  1119. {tactus-0.15.1 → tactus-0.35.0}/tactus/testing/steps/__init__.py +0 -0
  1120. {tactus-0.15.1 → tactus-0.35.0}/tactus/tracing/__init__.py +0 -0
  1121. {tactus-0.15.1 → tactus-0.35.0}/tactus/utils/__init__.py +0 -0
  1122. {tactus-0.15.1 → tactus-0.35.0}/tactus/validation/README.md +0 -0
  1123. {tactus-0.15.1 → tactus-0.35.0}/tactus/validation/__init__.py +0 -0
  1124. {tactus-0.15.1 → tactus-0.35.0}/tactus/validation/generated/LuaLexer.interp +0 -0
  1125. {tactus-0.15.1 → tactus-0.35.0}/tactus/validation/generated/LuaLexer.tokens +0 -0
  1126. {tactus-0.15.1 → tactus-0.35.0}/tactus/validation/generated/LuaParser.interp +0 -0
  1127. {tactus-0.15.1 → tactus-0.35.0}/tactus/validation/generated/LuaParser.tokens +0 -0
  1128. {tactus-0.15.1 → tactus-0.35.0}/tactus/validation/grammar/LuaLexer.g4 +0 -0
  1129. {tactus-0.15.1 → tactus-0.35.0}/tactus/validation/grammar/LuaParser.g4 +0 -0
  1130. {tactus-0.15.1 → tactus-0.35.0}/tactus-desktop/.gitignore +0 -0
  1131. {tactus-0.15.1 → tactus-0.35.0}/tactus-desktop/RUN_ELECTRON.md +0 -0
  1132. {tactus-0.15.1 → tactus-0.35.0}/tactus-desktop/SETUP_COMPLETE.md +0 -0
  1133. {tactus-0.15.1 → tactus-0.35.0}/tactus-desktop/backend/hook-lupa.py +0 -0
  1134. {tactus-0.15.1 → tactus-0.35.0}/tactus-desktop/preload/tsconfig.json +0 -0
  1135. {tactus-0.15.1 → tactus-0.35.0}/tactus-desktop/rebuild-and-test.sh +0 -0
  1136. /tactus-0.15.1/tactus-desktop/scripts/build-frontend.js → /tactus-0.35.0/tactus-desktop/scripts/build-frontend.mjs +0 -0
  1137. {tactus-0.15.1 → tactus-0.35.0}/tactus-desktop/src/backend-manager.ts +0 -0
  1138. {tactus-0.15.1 → tactus-0.35.0}/tactus-desktop/tsconfig.json +0 -0
  1139. {tactus-0.15.1 → tactus-0.35.0}/tactus-ide/CHANGELOG.md +0 -0
  1140. {tactus-0.15.1 → tactus-0.35.0}/tactus-ide/DEV_MODE.md +0 -0
  1141. {tactus-0.15.1 → tactus-0.35.0}/tactus-ide/QUICK_START.md +0 -0
  1142. {tactus-0.15.1 → tactus-0.35.0}/tactus-ide/RESTART_INSTRUCTIONS.md +0 -0
  1143. {tactus-0.15.1 → tactus-0.35.0}/tactus-ide/TROUBLESHOOTING.md +0 -0
  1144. {tactus-0.15.1 → tactus-0.35.0}/tactus-ide/backend/README.md +0 -0
  1145. {tactus-0.15.1 → tactus-0.35.0}/tactus-ide/backend/events.py +0 -0
  1146. {tactus-0.15.1 → tactus-0.35.0}/tactus-ide/backend/logging_capture.py +0 -0
  1147. {tactus-0.15.1 → tactus-0.35.0}/tactus-ide/backend/lsp_server.py +0 -0
  1148. {tactus-0.15.1 → tactus-0.35.0}/tactus-ide/backend/requirements.txt +0 -0
  1149. {tactus-0.15.1 → tactus-0.35.0}/tactus-ide/backend/tactus_lsp_handler.py +0 -0
  1150. {tactus-0.15.1 → tactus-0.35.0}/tactus-ide/frontend/.storybook/preview.ts +0 -0
  1151. {tactus-0.15.1 → tactus-0.35.0}/tactus-ide/frontend/.storybook/vitest.setup.ts +0 -0
  1152. {tactus-0.15.1 → tactus-0.35.0}/tactus-ide/frontend/index.html +0 -0
  1153. {tactus-0.15.1 → tactus-0.35.0}/tactus-ide/frontend/jest.config.js +0 -0
  1154. {tactus-0.15.1 → tactus-0.35.0}/tactus-ide/frontend/src/Editor.tsx +0 -0
  1155. {tactus-0.15.1 → tactus-0.35.0}/tactus-ide/frontend/src/LSPClient.ts +0 -0
  1156. {tactus-0.15.1 → tactus-0.35.0}/tactus-ide/frontend/src/LSPClientHTTP.ts +0 -0
  1157. {tactus-0.15.1 → tactus-0.35.0}/tactus-ide/frontend/src/TactusLanguage.ts +0 -0
  1158. {tactus-0.15.1 → tactus-0.35.0}/tactus-ide/frontend/src/components/CheckpointSummary.tsx +0 -0
  1159. {tactus-0.15.1 → tactus-0.35.0}/tactus-ide/frontend/src/components/Duration.stories.tsx +0 -0
  1160. {tactus-0.15.1 → tactus-0.35.0}/tactus-ide/frontend/src/components/Duration.tsx +0 -0
  1161. {tactus-0.15.1 → tactus-0.35.0}/tactus-ide/frontend/src/components/FileTree.stories.tsx +0 -0
  1162. {tactus-0.15.1 → tactus-0.35.0}/tactus-ide/frontend/src/components/ProcedureInputsDisplay.stories.tsx +0 -0
  1163. {tactus-0.15.1 → tactus-0.35.0}/tactus-ide/frontend/src/components/ProcedureInputsDisplay.tsx +0 -0
  1164. {tactus-0.15.1 → tactus-0.35.0}/tactus-ide/frontend/src/components/ProcedureInputsModal.stories.tsx +0 -0
  1165. {tactus-0.15.1 → tactus-0.35.0}/tactus-ide/frontend/src/components/ProcedureTab.stories.tsx +0 -0
  1166. {tactus-0.15.1 → tactus-0.35.0}/tactus-ide/frontend/src/components/ProcedureTab.tsx +0 -0
  1167. {tactus-0.15.1 → tactus-0.35.0}/tactus-ide/frontend/src/components/ResultsSidebar.stories.tsx +0 -0
  1168. {tactus-0.15.1 → tactus-0.35.0}/tactus-ide/frontend/src/components/Timestamp.stories.tsx +0 -0
  1169. {tactus-0.15.1 → tactus-0.35.0}/tactus-ide/frontend/src/components/Timestamp.tsx +0 -0
  1170. {tactus-0.15.1 → tactus-0.35.0}/tactus-ide/frontend/src/components/TopMenuBar.stories.tsx +0 -0
  1171. {tactus-0.15.1 → tactus-0.35.0}/tactus-ide/frontend/src/components/debugger/CheckpointDetails.tsx +0 -0
  1172. {tactus-0.15.1 → tactus-0.35.0}/tactus-ide/frontend/src/components/debugger/CheckpointList.stories.tsx +0 -0
  1173. {tactus-0.15.1 → tactus-0.35.0}/tactus-ide/frontend/src/components/debugger/CheckpointList.tsx +0 -0
  1174. {tactus-0.15.1 → tactus-0.35.0}/tactus-ide/frontend/src/components/debugger/DebuggerPanel.stories.tsx +0 -0
  1175. {tactus-0.15.1 → tactus-0.35.0}/tactus-ide/frontend/src/components/debugger/DebuggerPanel.tsx +0 -0
  1176. {tactus-0.15.1 → tactus-0.35.0}/tactus-ide/frontend/src/components/debugger/RunSelector.stories.tsx +0 -0
  1177. {tactus-0.15.1 → tactus-0.35.0}/tactus-ide/frontend/src/components/debugger/RunSelector.tsx +0 -0
  1178. {tactus-0.15.1 → tactus-0.35.0}/tactus-ide/frontend/src/components/debugger/StatisticsPanel.stories.tsx +0 -0
  1179. {tactus-0.15.1 → tactus-0.35.0}/tactus-ide/frontend/src/components/debugger/StatisticsPanel.tsx +0 -0
  1180. {tactus-0.15.1 → tactus-0.35.0}/tactus-ide/frontend/src/components/events/AgentStreamingComponent.tsx +0 -0
  1181. {tactus-0.15.1 → tactus-0.35.0}/tactus-ide/frontend/src/components/events/BaseEventComponent.tsx +0 -0
  1182. {tactus-0.15.1 → tactus-0.35.0}/tactus-ide/frontend/src/components/events/CostEventComponent.stories.tsx +0 -0
  1183. {tactus-0.15.1 → tactus-0.35.0}/tactus-ide/frontend/src/components/events/EvaluationEventComponent.stories.tsx +0 -0
  1184. {tactus-0.15.1 → tactus-0.35.0}/tactus-ide/frontend/src/components/events/EvaluationEventComponent.tsx +0 -0
  1185. {tactus-0.15.1 → tactus-0.35.0}/tactus-ide/frontend/src/components/events/ExecutionEventComponent.stories.tsx +0 -0
  1186. {tactus-0.15.1 → tactus-0.35.0}/tactus-ide/frontend/src/components/events/ExecutionEventComponent.tsx +0 -0
  1187. {tactus-0.15.1 → tactus-0.35.0}/tactus-ide/frontend/src/components/events/ExecutionSummaryEventComponent.stories.tsx +0 -0
  1188. {tactus-0.15.1 → tactus-0.35.0}/tactus-ide/frontend/src/components/events/ExecutionSummaryEventComponent.tsx +0 -0
  1189. {tactus-0.15.1 → tactus-0.35.0}/tactus-ide/frontend/src/components/events/LoadingEventComponent.stories.tsx +0 -0
  1190. {tactus-0.15.1 → tactus-0.35.0}/tactus-ide/frontend/src/components/events/LogCluster.tsx +0 -0
  1191. {tactus-0.15.1 → tactus-0.35.0}/tactus-ide/frontend/src/components/events/LogEventComponent.stories.tsx +0 -0
  1192. {tactus-0.15.1 → tactus-0.35.0}/tactus-ide/frontend/src/components/events/LogEventComponent.tsx +0 -0
  1193. {tactus-0.15.1 → tactus-0.35.0}/tactus-ide/frontend/src/components/events/OutputEventComponent.stories.tsx +0 -0
  1194. {tactus-0.15.1 → tactus-0.35.0}/tactus-ide/frontend/src/components/events/OutputEventComponent.tsx +0 -0
  1195. {tactus-0.15.1 → tactus-0.35.0}/tactus-ide/frontend/src/components/events/TestEventComponent.stories.tsx +0 -0
  1196. {tactus-0.15.1 → tactus-0.35.0}/tactus-ide/frontend/src/components/events/TestEventComponent.tsx +0 -0
  1197. {tactus-0.15.1 → tactus-0.35.0}/tactus-ide/frontend/src/components/events/ToolCallEventComponent.tsx +0 -0
  1198. {tactus-0.15.1 → tactus-0.35.0}/tactus-ide/frontend/src/components/events/ValidationEventComponent.stories.tsx +0 -0
  1199. {tactus-0.15.1 → tactus-0.35.0}/tactus-ide/frontend/src/components/events/ValidationEventComponent.tsx +0 -0
  1200. {tactus-0.15.1 → tactus-0.35.0}/tactus-ide/frontend/src/components/metadata/AgentsSection.tsx +0 -0
  1201. {tactus-0.15.1 → tactus-0.35.0}/tactus-ide/frontend/src/components/metadata/EvaluationsSection.tsx +0 -0
  1202. {tactus-0.15.1 → tactus-0.35.0}/tactus-ide/frontend/src/components/metadata/MetadataSections.stories.tsx +0 -0
  1203. {tactus-0.15.1 → tactus-0.35.0}/tactus-ide/frontend/src/components/metadata/SpecificationsSection.tsx +0 -0
  1204. {tactus-0.15.1 → tactus-0.35.0}/tactus-ide/frontend/src/components/metadata/StagesSection.tsx +0 -0
  1205. {tactus-0.15.1 → tactus-0.35.0}/tactus-ide/frontend/src/components/metadata/ToolsSection.tsx +0 -0
  1206. {tactus-0.15.1 → tactus-0.35.0}/tactus-ide/frontend/src/components/scenarios/EvaluateScenarios.stories.tsx +0 -0
  1207. {tactus-0.15.1 → tactus-0.35.0}/tactus-ide/frontend/src/components/scenarios/RunScenarios.stories.tsx +0 -0
  1208. {tactus-0.15.1 → tactus-0.35.0}/tactus-ide/frontend/src/components/scenarios/TestScenarios.stories.tsx +0 -0
  1209. {tactus-0.15.1 → tactus-0.35.0}/tactus-ide/frontend/src/components/scenarios/ValidationScenarios.stories.tsx +0 -0
  1210. {tactus-0.15.1 → tactus-0.35.0}/tactus-ide/frontend/src/components/theme-provider.tsx +0 -0
  1211. {tactus-0.15.1 → tactus-0.35.0}/tactus-ide/frontend/src/components/ui/ai/conversation.tsx +0 -0
  1212. {tactus-0.15.1 → tactus-0.35.0}/tactus-ide/frontend/src/components/ui/ai/message.tsx +0 -0
  1213. {tactus-0.15.1 → tactus-0.35.0}/tactus-ide/frontend/src/components/ui/dialog.tsx +0 -0
  1214. {tactus-0.15.1 → tactus-0.35.0}/tactus-ide/frontend/src/components/ui/input.tsx +0 -0
  1215. {tactus-0.15.1 → tactus-0.35.0}/tactus-ide/frontend/src/components/ui/logo.stories.tsx +0 -0
  1216. {tactus-0.15.1 → tactus-0.35.0}/tactus-ide/frontend/src/components/ui/menubar.tsx +0 -0
  1217. {tactus-0.15.1 → tactus-0.35.0}/tactus-ide/frontend/src/components/ui/scroll-area.tsx +0 -0
  1218. {tactus-0.15.1 → tactus-0.35.0}/tactus-ide/frontend/src/components/ui/separator.tsx +0 -0
  1219. {tactus-0.15.1 → tactus-0.35.0}/tactus-ide/frontend/src/components/ui/tabs.tsx +0 -0
  1220. {tactus-0.15.1 → tactus-0.35.0}/tactus-ide/frontend/src/hooks/useTracing.ts +0 -0
  1221. {tactus-0.15.1 → tactus-0.35.0}/tactus-ide/frontend/src/index.css +0 -0
  1222. {tactus-0.15.1 → tactus-0.35.0}/tactus-ide/frontend/src/lib/utils.ts +0 -0
  1223. {tactus-0.15.1 → tactus-0.35.0}/tactus-ide/frontend/src/types/metadata.ts +0 -0
  1224. {tactus-0.15.1 → tactus-0.35.0}/tactus-ide/frontend/src/types/results.ts +0 -0
  1225. {tactus-0.15.1 → tactus-0.35.0}/tactus-ide/frontend/src/types/tracing.ts +0 -0
  1226. {tactus-0.15.1 → tactus-0.35.0}/tactus-ide/frontend/src/validation/TactusValidator.ts +0 -0
  1227. {tactus-0.15.1 → tactus-0.35.0}/tactus-ide/frontend/src/validation/generated/LuaParser.interp +0 -0
  1228. {tactus-0.15.1 → tactus-0.35.0}/tactus-ide/frontend/src/validation/generated/LuaParser.tokens +0 -0
  1229. {tactus-0.15.1 → tactus-0.35.0}/tactus-ide/frontend/src/validation/types.ts +0 -0
  1230. {tactus-0.15.1 → tactus-0.35.0}/tactus-ide/frontend/src/vite-env.d.ts +0 -0
  1231. {tactus-0.15.1 → tactus-0.35.0}/tactus-ide/frontend/tailwind.config.js +0 -0
  1232. {tactus-0.15.1 → tactus-0.35.0}/tactus-ide/frontend/tsconfig.node.json +0 -0
  1233. {tactus-0.15.1 → tactus-0.35.0}/tactus-ide/frontend/vitest.shims.d.ts +0 -0
  1234. {tactus-0.15.1 → tactus-0.35.0}/tactus-ide/package.json +0 -0
  1235. {tactus-0.15.1 → tactus-0.35.0}/tactus-ide/start-dev.sh +0 -0
  1236. {tactus-0.15.1 → tactus-0.35.0}/tests/__init__.py +0 -0
  1237. {tactus-0.15.1 → tactus-0.35.0}/tests/adapters/__init__.py +0 -0
  1238. {tactus-0.15.1 → tactus-0.35.0}/tests/cli/__init__.py +0 -0
  1239. {tactus-0.15.1 → tactus-0.35.0}/tests/conftest.py +0 -0
  1240. {tactus-0.15.1 → tactus-0.35.0}/tests/core/__init__.py +0 -0
  1241. {tactus-0.15.1 → tactus-0.35.0}/tests/core/test_determinism_safety.py +0 -0
  1242. {tactus-0.15.1 → tactus-0.35.0}/tests/fixtures/__init__.py +0 -0
  1243. {tactus-0.15.1 → tactus-0.35.0}/tests/fixtures/test_mcp_server.py +0 -0
  1244. {tactus-0.15.1 → tactus-0.35.0}/tests/integration/test_named_procedures.py +0 -0
  1245. {tactus-0.15.1 → tactus-0.35.0}/tests/mocks/__init__.py +0 -0
  1246. {tactus-0.15.1 → tactus-0.35.0}/tests/mocks/llm_mocks.py +0 -0
  1247. {tactus-0.15.1 → tactus-0.35.0}/tests/primitives/test_toolset_dsl.py +0 -0
  1248. {tactus-0.15.1 → tactus-0.35.0}/tests/testing/__init__.py +0 -0
  1249. {tactus-0.15.1 → tactus-0.35.0}/tests/testing/conftest.py +0 -0
  1250. {tactus-0.15.1 → tactus-0.35.0}/tests/testing/test_step_registry.py +0 -0
  1251. {tactus-0.15.1 → tactus-0.35.0}/tests/utils/__init__.py +0 -0
  1252. {tactus-0.15.1 → 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 }}
@@ -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
@@ -0,0 +1,12 @@
1
+ # Tactus Configuration File
2
+ # Copy this file to config.yml and add your actual API keys
3
+
4
+ aws:
5
+ profile: default
6
+ region: us-west-2
7
+
8
+ google:
9
+ api_key:
10
+
11
+ openai:
12
+ api_key: