telize 0.2.2__tar.gz → 0.2.3__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 (94) hide show
  1. {telize-0.2.2 → telize-0.2.3}/PKG-INFO +2 -2
  2. {telize-0.2.2 → telize-0.2.3}/README.md +1 -1
  3. {telize-0.2.2 → telize-0.2.3}/pyproject.toml +1 -1
  4. {telize-0.2.2 → telize-0.2.3}/.github/workflows/ci.yml +0 -0
  5. {telize-0.2.2 → telize-0.2.3}/.github/workflows/publish.yml +0 -0
  6. {telize-0.2.2 → telize-0.2.3}/.gitignore +0 -0
  7. {telize-0.2.2 → telize-0.2.3}/.python-version +0 -0
  8. {telize-0.2.2 → telize-0.2.3}/CHANGELOG.md +0 -0
  9. {telize-0.2.2 → telize-0.2.3}/CONTRIBUTING.md +0 -0
  10. {telize-0.2.2 → telize-0.2.3}/LICENSE +0 -0
  11. {telize-0.2.2 → telize-0.2.3}/examples/call_subflow.yaml +0 -0
  12. {telize-0.2.2 → telize-0.2.3}/examples/data/notes/alpha.md +0 -0
  13. {telize-0.2.2 → telize-0.2.3}/examples/data/notes/beta.md +0 -0
  14. {telize-0.2.2 → telize-0.2.3}/examples/data/sample.txt +0 -0
  15. {telize-0.2.2 → telize-0.2.3}/examples/env_config.yaml +0 -0
  16. {telize-0.2.2 → telize-0.2.3}/examples/llm_loop.yaml +0 -0
  17. {telize-0.2.2 → telize-0.2.3}/examples/llm_save_output.yaml +0 -0
  18. {telize-0.2.2 → telize-0.2.3}/examples/minimal_llm.yaml +0 -0
  19. {telize-0.2.2 → telize-0.2.3}/examples/multi_model.yaml +0 -0
  20. {telize-0.2.2 → telize-0.2.3}/examples/nested_workflow.yaml +0 -0
  21. {telize-0.2.2 → telize-0.2.3}/examples/nested_workflow_child.yaml +0 -0
  22. {telize-0.2.2 → telize-0.2.3}/examples/python_step.yaml +0 -0
  23. {telize-0.2.2 → telize-0.2.3}/examples/read_directory.yaml +0 -0
  24. {telize-0.2.2 → telize-0.2.3}/examples/read_file.yaml +0 -0
  25. {telize-0.2.2 → telize-0.2.3}/examples/shell_to_llm.yaml +0 -0
  26. {telize-0.2.2 → telize-0.2.3}/examples/shell_with_env.yaml +0 -0
  27. {telize-0.2.2 → telize-0.2.3}/examples/show.gif +0 -0
  28. {telize-0.2.2 → telize-0.2.3}/examples/spec_reference.yaml +0 -0
  29. {telize-0.2.2 → telize-0.2.3}/src/telize/__init__.py +0 -0
  30. {telize-0.2.2 → telize-0.2.3}/src/telize/__main__.py +0 -0
  31. {telize-0.2.2 → telize-0.2.3}/src/telize/__version__.py +0 -0
  32. {telize-0.2.2 → telize-0.2.3}/src/telize/cli.py +0 -0
  33. {telize-0.2.2 → telize-0.2.3}/src/telize/config/__init__.py +0 -0
  34. {telize-0.2.2 → telize-0.2.3}/src/telize/config/loader.py +0 -0
  35. {telize-0.2.2 → telize-0.2.3}/src/telize/config/models/__init__.py +0 -0
  36. {telize-0.2.2 → telize-0.2.3}/src/telize/config/models/actions.py +0 -0
  37. {telize-0.2.2 → telize-0.2.3}/src/telize/config/models/config.py +0 -0
  38. {telize-0.2.2 → telize-0.2.3}/src/telize/config/models/flow.py +0 -0
  39. {telize-0.2.2 → telize-0.2.3}/src/telize/config/models/spec.py +0 -0
  40. {telize-0.2.2 → telize-0.2.3}/src/telize/console/__init__.py +0 -0
  41. {telize-0.2.2 → telize-0.2.3}/src/telize/console/display.py +0 -0
  42. {telize-0.2.2 → telize-0.2.3}/src/telize/console/observer.py +0 -0
  43. {telize-0.2.2 → telize-0.2.3}/src/telize/exceptions.py +0 -0
  44. {telize-0.2.2 → telize-0.2.3}/src/telize/providers/__init__.py +0 -0
  45. {telize-0.2.2 → telize-0.2.3}/src/telize/providers/base.py +0 -0
  46. {telize-0.2.2 → telize-0.2.3}/src/telize/providers/openai.py +0 -0
  47. {telize-0.2.2 → telize-0.2.3}/src/telize/providers/registry.py +0 -0
  48. {telize-0.2.2 → telize-0.2.3}/src/telize/py.typed +0 -0
  49. {telize-0.2.2 → telize-0.2.3}/src/telize/runtime/__init__.py +0 -0
  50. {telize-0.2.2 → telize-0.2.3}/src/telize/runtime/actions/__init__.py +0 -0
  51. {telize-0.2.2 → telize-0.2.3}/src/telize/runtime/actions/base.py +0 -0
  52. {telize-0.2.2 → telize-0.2.3}/src/telize/runtime/actions/input.py +0 -0
  53. {telize-0.2.2 → telize-0.2.3}/src/telize/runtime/actions/llm.py +0 -0
  54. {telize-0.2.2 → telize-0.2.3}/src/telize/runtime/actions/python.py +0 -0
  55. {telize-0.2.2 → telize-0.2.3}/src/telize/runtime/actions/registry.py +0 -0
  56. {telize-0.2.2 → telize-0.2.3}/src/telize/runtime/actions/shell.py +0 -0
  57. {telize-0.2.2 → telize-0.2.3}/src/telize/runtime/actions/yaml.py +0 -0
  58. {telize-0.2.2 → telize-0.2.3}/src/telize/runtime/context.py +0 -0
  59. {telize-0.2.2 → telize-0.2.3}/src/telize/runtime/observer.py +0 -0
  60. {telize-0.2.2 → telize-0.2.3}/src/telize/runtime/paths.py +0 -0
  61. {telize-0.2.2 → telize-0.2.3}/src/telize/runtime/planning.py +0 -0
  62. {telize-0.2.2 → telize-0.2.3}/src/telize/runtime/runner.py +0 -0
  63. {telize-0.2.2 → telize-0.2.3}/src/telize/runtime/state.py +0 -0
  64. {telize-0.2.2 → telize-0.2.3}/src/telize/runtime/workflow_input.py +0 -0
  65. {telize-0.2.2 → telize-0.2.3}/src/telize/templating/__init__.py +0 -0
  66. {telize-0.2.2 → telize-0.2.3}/src/telize/templating/context.py +0 -0
  67. {telize-0.2.2 → telize-0.2.3}/src/telize/templating/load.py +0 -0
  68. {telize-0.2.2 → telize-0.2.3}/src/telize/templating/renderer.py +0 -0
  69. {telize-0.2.2 → telize-0.2.3}/tests/conftest.py +0 -0
  70. {telize-0.2.2 → telize-0.2.3}/tests/fixtures/cli_input_workflow.yaml +0 -0
  71. {telize-0.2.2 → telize-0.2.3}/tests/fixtures/external_child_workflow.yaml +0 -0
  72. {telize-0.2.2 → telize-0.2.3}/tests/fixtures/hello_agent_workflow.yaml +0 -0
  73. {telize-0.2.2 → telize-0.2.3}/tests/fixtures/invalid_duplicate_step.yaml +0 -0
  74. {telize-0.2.2 → telize-0.2.3}/tests/fixtures/minimal_workflow.yaml +0 -0
  75. {telize-0.2.2 → telize-0.2.3}/tests/fixtures/shell_only.yaml +0 -0
  76. {telize-0.2.2 → telize-0.2.3}/tests/fixtures/yaml_child_config_workflow.yaml +0 -0
  77. {telize-0.2.2 → telize-0.2.3}/tests/fixtures/yaml_input_workflow.yaml +0 -0
  78. {telize-0.2.2 → telize-0.2.3}/tests/test_cli.py +0 -0
  79. {telize-0.2.2 → telize-0.2.3}/tests/test_console_display.py +0 -0
  80. {telize-0.2.2 → telize-0.2.3}/tests/test_console_observer.py +0 -0
  81. {telize-0.2.2 → telize-0.2.3}/tests/test_llm_system_prompt.py +0 -0
  82. {telize-0.2.2 → telize-0.2.3}/tests/test_loader.py +0 -0
  83. {telize-0.2.2 → telize-0.2.3}/tests/test_loader_env.py +0 -0
  84. {telize-0.2.2 → telize-0.2.3}/tests/test_models.py +0 -0
  85. {telize-0.2.2 → telize-0.2.3}/tests/test_observer.py +0 -0
  86. {telize-0.2.2 → telize-0.2.3}/tests/test_openai_provider.py +0 -0
  87. {telize-0.2.2 → telize-0.2.3}/tests/test_planning.py +0 -0
  88. {telize-0.2.2 → telize-0.2.3}/tests/test_runner.py +0 -0
  89. {telize-0.2.2 → telize-0.2.3}/tests/test_templating.py +0 -0
  90. {telize-0.2.2 → telize-0.2.3}/tests/test_templating_load.py +0 -0
  91. {telize-0.2.2 → telize-0.2.3}/tests/test_version.py +0 -0
  92. {telize-0.2.2 → telize-0.2.3}/tests/test_workflow_input.py +0 -0
  93. {telize-0.2.2 → telize-0.2.3}/tests/test_yaml_action.py +0 -0
  94. {telize-0.2.2 → telize-0.2.3}/uv.lock +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: telize
3
- Version: 0.2.2
3
+ Version: 0.2.3
4
4
  Summary: Automate with flows, not loose prompts. Chain LLM, shell, and code in one YAML pipeline.
5
5
  Project-URL: Homepage, https://github.com/telize-ai/telize
6
6
  Project-URL: Documentation, https://github.com/telize-ai/telize#readme
@@ -42,7 +42,7 @@ Description-Content-Type: text/markdown
42
42
 
43
43
  Telize is a low-code framework for building agent-style pipelines: chain shell commands, file I/O, LLM calls, Python functions, and nested flows in a single workflow file. Configuration is validated before execution, and the CLI shows live progress as each step completes.
44
44
 
45
- ![Telize CLI demo](examples/show.gif)
45
+ ![Telize CLI demo](https://raw.githubusercontent.com/telize-ai/telize/main/examples/show.gif)
46
46
 
47
47
  [CI](https://github.com/telize-ai/telize/actions/workflows/ci.yml) · [Python 3.12+](https://www.python.org/downloads/) · [License](LICENSE)
48
48
 
@@ -4,7 +4,7 @@
4
4
 
5
5
  Telize is a low-code framework for building agent-style pipelines: chain shell commands, file I/O, LLM calls, Python functions, and nested flows in a single workflow file. Configuration is validated before execution, and the CLI shows live progress as each step completes.
6
6
 
7
- ![Telize CLI demo](examples/show.gif)
7
+ ![Telize CLI demo](https://raw.githubusercontent.com/telize-ai/telize/main/examples/show.gif)
8
8
 
9
9
  [CI](https://github.com/telize-ai/telize/actions/workflows/ci.yml) · [Python 3.12+](https://www.python.org/downloads/) · [License](LICENSE)
10
10
 
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "telize"
3
- version = "0.2.2"
3
+ version = "0.2.3"
4
4
  description = "Automate with flows, not loose prompts. Chain LLM, shell, and code in one YAML pipeline."
5
5
  readme = "README.md"
6
6
  license = "Apache-2.0"
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes