Fix agbenchmark client (#5578)

Signed-off-by: Merwane Hamadi <merwanehamadi@gmail.com>
pull/5579/head^2
merwanehamadi 2023-10-06 12:02:59 -07:00 committed by GitHub
parent 47eb5124fa
commit 1d80969b7f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 12 deletions

View File

@ -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"),
}
)