From 8152c1fcb60eefbe4d16d4f4e4160864bc64fe53 Mon Sep 17 00:00:00 2001 From: Reza Rahemtola Date: Fri, 13 Dec 2024 01:04:19 +0900 Subject: [PATCH] feat(agent): Update response class --- libertai_utils/interfaces/agent.py | 4 ++++ pyproject.toml | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/libertai_utils/interfaces/agent.py b/libertai_utils/interfaces/agent.py index 34c34e3..551de23 100644 --- a/libertai_utils/interfaces/agent.py +++ b/libertai_utils/interfaces/agent.py @@ -10,3 +10,7 @@ class BaseDeleteAgentBody(BaseModel): class BaseSetupAgentBody(BaseDeleteAgentBody): account: SubscriptionAccount + + +class UpdateAgentResponse(BaseModel): + instance_ip: str diff --git a/pyproject.toml b/pyproject.toml index 7d04238..8223101 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "libertai-utils" -version = "0.0.8" +version = "0.0.9" description = "LibertAI internal types and functions" authors = ["LibertAI.io team "] readme = "README.md"