.flake8
.gitignore
.pre-commit-config.yaml
AUTHORS.rst
CHANGELOG.rst
DEVELOPING.md
LICENSE
README.md
TESTING.md
pyproject.toml
requirements.dev.txt
requirements.txt
setup.cfg
.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/python-publish.yml
.github/workflows/test-main.yml
.github/workflows/test-staging.yml
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/base/utils.py
src/steamship/client/__init__.py
src/steamship/client/client.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/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/operations/__init__.py
src/steamship/data/operations/blockifier.py
src/steamship/data/operations/corpus_importer.py
src/steamship/data/operations/embedder.py
src/steamship/data/operations/tagger.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/plugin/__init__.py
src/steamship/plugin/blockifier.py
src/steamship/plugin/config.py
src/steamship/plugin/corpus_importer.py
src/steamship/plugin/embedder.py
src/steamship/plugin/file_importer.py
src/steamship/plugin/request.py
src/steamship/plugin/service.py
src/steamship/plugin/tagger.py
src/steamship/plugin/trainable_model.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/train_status_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/model_checkpoint.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/huggingface_helper.py
src/steamship/utils/signed_urls.py
src/steamship/utils/url.py
src/steamship/utils/utils.py
src/steamship/utils/zip_archives.py
tests/__init__.py
tests/conftest.py
tests/assets/__init__.py
tests/assets/palm_tree.png
tests/assets/utterances.csv
tests/assets/utterances.tsv
tests/assets/apps/__init__.py
tests/assets/apps/configurable_hello_world.py
tests/assets/apps/demo_app.py
tests/assets/apps/hello_world.py
tests/assets/configs/empty_json.json
tests/assets/configs/one_string_one_int.json
tests/assets/configs/single_integer.json
tests/assets/plugins/__init__.py
tests/assets/plugins/blockifiers/__init__.py
tests/assets/plugins/blockifiers/async_blockifier.py
tests/assets/plugins/blockifiers/blockifier.py
tests/assets/plugins/blockifiers/csv_blockifier.py
tests/assets/plugins/blockifiers/tsv_blockifier.py
tests/assets/plugins/importers/__init__.py
tests/assets/plugins/importers/plugin_corpus_importer.py
tests/assets/plugins/importers/plugin_file_importer.py
tests/assets/plugins/importers/plugin_file_importer_by_url.py
tests/assets/plugins/importers/plugin_file_importer_python_error.py
tests/assets/plugins/importers/plugin_file_importer_steamship_error.py
tests/assets/plugins/taggers/__init__.py
tests/assets/plugins/taggers/plugin_configurable_tagger.py
tests/assets/plugins/taggers/plugin_embedder.py
tests/assets/plugins/taggers/plugin_logging_tagger.py
tests/assets/plugins/taggers/plugin_parser.py
tests/assets/plugins/taggers/plugin_third_party_trainable_tagger.py
tests/assets/plugins/taggers/plugin_trainable_tagger.py
tests/assets/plugins/taggers/plugin_trainable_tagger_config.py
tests/steamship_tests/__init__.py
tests/steamship_tests/app/__init__.py
tests/steamship_tests/app/integration/__init__.py
tests/steamship_tests/app/integration/test_app_error_visibility.py
tests/steamship_tests/app/integration/test_app_instance.py
tests/steamship_tests/app/integration/test_configurable_app_instance.py
tests/steamship_tests/app/integration/test_use_package.py
tests/steamship_tests/app/unit/__init__.py
tests/steamship_tests/app/unit/test_response.py
tests/steamship_tests/app/unit/test_training_input.py
tests/steamship_tests/base/__init__.py
tests/steamship_tests/base/test_binary_utils.py
tests/steamship_tests/base/test_configuration.py
tests/steamship_tests/base/test_response.py
tests/steamship_tests/base/test_steamship_error_serializable.py
tests/steamship_tests/base/test_task.py
tests/steamship_tests/client/__init__.py
tests/steamship_tests/client/test_client.py
tests/steamship_tests/client/operations/__init__.py
tests/steamship_tests/client/operations/test_blockify.py
tests/steamship_tests/client/operations/test_classify.py
tests/steamship_tests/client/operations/test_convert_ocr.py
tests/steamship_tests/client/operations/test_embed.py
tests/steamship_tests/client/operations/test_embed_file.py
tests/steamship_tests/client/operations/test_embedding_index.py
tests/steamship_tests/client/operations/test_embedding_index_snapshot.py
tests/steamship_tests/client/operations/test_tag.py
tests/steamship_tests/client/operations/test_tag_file.py
tests/steamship_tests/data/__init__.py
tests/steamship_tests/data/test_app.py
tests/steamship_tests/data/test_app_version.py
tests/steamship_tests/data/test_block.py
tests/steamship_tests/data/test_corpus.py
tests/steamship_tests/data/test_file.py
tests/steamship_tests/data/test_img.png
tests/steamship_tests/data/test_plugins.py
tests/steamship_tests/data/test_space.py
tests/steamship_tests/data/test_task_comments.py
tests/steamship_tests/data/utterances.csv
tests/steamship_tests/data/tags/__init__.py
tests/steamship_tests/data/tags/test_file_tags.py
tests/steamship_tests/plugin/__init__.py
tests/steamship_tests/plugin/integration/__init__.py
tests/steamship_tests/plugin/integration/test_e2e_async_blockifier.py
tests/steamship_tests/plugin/integration/test_e2e_blockifier.py
tests/steamship_tests/plugin/integration/test_e2e_configurable_tagger.py
tests/steamship_tests/plugin/integration/test_e2e_corpus_export.py
tests/steamship_tests/plugin/integration/test_e2e_corpus_importer.py
tests/steamship_tests/plugin/integration/test_e2e_csv_blockifier.py
tests/steamship_tests/plugin/integration/test_e2e_embedder.py
tests/steamship_tests/plugin/integration/test_e2e_file_importer.py
tests/steamship_tests/plugin/integration/test_e2e_file_importer_by_url.py
tests/steamship_tests/plugin/integration/test_e2e_get_training_parameters.py
tests/steamship_tests/plugin/integration/test_e2e_logging_tagger.py
tests/steamship_tests/plugin/integration/test_e2e_tagger.py
tests/steamship_tests/plugin/integration/test_e2e_third_party_trainable_tagger.py
tests/steamship_tests/plugin/integration/test_e2e_trainable_tagger.py
tests/steamship_tests/plugin/integration/test_e2e_tsv_blockifier.py
tests/steamship_tests/plugin/integration/test_use_plugin.py
tests/steamship_tests/plugin/unit/__init__.py
tests/steamship_tests/plugin/unit/test_blockifier.py
tests/steamship_tests/plugin/unit/test_config_block.py
tests/steamship_tests/plugin/unit/test_corpus_importer.py
tests/steamship_tests/plugin/unit/test_file_importer.py
tests/steamship_tests/plugin/unit/test_response_post_update.py
tests/steamship_tests/plugin/unit/test_service.py
tests/steamship_tests/plugin/unit/test_tagger.py
tests/steamship_tests/plugin/unit/test_trainable_tagger.py
tests/steamship_tests/plugin/unit/test_trainable_tagger_config.py
tests/steamship_tests/plugin/unit/trainable/__init__.py
tests/steamship_tests/plugin/unit/trainable/test_model_checkpoints.py
tests/steamship_tests/plugin/unit/trainable/util.py
tests/steamship_tests/server/__init__.py
tests/steamship_tests/server/test_app_local.py
tests/steamship_tests/server/test_task_timeout.py
tests/steamship_tests/utils/__init__.py
tests/steamship_tests/utils/app.py
tests/steamship_tests/utils/client.py
tests/steamship_tests/utils/deployables.py
tests/steamship_tests/utils/file.py
tests/steamship_tests/utils/fixtures.py
tests/steamship_tests/utils/random.py
tests/steamship_tests/utils/test_client.py
tests/steamship_tests/utils/test_enums.py
tests/steamship_tests/utils/test_signed_urls.py
tests/steamship_tests/utils/test_static_instance_methods.py
tests/steamship_tests/utils/test_zip_archives.py