mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-12-31 04:53:54 +00:00
The first draft of the Preprocessing API.
This commit is contained in:
parent
7f9b767277
commit
aa1b670d5c
18 changed files with 327 additions and 0 deletions
26
llama_stack/providers/registry/preprocessing.py
Normal file
26
llama_stack/providers/registry/preprocessing.py
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
# 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 typing import List
|
||||
|
||||
from llama_stack.providers.datatypes import (
|
||||
Api,
|
||||
InlineProviderSpec,
|
||||
ProviderSpec,
|
||||
)
|
||||
|
||||
|
||||
def available_providers() -> List[ProviderSpec]:
|
||||
return [
|
||||
InlineProviderSpec(
|
||||
api=Api.preprocessing,
|
||||
provider_type="inline::docling",
|
||||
pip_packages=["docling"],
|
||||
module="llama_stack.providers.inline.preprocessing.docling",
|
||||
config_class="llama_stack.providers.inline.preprocessing.docling.InlineDoclingConfig",
|
||||
api_dependencies=[],
|
||||
),
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue