.coveragerc
.gitignore
.pre-commit-config.yaml
.readthedocs.yml
AUTHORS.rst
CHANGELOG.rst
DEVELOPING.md
LICENSE.txt
README.md
TESTING.md
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
.idea/.gitignore
.idea/misc.xml
.idea/modules.xml
.idea/python-client.iml
.idea/vcs.xml
.idea/inspectionProfiles/profiles_settings.xml
.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/blockifier.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/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/blockifier.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/export_plugin_input.py
src/steamship/plugin/inputs/file_import_plugin_input.py
src/steamship/plugin/inputs/raw_data_plugin_input.py
src/steamship/plugin/inputs/train_plugin_input.py
src/steamship/plugin/inputs/training_parameter_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
src/steamship/plugin/outputs/train_plugin_output.py
src/steamship/plugin/outputs/training_parameter_plugin_output.py
src/steamship/utils/__init__.py
src/steamship/utils/utils.py
test_assets/palm_tree.png
test_assets/utterances.csv
test_assets/utterances.tsv
tests/__init__.py
tests/conftest.py
tests/app/test_response.py
tests/base/test_binary_utils.py
tests/client/__init__.py
tests/client/test_client.py
tests/client/operations/__init__.py
tests/client/operations/test_blockify.py
tests/client/operations/test_classify.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_block.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/apps/__init__.py
tests/demo_apps/apps/configurable_hello_world.py
tests/demo_apps/apps/demo_app.py
tests/demo_apps/apps/hello_world.py
tests/demo_apps/plugins/__init__.py
tests/demo_apps/plugins/blockifiers/__init__.py
tests/demo_apps/plugins/blockifiers/blockifier.py
tests/demo_apps/plugins/blockifiers/csv_blockifier.py
tests/demo_apps/plugins/blockifiers/tsv_blockifier.py
tests/demo_apps/plugins/importers/__init__.py
tests/demo_apps/plugins/importers/plugin_corpus_importer.py
tests/demo_apps/plugins/importers/plugin_file_importer.py
tests/demo_apps/plugins/taggers/__init__.py
tests/demo_apps/plugins/taggers/plugin_configurable_tagger.py
tests/demo_apps/plugins/taggers/plugin_embedder.py
tests/demo_apps/plugins/taggers/plugin_parser.py
tests/demo_apps/plugins/taggers/plugin_trainable_tagger.py
tests/plugin/__init__.py
tests/plugin/test_blockifier.py
tests/plugin/test_e2e_blockifier.py
tests/plugin/test_e2e_configurable_tagger.py
tests/plugin/test_e2e_corpus_export.py
tests/plugin/test_e2e_corpus_importer.py
tests/plugin/test_e2e_csv_blockifier.py
tests/plugin/test_e2e_embedder.py
tests/plugin/test_e2e_file_importer.py
tests/plugin/test_e2e_tagger.py
tests/plugin/test_e2e_trainable_tagger.py
tests/plugin/test_e2e_tsv_blockifier.py
tests/plugin/test_get_training_parameters.py
tests/plugin/test_importer.py
tests/plugin/test_parser.py
tests/server/__init__.py
tests/server/test_app_local.py
tests/utils/__init__.py
tests/utils/app.py
tests/utils/client.py
tests/utils/deployables.py
tests/utils/file.py
tests/utils/random.py