diff --git a/src/llama_stack/apis/datatypes.py b/src/llama_stack/apis/datatypes.py index f12cf66a2..287316d43 100644 --- a/src/llama_stack/apis/datatypes.py +++ b/src/llama_stack/apis/datatypes.py @@ -105,7 +105,7 @@ class Api(Enum, metaclass=DynamicApiMeta): :cvar prompts: Prompt versions and management :cvar inspect: Built-in system inspection and introspection """ - file_processing = "file_processing" + file_processors = "file_processors" providers = "providers" inference = "inference" safety = "safety" diff --git a/src/llama_stack/apis/file_processors/__init__.py b/src/llama_stack/apis/file_processors/__init__.py new file mode 100644 index 000000000..f71f6ffaf --- /dev/null +++ b/src/llama_stack/apis/file_processors/__init__.py @@ -0,0 +1,7 @@ +# Copyright (c) Meta Platforms, Inc. and affiliates. +# All rights reserved. +# +# This source code is licensed under the terms described in the LICENSE file in +# the root directory of this source tree. + +from .file_processors import FileProcessors \ No newline at end of file