mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-12-12 12:06:04 +00:00
more removal
Signed-off-by: Francisco Javier Arceo <farceo@redhat.com>
This commit is contained in:
parent
80849a6e5f
commit
b94b701317
3 changed files with 0 additions and 7 deletions
|
|
@ -96,7 +96,6 @@ class Api(Enum, metaclass=DynamicApiMeta):
|
||||||
:cvar telemetry: Observability and system monitoring
|
:cvar telemetry: Observability and system monitoring
|
||||||
:cvar models: Model metadata and management
|
:cvar models: Model metadata and management
|
||||||
:cvar shields: Safety shield implementations
|
:cvar shields: Safety shield implementations
|
||||||
:cvar vector_dbs: Vector database management
|
|
||||||
:cvar datasets: Dataset creation and management
|
:cvar datasets: Dataset creation and management
|
||||||
:cvar scoring_functions: Scoring function definitions
|
:cvar scoring_functions: Scoring function definitions
|
||||||
:cvar benchmarks: Benchmark suite management
|
:cvar benchmarks: Benchmark suite management
|
||||||
|
|
@ -122,7 +121,6 @@ class Api(Enum, metaclass=DynamicApiMeta):
|
||||||
|
|
||||||
models = "models"
|
models = "models"
|
||||||
shields = "shields"
|
shields = "shields"
|
||||||
vector_dbs = "vector_dbs"
|
|
||||||
datasets = "datasets"
|
datasets = "datasets"
|
||||||
scoring_functions = "scoring_functions"
|
scoring_functions = "scoring_functions"
|
||||||
benchmarks = "benchmarks"
|
benchmarks = "benchmarks"
|
||||||
|
|
|
||||||
|
|
@ -47,10 +47,6 @@ def builtin_automatically_routed_apis() -> list[AutoRoutedApiInfo]:
|
||||||
routing_table_api=Api.shields,
|
routing_table_api=Api.shields,
|
||||||
router_api=Api.safety,
|
router_api=Api.safety,
|
||||||
),
|
),
|
||||||
AutoRoutedApiInfo(
|
|
||||||
routing_table_api=Api.vector_dbs,
|
|
||||||
router_api=Api.vector_io,
|
|
||||||
),
|
|
||||||
AutoRoutedApiInfo(
|
AutoRoutedApiInfo(
|
||||||
routing_table_api=Api.datasets,
|
routing_table_api=Api.datasets,
|
||||||
router_api=Api.datasetio,
|
router_api=Api.datasetio,
|
||||||
|
|
|
||||||
|
|
@ -32,7 +32,6 @@ def available_providers() -> list[ProviderSpec]:
|
||||||
Api.inference,
|
Api.inference,
|
||||||
Api.safety,
|
Api.safety,
|
||||||
Api.vector_io,
|
Api.vector_io,
|
||||||
Api.vector_dbs,
|
|
||||||
Api.tool_runtime,
|
Api.tool_runtime,
|
||||||
Api.tool_groups,
|
Api.tool_groups,
|
||||||
Api.conversations,
|
Api.conversations,
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue