add control plane API

This commit is contained in:
Ashwin Bharambe 2024-09-16 21:41:24 -07:00
parent d1959e6889
commit b31f0f6e4e
3 changed files with 44 additions and 0 deletions

View file

@ -6,6 +6,7 @@
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
@ -21,6 +22,7 @@ from llama_stack.apis.safety import * # noqa: F403
class LlamaStack(
Inference,
BatchInference,
ControlPlane,
Agents,
RewardScoring,
Safety,