precommit

This commit is contained in:
Xi Yan 2025-03-19 10:38:35 -07:00
parent 9650549a54
commit 0352e36294
2 changed files with 2 additions and 8 deletions

View file

@ -5,13 +5,13 @@
# the root directory of this source tree. # the root directory of this source tree.
from typing import Any, Dict from typing import Any, Dict
from pydantic import BaseModel
from llama_stack.providers.utils.kvstore.config import ( from llama_stack.providers.utils.kvstore.config import (
KVStoreConfig, KVStoreConfig,
SqliteKVStoreConfig, SqliteKVStoreConfig,
) )
from pydantic import BaseModel
class MetaReferenceEvaluationConfig(BaseModel): class MetaReferenceEvaluationConfig(BaseModel):
kvstore: KVStoreConfig kvstore: KVStoreConfig

View file

@ -3,8 +3,6 @@
# #
# This source code is licensed under the terms described in the LICENSE file in # This source code is licensed under the terms described in the LICENSE file in
# the root directory of this source tree. # the root directory of this source tree.
import json
from typing import Any, Dict, List, Optional
from llama_stack.apis.agents import Agents from llama_stack.apis.agents import Agents
from llama_stack.apis.datasetio import DatasetIO from llama_stack.apis.datasetio import DatasetIO
@ -12,11 +10,7 @@ from llama_stack.apis.datasets import Datasets
from llama_stack.apis.inference import Inference from llama_stack.apis.inference import Inference
from llama_stack.providers.datatypes import BenchmarksProtocolPrivate from llama_stack.providers.datatypes import BenchmarksProtocolPrivate
from tqdm import tqdm
from .....apis.benchmarks import Benchmark from .....apis.benchmarks import Benchmark
from .....apis.common.job_types import Job
from .....apis.evaluation.evaluation import ( from .....apis.evaluation.evaluation import (
Evaluation, Evaluation,
EvaluationCandidate, EvaluationCandidate,