.gitignore
CHANGELOG.md
CLAUDE.md
COPYRIGHT
Dockerfile
LICENSE
README.md
pyproject.toml
pytest.ini
setup.py
.github/ISSUE_TEMPLATE/release-checklist.md
.vscode/settings.json
.vscode/tasks.json
bin/config-analyzer.py
bin/config_bash
docs/.gitignore
docs/LLMChat.png
docs/LLMEvaluateWebPage.png
docs/README.md
docs/TalkPipe.png
docs/TalkPipe.xcf
docs/make_structure_diagram.sh
docs/quickstart.md
docs/structure.tex
docs/talkpipe_diagram.png
docs/api-reference/README.md
docs/api-reference/chatterlang-script.md
docs/api-reference/chatterlang-server.md
docs/api-reference/chatterlang-workbench.md
docs/api-reference/talkpipe-ref.md
docs/architecture/README.md
docs/architecture/chatterlang.md
docs/architecture/configuration.md
docs/architecture/extending-talkpipe.md
docs/architecture/pipe-api.md
docs/architecture/streaming.md
docs/tutorials/.gitignore
docs/tutorials/README.md
docs/tutorials/Tutorial_1-Document_Indexing/README.md
docs/tutorials/Tutorial_1-Document_Indexing/Step_1_CreateSyntheticData.sh
docs/tutorials/Tutorial_1-Document_Indexing/Step_2_IndexStories.sh
docs/tutorials/Tutorial_1-Document_Indexing/Step_3_SearchStories.sh
docs/tutorials/Tutorial_1-Document_Indexing/stories.json
docs/tutorials/Tutorial_1-Document_Indexing/story_search_ui.yml
docs/tutorials/Tutorial_2-Search_by_Example_and_RAG/README.md
docs/tutorials/Tutorial_2-Search_by_Example_and_RAG/Step_1_CreateVectorDatabase.sh
docs/tutorials/Tutorial_2-Search_by_Example_and_RAG/Step_2_SearchByExample.sh
docs/tutorials/Tutorial_2-Search_by_Example_and_RAG/Step_3_SpecializedRag.sh
docs/tutorials/Tutorial_2-Search_by_Example_and_RAG/step_3_extras.py
docs/tutorials/Tutorial_2-Search_by_Example_and_RAG/story_by_example_ui.yml
docs/tutorials/Tutorial_3_Report_Writing/README.md
docs/tutorials/Tutorial_3_Report_Writing/Step_1_ExecutiveSummaryGeneration.sh
docs/tutorials/Tutorial_3_Report_Writing/Step_2_DetailedAnalysisReportGeneration.sh
docs/tutorials/Tutorial_3_Report_Writing/Step_3_MultiFormatReportGeneration.sh
docs/tutorials/Tutorial_3_Report_Writing/file_structure.md
docs/tutorials/Tutorial_3_Report_Writing/multi_format_ui.yml
docs/tutorials/Tutorial_3_Report_Writing/report_topic_ui.yml
docs/tutorials/Tutorial_3_Report_Writing/step3_extras.py
docs/tutorials/Tutorial_3_Report_Writing/step_1_extras.py
docs/tutorials/Tutorial_3_Report_Writing/step_2_extras.py
src/talkpipe/__init__.py
src/talkpipe.egg-info/PKG-INFO
src/talkpipe.egg-info/SOURCES.txt
src/talkpipe.egg-info/dependency_links.txt
src/talkpipe.egg-info/entry_points.txt
src/talkpipe.egg-info/requires.txt
src/talkpipe.egg-info/top_level.txt
src/talkpipe/app/__init__.py
src/talkpipe/app/chatterlang_reference_browser.py
src/talkpipe/app/chatterlang_reference_generator.py
src/talkpipe/app/chatterlang_script.py
src/talkpipe/app/chatterlang_serve.py
src/talkpipe/app/chatterlang_workbench.py
src/talkpipe/app/static/.gitignore
src/talkpipe/app/static/favicon.ico
src/talkpipe/app/static/unit-docs.html
src/talkpipe/app/static/unit-docs.txt
src/talkpipe/chatterlang/__init__.py
src/talkpipe/chatterlang/compiler.py
src/talkpipe/chatterlang/parsers.py
src/talkpipe/chatterlang/registry.py
src/talkpipe/data/__init__.py
src/talkpipe/data/email.py
src/talkpipe/data/extraction.py
src/talkpipe/data/html.py
src/talkpipe/data/mongo.py
src/talkpipe/data/rss.py
src/talkpipe/llm/__init__.py
src/talkpipe/llm/chat.py
src/talkpipe/llm/config.py
src/talkpipe/llm/embedding.py
src/talkpipe/llm/embedding_adapters.py
src/talkpipe/llm/prompt_adapters.py
src/talkpipe/operations/__init__.py
src/talkpipe/operations/filtering.py
src/talkpipe/operations/matrices.py
src/talkpipe/operations/signatures.py
src/talkpipe/operations/thread_ops.py
src/talkpipe/operations/transforms.py
src/talkpipe/pipe/__init__.py
src/talkpipe/pipe/basic.py
src/talkpipe/pipe/core.py
src/talkpipe/pipe/fork.py
src/talkpipe/pipe/io.py
src/talkpipe/pipe/math.py
src/talkpipe/search/abstract.py
src/talkpipe/search/simplevectordb.py
src/talkpipe/search/whoosh.py
src/talkpipe/util/__init__.py
src/talkpipe/util/collections.py
src/talkpipe/util/config.py
src/talkpipe/util/data_manipulation.py
src/talkpipe/util/os.py
tests/conftest.py
tests/testutils.py
tests/talkpipe/test_documentation_examples.py
tests/talkpipe/app/test_chatterlang_reference_browser.py
tests/talkpipe/app/test_chatterlang_reference_generator.py
tests/talkpipe/app/test_chatterlang_script.py
tests/talkpipe/app/test_chatterlang_serve.py
tests/talkpipe/chatterlang/test_chatterlang_workbench.py
tests/talkpipe/chatterlang/test_compiler.py
tests/talkpipe/chatterlang/test_parsers.py
tests/talkpipe/data/sample_feed.pkl
tests/talkpipe/data/test.docx
tests/talkpipe/data/test_email.py
tests/talkpipe/data/test_extraction.py
tests/talkpipe/data/test_html.py
tests/talkpipe/data/test_html_exceptions.py
tests/talkpipe/data/test_mogomock.py
tests/talkpipe/data/test_mongo.py
tests/talkpipe/data/test_mongo_integration.py
tests/talkpipe/data/test_rss.py
tests/talkpipe/llm/test_chat.py
tests/talkpipe/llm/test_embedding.py
tests/talkpipe/operations/test_filtering.py
tests/talkpipe/operations/test_matrices.py
tests/talkpipe/operations/test_signatures.py
tests/talkpipe/operations/test_threading.py
tests/talkpipe/operations/test_transforms.py
tests/talkpipe/pipe/test_basic.py
tests/talkpipe/pipe/test_core.py
tests/talkpipe/pipe/test_fork.py
tests/talkpipe/pipe/test_io.py
tests/talkpipe/pipe/test_math.py
tests/talkpipe/search/test_simplevectordb.py
tests/talkpipe/search/test_whoosh.py
tests/talkpipe/util/test_collections.py
tests/talkpipe/util/test_config.py
tests/talkpipe/util/test_data_manipulation.py
tests/talkpipe/util/test_util.py