mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-12-20 01:18:43 +00:00
feat(api): add readonly connectors API (#4258)
# What does this PR do? Adds a new API for connectors and MCP registry support along with required types. Does not include any implementation for it <!-- If resolving an issue, uncomment and update the line below --> Closes #4235 and #4061 (partially) ## Test Plan no tests included --------- Signed-off-by: Jaideep Rao <jrao@redhat.com> Co-authored-by: Francisco Javier Arceo <arceofrancisco@gmail.com>
This commit is contained in:
parent
470fe55e87
commit
76e47d811a
12 changed files with 1343 additions and 137 deletions
|
|
@ -28,6 +28,7 @@ from llama_stack_api import (
|
|||
Batches,
|
||||
Benchmarks,
|
||||
BenchmarksProtocolPrivate,
|
||||
Connectors,
|
||||
Conversations,
|
||||
DatasetIO,
|
||||
Datasets,
|
||||
|
|
@ -100,6 +101,7 @@ def api_protocol_map(external_apis: dict[Api, ExternalApiSpec] | None = None) ->
|
|||
Api.files: Files,
|
||||
Api.prompts: Prompts,
|
||||
Api.conversations: Conversations,
|
||||
Api.connectors: Connectors,
|
||||
}
|
||||
|
||||
if external_apis:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue