From e88009f84990d2c8c4b9468fea0451ae3637e336 Mon Sep 17 00:00:00 2001 From: Nuno Campos Date: Fri, 10 May 2024 15:39:49 -0700 Subject: [PATCH] Lint --- backend/app/api/runs.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/backend/app/api/runs.py b/backend/app/api/runs.py index eb70c93e..9300e9de 100644 --- a/backend/app/api/runs.py +++ b/backend/app/api/runs.py @@ -1,4 +1,5 @@ from typing import Any, Dict, Optional, Sequence, Union +from uuid import UUID import langsmith.client from fastapi import APIRouter, BackgroundTasks, HTTPException @@ -101,7 +102,7 @@ async def config_schema() -> dict: if tracing_is_enabled(): langsmith_client = langsmith.client.Client() - class BaseFeedback(BaseModel): + class FeedbackCreateRequest(BaseModel): """ Shared information between create requests of feedback and feedback objects """