forked from phoenix-oss/llama-stack-mirror
* [1/n] migrate inference/chat_completion * migrate inference/completion * inference/completion * inference regenerate openapi spec * safety api * migrate agentic system * migrate apis without implementations * re-generate openapi spec * remove hack from openapi generator * fix inference * fix inference * openapi generator rerun * Simplified Telemetry API and tying it to logger (#57) * Simplified Telemetry API and tying it to logger * small update which adds a METRIC type * move span events one level down into structured log events --------- Co-authored-by: Ashwin Bharambe <ashwin@meta.com> * fix api to work with openapi generator * fix agentic calling inference * together adapter inference * update inference adapters --------- Co-authored-by: Ashwin Bharambe <ashwin.bharambe@gmail.com> Co-authored-by: Ashwin Bharambe <ashwin@meta.com>
63 lines
1.5 KiB
Python
63 lines
1.5 KiB
Python
# Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
# All rights reserved.
|
|
#
|
|
# This source code is licensed under the terms described in the LICENSE file in
|
|
# the root directory of this source tree.
|
|
|
|
from enum import Enum
|
|
from typing import Any, Dict, Optional, Protocol
|
|
|
|
from llama_models.llama3.api.datatypes import URL
|
|
|
|
from llama_models.schema_utils import json_schema_type, webmethod
|
|
|
|
from pydantic import BaseModel
|
|
|
|
|
|
@json_schema_type
|
|
class TrainEvalDatasetColumnType(Enum):
|
|
dialog = "dialog"
|
|
text = "text"
|
|
media = "media"
|
|
number = "number"
|
|
json = "json"
|
|
|
|
|
|
@json_schema_type
|
|
class TrainEvalDataset(BaseModel):
|
|
"""Dataset to be used for training or evaluating language models."""
|
|
|
|
# TODO(ashwin): figure out if we need to add an enum for a "dataset type"
|
|
|
|
columns: Dict[str, TrainEvalDatasetColumnType]
|
|
content_url: URL
|
|
metadata: Optional[Dict[str, Any]] = None
|
|
|
|
|
|
@json_schema_type
|
|
class CreateDatasetRequest(BaseModel):
|
|
"""Request to create a dataset."""
|
|
|
|
uuid: str
|
|
dataset: TrainEvalDataset
|
|
|
|
|
|
class Datasets(Protocol):
|
|
@webmethod(route="/datasets/create")
|
|
def create_dataset(
|
|
self,
|
|
uuid: str,
|
|
dataset: TrainEvalDataset,
|
|
) -> None: ...
|
|
|
|
@webmethod(route="/datasets/get")
|
|
def get_dataset(
|
|
self,
|
|
dataset_uuid: str,
|
|
) -> TrainEvalDataset: ...
|
|
|
|
@webmethod(route="/datasets/delete")
|
|
def delete_dataset(
|
|
self,
|
|
dataset_uuid: str,
|
|
) -> None: ...
|