From 25b0298df56c453e51137206c31ade197c0ba2b9 Mon Sep 17 00:00:00 2001 From: Shruthi Sankepelly Date: Wed, 29 Oct 2025 14:07:33 -0400 Subject: [PATCH] fix typo --- src/llama_stack/apis/datatypes.py | 2 +- src/llama_stack/apis/file_processors/__init__.py | 7 +++++++ 2 files changed, 8 insertions(+), 1 deletion(-) create mode 100644 src/llama_stack/apis/file_processors/__init__.py 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