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.
- {telize-0.2.2 → telize-0.2.3}/PKG-INFO +2 -2
- {telize-0.2.2 → telize-0.2.3}/README.md +1 -1
- {telize-0.2.2 → telize-0.2.3}/pyproject.toml +1 -1
- {telize-0.2.2 → telize-0.2.3}/.github/workflows/ci.yml +0 -0
- {telize-0.2.2 → telize-0.2.3}/.github/workflows/publish.yml +0 -0
- {telize-0.2.2 → telize-0.2.3}/.gitignore +0 -0
- {telize-0.2.2 → telize-0.2.3}/.python-version +0 -0
- {telize-0.2.2 → telize-0.2.3}/CHANGELOG.md +0 -0
- {telize-0.2.2 → telize-0.2.3}/CONTRIBUTING.md +0 -0
- {telize-0.2.2 → telize-0.2.3}/LICENSE +0 -0
- {telize-0.2.2 → telize-0.2.3}/examples/call_subflow.yaml +0 -0
- {telize-0.2.2 → telize-0.2.3}/examples/data/notes/alpha.md +0 -0
- {telize-0.2.2 → telize-0.2.3}/examples/data/notes/beta.md +0 -0
- {telize-0.2.2 → telize-0.2.3}/examples/data/sample.txt +0 -0
- {telize-0.2.2 → telize-0.2.3}/examples/env_config.yaml +0 -0
- {telize-0.2.2 → telize-0.2.3}/examples/llm_loop.yaml +0 -0
- {telize-0.2.2 → telize-0.2.3}/examples/llm_save_output.yaml +0 -0
- {telize-0.2.2 → telize-0.2.3}/examples/minimal_llm.yaml +0 -0
- {telize-0.2.2 → telize-0.2.3}/examples/multi_model.yaml +0 -0
- {telize-0.2.2 → telize-0.2.3}/examples/nested_workflow.yaml +0 -0
- {telize-0.2.2 → telize-0.2.3}/examples/nested_workflow_child.yaml +0 -0
- {telize-0.2.2 → telize-0.2.3}/examples/python_step.yaml +0 -0
- {telize-0.2.2 → telize-0.2.3}/examples/read_directory.yaml +0 -0
- {telize-0.2.2 → telize-0.2.3}/examples/read_file.yaml +0 -0
- {telize-0.2.2 → telize-0.2.3}/examples/shell_to_llm.yaml +0 -0
- {telize-0.2.2 → telize-0.2.3}/examples/shell_with_env.yaml +0 -0
- {telize-0.2.2 → telize-0.2.3}/examples/show.gif +0 -0
- {telize-0.2.2 → telize-0.2.3}/examples/spec_reference.yaml +0 -0
- {telize-0.2.2 → telize-0.2.3}/src/telize/__init__.py +0 -0
- {telize-0.2.2 → telize-0.2.3}/src/telize/__main__.py +0 -0
- {telize-0.2.2 → telize-0.2.3}/src/telize/__version__.py +0 -0
- {telize-0.2.2 → telize-0.2.3}/src/telize/cli.py +0 -0
- {telize-0.2.2 → telize-0.2.3}/src/telize/config/__init__.py +0 -0
- {telize-0.2.2 → telize-0.2.3}/src/telize/config/loader.py +0 -0
- {telize-0.2.2 → telize-0.2.3}/src/telize/config/models/__init__.py +0 -0
- {telize-0.2.2 → telize-0.2.3}/src/telize/config/models/actions.py +0 -0
- {telize-0.2.2 → telize-0.2.3}/src/telize/config/models/config.py +0 -0
- {telize-0.2.2 → telize-0.2.3}/src/telize/config/models/flow.py +0 -0
- {telize-0.2.2 → telize-0.2.3}/src/telize/config/models/spec.py +0 -0
- {telize-0.2.2 → telize-0.2.3}/src/telize/console/__init__.py +0 -0
- {telize-0.2.2 → telize-0.2.3}/src/telize/console/display.py +0 -0
- {telize-0.2.2 → telize-0.2.3}/src/telize/console/observer.py +0 -0
- {telize-0.2.2 → telize-0.2.3}/src/telize/exceptions.py +0 -0
- {telize-0.2.2 → telize-0.2.3}/src/telize/providers/__init__.py +0 -0
- {telize-0.2.2 → telize-0.2.3}/src/telize/providers/base.py +0 -0
- {telize-0.2.2 → telize-0.2.3}/src/telize/providers/openai.py +0 -0
- {telize-0.2.2 → telize-0.2.3}/src/telize/providers/registry.py +0 -0
- {telize-0.2.2 → telize-0.2.3}/src/telize/py.typed +0 -0
- {telize-0.2.2 → telize-0.2.3}/src/telize/runtime/__init__.py +0 -0
- {telize-0.2.2 → telize-0.2.3}/src/telize/runtime/actions/__init__.py +0 -0
- {telize-0.2.2 → telize-0.2.3}/src/telize/runtime/actions/base.py +0 -0
- {telize-0.2.2 → telize-0.2.3}/src/telize/runtime/actions/input.py +0 -0
- {telize-0.2.2 → telize-0.2.3}/src/telize/runtime/actions/llm.py +0 -0
- {telize-0.2.2 → telize-0.2.3}/src/telize/runtime/actions/python.py +0 -0
- {telize-0.2.2 → telize-0.2.3}/src/telize/runtime/actions/registry.py +0 -0
- {telize-0.2.2 → telize-0.2.3}/src/telize/runtime/actions/shell.py +0 -0
- {telize-0.2.2 → telize-0.2.3}/src/telize/runtime/actions/yaml.py +0 -0
- {telize-0.2.2 → telize-0.2.3}/src/telize/runtime/context.py +0 -0
- {telize-0.2.2 → telize-0.2.3}/src/telize/runtime/observer.py +0 -0
- {telize-0.2.2 → telize-0.2.3}/src/telize/runtime/paths.py +0 -0
- {telize-0.2.2 → telize-0.2.3}/src/telize/runtime/planning.py +0 -0
- {telize-0.2.2 → telize-0.2.3}/src/telize/runtime/runner.py +0 -0
- {telize-0.2.2 → telize-0.2.3}/src/telize/runtime/state.py +0 -0
- {telize-0.2.2 → telize-0.2.3}/src/telize/runtime/workflow_input.py +0 -0
- {telize-0.2.2 → telize-0.2.3}/src/telize/templating/__init__.py +0 -0
- {telize-0.2.2 → telize-0.2.3}/src/telize/templating/context.py +0 -0
- {telize-0.2.2 → telize-0.2.3}/src/telize/templating/load.py +0 -0
- {telize-0.2.2 → telize-0.2.3}/src/telize/templating/renderer.py +0 -0
- {telize-0.2.2 → telize-0.2.3}/tests/conftest.py +0 -0
- {telize-0.2.2 → telize-0.2.3}/tests/fixtures/cli_input_workflow.yaml +0 -0
- {telize-0.2.2 → telize-0.2.3}/tests/fixtures/external_child_workflow.yaml +0 -0
- {telize-0.2.2 → telize-0.2.3}/tests/fixtures/hello_agent_workflow.yaml +0 -0
- {telize-0.2.2 → telize-0.2.3}/tests/fixtures/invalid_duplicate_step.yaml +0 -0
- {telize-0.2.2 → telize-0.2.3}/tests/fixtures/minimal_workflow.yaml +0 -0
- {telize-0.2.2 → telize-0.2.3}/tests/fixtures/shell_only.yaml +0 -0
- {telize-0.2.2 → telize-0.2.3}/tests/fixtures/yaml_child_config_workflow.yaml +0 -0
- {telize-0.2.2 → telize-0.2.3}/tests/fixtures/yaml_input_workflow.yaml +0 -0
- {telize-0.2.2 → telize-0.2.3}/tests/test_cli.py +0 -0
- {telize-0.2.2 → telize-0.2.3}/tests/test_console_display.py +0 -0
- {telize-0.2.2 → telize-0.2.3}/tests/test_console_observer.py +0 -0
- {telize-0.2.2 → telize-0.2.3}/tests/test_llm_system_prompt.py +0 -0
- {telize-0.2.2 → telize-0.2.3}/tests/test_loader.py +0 -0
- {telize-0.2.2 → telize-0.2.3}/tests/test_loader_env.py +0 -0
- {telize-0.2.2 → telize-0.2.3}/tests/test_models.py +0 -0
- {telize-0.2.2 → telize-0.2.3}/tests/test_observer.py +0 -0
- {telize-0.2.2 → telize-0.2.3}/tests/test_openai_provider.py +0 -0
- {telize-0.2.2 → telize-0.2.3}/tests/test_planning.py +0 -0
- {telize-0.2.2 → telize-0.2.3}/tests/test_runner.py +0 -0
- {telize-0.2.2 → telize-0.2.3}/tests/test_templating.py +0 -0
- {telize-0.2.2 → telize-0.2.3}/tests/test_templating_load.py +0 -0
- {telize-0.2.2 → telize-0.2.3}/tests/test_version.py +0 -0
- {telize-0.2.2 → telize-0.2.3}/tests/test_workflow_input.py +0 -0
- {telize-0.2.2 → telize-0.2.3}/tests/test_yaml_action.py +0 -0
- {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.
|
|
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
|
-

|
|
45
|
+

|
|
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
|
-

|
|
7
|
+

|
|
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
|
|
|
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
|
|
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
|
|
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
|