mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-10-05 04:17:32 +00:00
add redis adapter + sqlite provider
This commit is contained in:
parent
b31f0f6e4e
commit
bbf0b59ae4
11 changed files with 251 additions and 0 deletions
|
@ -9,6 +9,7 @@ import inspect
|
|||
from typing import Dict, List
|
||||
|
||||
from llama_stack.apis.agents import Agents
|
||||
from llama_stack.apis.control_plane import ControlPlane
|
||||
from llama_stack.apis.inference import Inference
|
||||
from llama_stack.apis.memory import Memory
|
||||
from llama_stack.apis.safety import Safety
|
||||
|
@ -37,6 +38,7 @@ def api_endpoints() -> Dict[Api, List[ApiEndpoint]]:
|
|||
Api.agents: Agents,
|
||||
Api.memory: Memory,
|
||||
Api.telemetry: Telemetry,
|
||||
Api.control_plane: ControlPlane,
|
||||
}
|
||||
|
||||
for api, protocol in protocols.items():
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue