mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-10-05 20:27:35 +00:00
Move control plane to distribution server for now
This commit is contained in:
parent
099ac81bc7
commit
a0bf20f19a
14 changed files with 22 additions and 26 deletions
|
@ -6,7 +6,6 @@
|
|||
|
||||
from llama_models.llama3.api.datatypes import * # noqa: F403
|
||||
from llama_stack.apis.agents import * # noqa: F403
|
||||
from llama_stack.apis.control_plane import * # noqa: F403
|
||||
from llama_stack.apis.dataset import * # noqa: F403
|
||||
from llama_stack.apis.evals import * # noqa: F403
|
||||
from llama_stack.apis.inference import * # noqa: F403
|
||||
|
@ -22,7 +21,6 @@ from llama_stack.apis.safety import * # noqa: F403
|
|||
class LlamaStack(
|
||||
Inference,
|
||||
BatchInference,
|
||||
ControlPlane,
|
||||
Agents,
|
||||
RewardScoring,
|
||||
Safety,
|
||||
|
|
|
@ -9,7 +9,6 @@ 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
|
||||
|
@ -38,7 +37,6 @@ 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