.coveragerc
.gitignore
.readthedocs.yml
AUTHORS.rst
CHANGELOG.rst
DEVELOPING.md
LICENSE.txt
README.md
TESTING.md
app.zip
pyproject.toml
pytest.ini
requirements.dev.txt
requirements.txt
setup.cfg
setup.py
tox.ini
.devcontainer/Dockerfile
.devcontainer/base.Dockerfile
.devcontainer/devcontainer.json
.devcontainer/library-scripts/README.md
.devcontainer/library-scripts/common-debian.sh
.devcontainer/library-scripts/meta.env
.devcontainer/library-scripts/node-debian.sh
.devcontainer/library-scripts/python-debian.sh
.github/workflows/build-docsite.yml
.github/workflows/deploy.yml
.github/workflows/test.yml
.vscode/extensions.json
.vscode/launch.json
.vscode/settings.json
docs/.nojekyll
docs/Makefile
docs/authors.rst
docs/changelog.rst
docs/conf.py
docs/index.rst
docs/license.rst
docs/readme.rst
docs/requirements.txt
docs/_static/.gitignore
src/steamship/__init__.py
src/steamship.egg-info/PKG-INFO
src/steamship.egg-info/SOURCES.txt
src/steamship.egg-info/dependency_links.txt
src/steamship.egg-info/not-zip-safe
src/steamship.egg-info/requires.txt
src/steamship.egg-info/top_level.txt
src/steamship/app/__init__.py
src/steamship/app/app.py
src/steamship/app/lambda_handler.py
src/steamship/app/request.py
src/steamship/app/response.py
src/steamship/base/__init__.py
src/steamship/base/base.py
src/steamship/base/binary_utils.py
src/steamship/base/client.py
src/steamship/base/configuration.py
src/steamship/base/error.py
src/steamship/base/metadata.py
src/steamship/base/mime_types.py
src/steamship/base/request.py
src/steamship/base/response.py
src/steamship/base/tasks.py
src/steamship/client/__init__.py
src/steamship/client/client.py
src/steamship/client/tasks.py
src/steamship/client/operations/__init__.py
src/steamship/client/operations/converter.py
src/steamship/client/operations/corpus_importer.py
src/steamship/client/operations/embedder.py
src/steamship/client/operations/file_importer.py
src/steamship/client/operations/service.py
src/steamship/client/operations/tagger.py
src/steamship/data/__init__.py
src/steamship/data/app.py
src/steamship/data/app_instance.py
src/steamship/data/app_version.py
src/steamship/data/block.py
src/steamship/data/corpus.py
src/steamship/data/embeddings.py
src/steamship/data/file.py
src/steamship/data/plugin.py
src/steamship/data/plugin_instance.py
src/steamship/data/plugin_version.py
src/steamship/data/search.py
src/steamship/data/space.py
src/steamship/data/user.py
src/steamship/data/tags/__init__.py
src/steamship/data/tags/doc_tag.py
src/steamship/data/tags/tag.py
src/steamship/data/tags/tag_kind.py
src/steamship/data/tags/text_tag.py
src/steamship/extension/__init__.py
src/steamship/extension/corpus.py
src/steamship/extension/file.py
src/steamship/plugin/__init__.py
src/steamship/plugin/converter.py
src/steamship/plugin/corpus_importer.py
src/steamship/plugin/embedder.py
src/steamship/plugin/file_importer.py
src/steamship/plugin/service.py
src/steamship/plugin/tagger.py
src/steamship/plugin/inputs/__init__.py
src/steamship/plugin/inputs/block_and_tag_plugin_input.py
src/steamship/plugin/inputs/file_import_plugin_input.py
src/steamship/plugin/inputs/raw_data_plugin_input.py
src/steamship/plugin/outputs/__init__.py
src/steamship/plugin/outputs/block_and_tag_plugin_output.py
src/steamship/plugin/outputs/embedded_items_plugin_output.py
src/steamship/plugin/outputs/raw_data_plugin_output.py
tests/__init__.py
tests/conftest.py
tests/client/__init__.py
tests/client/helpers.py
tests/client/test_client.py
tests/client/operations/__init__.py
tests/client/operations/test_classify.py
tests/client/operations/test_convert.py
tests/client/operations/test_convert_ocr.py
tests/client/operations/test_embed.py
tests/client/operations/test_embed_file.py
tests/client/operations/test_embedding_index.py
tests/client/operations/test_embedding_index_snapshot.py
tests/client/operations/test_tag.py
tests/client/operations/test_tag_file.py
tests/data/__init__.py
tests/data/test_app.py
tests/data/test_app_instance.py
tests/data/test_app_version.py
tests/data/test_configurable_app_instance.py
tests/data/test_corpus.py
tests/data/test_file.py
tests/data/test_img.png
tests/data/test_plugins.py
tests/data/test_space.py
tests/data/test_task_comments.py
tests/data/tags/__init__.py
tests/data/tags/test_file_tags.py
tests/demo_apps/__init__.py
tests/demo_apps/configurable_hello_world.py
tests/demo_apps/demo_app.py
tests/demo_apps/hello_world.py
tests/demo_apps/plugin_configurable_tagger.py
tests/demo_apps/plugin_converter.py
tests/demo_apps/plugin_corpus_importer.py
tests/demo_apps/plugin_embedder.py
tests/demo_apps/plugin_file_importer.py
tests/demo_apps/plugin_parser.py
tests/plugin/__init__.py
tests/plugin/test_converter.py
tests/plugin/test_e2e_configurable_tagger.py
tests/plugin/test_e2e_converter.py
tests/plugin/test_e2e_corpus_importer.py
tests/plugin/test_e2e_embedder.py
tests/plugin/test_e2e_file_importer.py
tests/plugin/test_e2e_parser.py
tests/plugin/test_importer.py
tests/plugin/test_parser.py
tests/server/__init__.py
tests/server/test_app_local.py