From 40146e6ae3b911037bb154fc718a9e6aaa621b73 Mon Sep 17 00:00:00 2001 From: SwiftyOS Date: Tue, 29 Aug 2023 13:23:42 +0200 Subject: [PATCH 1/3] Fixed Schema Validation Error --- schemas/openapi.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/schemas/openapi.yml b/schemas/openapi.yml index 32e7489..e466d01 100644 --- a/schemas/openapi.yml +++ b/schemas/openapi.yml @@ -441,6 +441,7 @@ components: description: File to upload. type: string format: binary + example: "binary representation of file" relative_path: description: Relative path of the artifact in the agent's workspace. type: string From dc7aa888a08c7769d3655e7f020066c35d2a8602 Mon Sep 17 00:00:00 2001 From: SwiftyOS Date: Tue, 29 Aug 2023 13:24:09 +0200 Subject: [PATCH 2/3] Add myself to the RFC's for the work I did --- rfcs/2023-08-28-Pagination-RFC.md | 2 +- rfcs/2023-08-28-agent-created-RFC-.md | 2 +- rfcs/2023-08-28-list-entities-RFC.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/rfcs/2023-08-28-Pagination-RFC.md b/rfcs/2023-08-28-Pagination-RFC.md index 3d5c40d..0df023c 100644 --- a/rfcs/2023-08-28-Pagination-RFC.md +++ b/rfcs/2023-08-28-Pagination-RFC.md @@ -2,7 +2,7 @@ | Feature name | Support Pagination | | :------------ |:-----------------------------------------| -| **Author(s)** | Merwane Hamadi (merwanehamadi@gmail.com) | +| **Author(s)** | Merwane Hamadi (merwanehamadi@gmail.com) Craig Swift (craigswift13@gmail.com)| | **RFC PR:** | [PR 53](https://github.com/e2b-dev/agent-protocol/pull/53) | | **Updated** | 2023-08-28 | | **Obsoletes** | | diff --git a/rfcs/2023-08-28-agent-created-RFC-.md b/rfcs/2023-08-28-agent-created-RFC-.md index a509b12..8d9e2b7 100644 --- a/rfcs/2023-08-28-agent-created-RFC-.md +++ b/rfcs/2023-08-28-agent-created-RFC-.md @@ -2,7 +2,7 @@ | Feature name | Artifact Created At | |:--------------|:-----------------------------------------| -| **Author(s)** | Merwane Hamadi (merwanehamadi@gmail.com) | +| **Author(s)** | Merwane Hamadi (merwanehamadi@gmail.com) Craig Swift (craigswift13@gmail.com) | | **RFC PR:** | | | **Created** | 2023-08-28 | | **Obsoletes** | | diff --git a/rfcs/2023-08-28-list-entities-RFC.md b/rfcs/2023-08-28-list-entities-RFC.md index fbe1d34..013149d 100644 --- a/rfcs/2023-08-28-list-entities-RFC.md +++ b/rfcs/2023-08-28-list-entities-RFC.md @@ -2,7 +2,7 @@ | Feature name | Support Pagination | | :------------ |:-----------------------------------------| -| **Author(s)** | Merwane Hamadi (merwanehamadi@gmail.com) | +| **Author(s)** | Merwane Hamadi (merwanehamadi@gmail.com) Craig Swift (craigswift13@gmail.com)| | **RFC PR:** | | | **Updated** | 2023-08-28 | | **Obsoletes** | | From 8b0e48dda361bfeca6897d2d1025cfb206c94526 Mon Sep 17 00:00:00 2001 From: GitHub Actions Date: Tue, 29 Aug 2023 11:25:02 +0000 Subject: [PATCH 3/3] Lint OpenAPI schemas --- schemas/openapi.json | 6 ++++-- schemas/openapi.yml | 2 +- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/schemas/openapi.json b/schemas/openapi.json index 1ac236f..8f52381 100644 --- a/schemas/openapi.json +++ b/schemas/openapi.json @@ -1291,7 +1291,8 @@ "file": { "description": "File to upload.", "type": "string", - "format": "binary" + "format": "binary", + "example": "binary representation of file" }, "relative_path": { "description": "Relative path of the artifact in the agent's workspace.", @@ -1878,7 +1879,8 @@ "file": { "description": "File to upload.", "type": "string", - "format": "binary" + "format": "binary", + "example": "binary representation of file" }, "relative_path": { "description": "Relative path of the artifact in the agent's workspace.", diff --git a/schemas/openapi.yml b/schemas/openapi.yml index e466d01..c8d8d6a 100644 --- a/schemas/openapi.yml +++ b/schemas/openapi.yml @@ -441,7 +441,7 @@ components: description: File to upload. type: string format: binary - example: "binary representation of file" + example: binary representation of file relative_path: description: Relative path of the artifact in the agent's workspace. type: string