gitextract_z_vlte2q/ ├── .agents/ │ └── skills/ │ └── daggr/ │ └── SKILL.md ├── .changeset/ │ ├── README.md │ ├── changeset.cjs │ ├── config.json │ └── fix_changelogs.cjs ├── .github/ │ ├── assets/ │ │ └── run-mode-dropdown-demo.webm │ ├── pull_request_template.md │ └── workflows/ │ ├── comment-queue.yml │ ├── format.yml │ ├── generate-changeset.yml │ ├── publish.yml │ ├── test.yml │ └── trigger-changeset.yml ├── .gitignore ├── CHANGELOG.md ├── CLAUDE.md ├── CONTRIBUTING.md ├── LICENSE ├── MANIFEST.in ├── README.md ├── RELEASE.md ├── build_pypi.sh ├── daggr/ │ ├── CHANGELOG.md │ ├── __init__.py │ ├── _client_cache.py │ ├── _utils.py │ ├── cli.py │ ├── edge.py │ ├── executor.py │ ├── frontend/ │ │ ├── index.html │ │ ├── package.json │ │ ├── src/ │ │ │ ├── App.svelte │ │ │ ├── components/ │ │ │ │ ├── Audio.svelte │ │ │ │ ├── AudioPlayer.svelte │ │ │ │ ├── Button.svelte │ │ │ │ ├── Checkbox.svelte │ │ │ │ ├── CheckboxGroup.svelte │ │ │ │ ├── Code.svelte │ │ │ │ ├── ColorPicker.svelte │ │ │ │ ├── Dataframe.svelte │ │ │ │ ├── Dialogue.svelte │ │ │ │ ├── Dropdown.svelte │ │ │ │ ├── EmbeddedComponent.svelte │ │ │ │ ├── File.svelte │ │ │ │ ├── Gallery.svelte │ │ │ │ ├── HighlightedText.svelte │ │ │ │ ├── Html.svelte │ │ │ │ ├── Image.svelte │ │ │ │ ├── ImageSlider.svelte │ │ │ │ ├── ItemListSection.svelte │ │ │ │ ├── Json.svelte │ │ │ │ ├── Label.svelte │ │ │ │ ├── MapItemsSection.svelte │ │ │ │ ├── Markdown.svelte │ │ │ │ ├── Model3D.svelte │ │ │ │ ├── Number.svelte │ │ │ │ ├── Radio.svelte │ │ │ │ ├── Slider.svelte │ │ │ │ ├── Textbox.svelte │ │ │ │ ├── Video.svelte │ │ │ │ └── index.ts │ │ │ ├── main.ts │ │ │ └── types.ts │ │ ├── svelte.config.js │ │ └── vite.config.ts │ ├── graph.py │ ├── local_space.py │ ├── node.py │ ├── ops.py │ ├── package.json │ ├── port.py │ ├── py.typed │ ├── server.py │ ├── session.py │ └── state.py ├── examples/ │ ├── 01_quickstart.py │ ├── 02_voice_design_comparator_app.py │ ├── 03_mock_podcast_app.py │ ├── 04_complete_podcast_app.py │ ├── 05_local_translation_app.py │ ├── 06_pig_latin_voice_app.py │ ├── 07_image_to_3d_app.py │ ├── 08_text_to_3d_app.py │ ├── 09_slideshow_app.py │ ├── 10_real_podcast_app.py │ ├── 11_viral_content_generator_app.py │ ├── 12_ecommerce_product_generator_app.py │ ├── 13_accessible_image_description_app.py │ ├── 14_food_nutrition_analyzer_app.py │ └── 15_background_removal_with_input_node.py ├── package.json ├── pnpm-workspace.yaml ├── pyproject.toml └── tests/ ├── README.md ├── conftest.py ├── test_api.py ├── test_basic.py ├── test_cache.py ├── test_executor.py ├── test_nodes.py ├── test_persistence.py ├── test_server.py └── ui/ ├── __init__.py ├── conftest.py ├── helpers.py ├── test_basic.py ├── test_cancel.py ├── test_dependency_hash.py ├── test_image_fix.py ├── test_images.py ├── test_run_mode.py ├── test_sheets.py └── test_theme.py