Skip to content

Commit

Permalink
remove apis/stack.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Ashwin Bharambe committed Sep 20, 2024
1 parent 33db4d2 commit 942cb87
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 35 deletions.
29 changes: 28 additions & 1 deletion docs/openapi_generator/generate.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,34 @@

schema_utils.json_schema_type = json_schema_type

from llama_stack.apis.stack import LlamaStack
from llama_models.llama3.api.datatypes import * # noqa: F403
from llama_stack.apis.agents 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
from llama_stack.apis.batch_inference import * # noqa: F403
from llama_stack.apis.memory import * # noqa: F403
from llama_stack.apis.telemetry import * # noqa: F403
from llama_stack.apis.post_training import * # noqa: F403
from llama_stack.apis.reward_scoring import * # noqa: F403
from llama_stack.apis.synthetic_data_generation import * # noqa: F403
from llama_stack.apis.safety import * # noqa: F403


class LlamaStack(
Inference,
BatchInference,
Agents,
RewardScoring,
Safety,
SyntheticDataGeneration,
Datasets,
Telemetry,
PostTraining,
Memory,
Evaluations,
):
pass


# TODO: this should be fixed in the generator itself so it reads appropriate annotations
Expand Down
34 changes: 0 additions & 34 deletions llama_stack/apis/stack.py

This file was deleted.

0 comments on commit 942cb87

Please sign in to comment.