mirror of
https://github.com/EvolutionAPI/adk-python.git
synced 2025-07-16 04:02:55 -06:00
chore: Migrate json field names to camelCase (1/n)
PiperOrigin-RevId: 757832114
This commit is contained in:
parent
70a6bfae90
commit
f15f64af0f
@ -48,7 +48,9 @@ from opentelemetry.exporter.cloud_trace import CloudTraceSpanExporter
|
|||||||
from opentelemetry.sdk.trace import export
|
from opentelemetry.sdk.trace import export
|
||||||
from opentelemetry.sdk.trace import ReadableSpan
|
from opentelemetry.sdk.trace import ReadableSpan
|
||||||
from opentelemetry.sdk.trace import TracerProvider
|
from opentelemetry.sdk.trace import TracerProvider
|
||||||
|
from pydantic import alias_generators
|
||||||
from pydantic import BaseModel
|
from pydantic import BaseModel
|
||||||
|
from pydantic import ConfigDict
|
||||||
from pydantic import ValidationError
|
from pydantic import ValidationError
|
||||||
from starlette.types import Lifespan
|
from starlette.types import Lifespan
|
||||||
|
|
||||||
@ -121,11 +123,20 @@ class AddSessionToEvalSetRequest(BaseModel):
|
|||||||
|
|
||||||
|
|
||||||
class RunEvalRequest(BaseModel):
|
class RunEvalRequest(BaseModel):
|
||||||
|
model_config = ConfigDict(
|
||||||
|
alias_generator=alias_generators.to_camel,
|
||||||
|
)
|
||||||
|
|
||||||
eval_ids: list[str] # if empty, then all evals in the eval set are run.
|
eval_ids: list[str] # if empty, then all evals in the eval set are run.
|
||||||
eval_metrics: list[EvalMetric]
|
eval_metrics: list[EvalMetric]
|
||||||
|
|
||||||
|
|
||||||
class RunEvalResult(BaseModel):
|
class RunEvalResult(BaseModel):
|
||||||
|
model_config = ConfigDict(
|
||||||
|
alias_generator=alias_generators.to_camel,
|
||||||
|
populate_by_name=True,
|
||||||
|
)
|
||||||
|
|
||||||
eval_set_id: str
|
eval_set_id: str
|
||||||
eval_id: str
|
eval_id: str
|
||||||
final_eval_status: EvalStatus
|
final_eval_status: EvalStatus
|
||||||
|
Loading…
Reference in New Issue
Block a user