diff --git a/swagger.json b/swagger.json index be22438..dff4550 100644 --- a/swagger.json +++ b/swagger.json @@ -32,6 +32,10 @@ { "name": "Token", "description": "v1 Token APIs" + }, + { + "name": "Version", + "description": "v1 Version APIs" } ], "paths": { @@ -343,6 +347,30 @@ } } } + }, + "/v1/version": { + "get": { + "summary": "Get engine versions", + "description": "Get version of various engines used by this project", + "tags": ["Version"], + "responses": { + "200": { + "description": "Get a json of versions", + "content": { + "application/json": { + "schema": { + "properties": { + "inference_engine_version": { + "type": "string", + "examples": ["server--b1-2321a5e"] + } + } + } + } + } + } + } + } } }, "components": {