From 1d80969b7f047dc1b8489c77aad4c3caedda6f27 Mon Sep 17 00:00:00 2001 From: merwanehamadi Date: Fri, 6 Oct 2023 12:02:59 -0700 Subject: [PATCH] Fix agbenchmark client (#5578) Signed-off-by: Merwane Hamadi --- .../agent_protocol_client/models/artifact.py | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/benchmark/agbenchmark/agent_protocol_client/models/artifact.py b/benchmark/agbenchmark/agent_protocol_client/models/artifact.py index 88b81ee6e..d2e7c101b 100644 --- a/benchmark/agbenchmark/agent_protocol_client/models/artifact.py +++ b/benchmark/agbenchmark/agent_protocol_client/models/artifact.py @@ -1,16 +1,5 @@ # coding: utf-8 -""" - Agent Communication Protocol - - Specification of the API protocol for communication with an agent. # noqa: E501 - - The version of the OpenAPI document: v0.2 - Generated by OpenAPI Generator (https://openapi-generator.tech) - - Do not edit the class manually. -""" - from __future__ import annotations @@ -76,7 +65,7 @@ class Artifact(BaseModel): "file_name": obj.get("file_name"), "relative_path": obj.get("relative_path"), "created_at": obj.get("created_at"), - "modifed_at": obj.get("modifed_at"), + "modified_at": obj.get("modified_at"), "agent_created": obj.get("agent_created"), } )