From d4e2fffc4360426669e37744fecead23d21777b6 Mon Sep 17 00:00:00 2001 From: Abhinav kumar <126642111+Abhinavcode13@users.noreply.github.com> Date: Thu, 29 May 2025 00:05:41 +0530 Subject: [PATCH] refactor: update descriptions for resource creation and manifest application in K8s tool --- python/src/kagent/tools/k8s/_kubectl.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python/src/kagent/tools/k8s/_kubectl.py b/python/src/kagent/tools/k8s/_kubectl.py index 54129e475..41a5b7988 100644 --- a/python/src/kagent/tools/k8s/_kubectl.py +++ b/python/src/kagent/tools/k8s/_kubectl.py @@ -275,7 +275,7 @@ def _get_pod_logs( create_resource = FunctionTool( _create_resource, - description="Create a resource in Kubernetes. Must be a local file.", + description="Create a resource in Kubernetes.", name="create_resource", ) @@ -372,7 +372,7 @@ def _get_pod_logs( apply_manifest = FunctionTool( _apply_manifest, - description="Apply a YAML resource file to the Kubernetes cluster.", + description="Apply a YAML resource to the Kubernetes cluster.", name="_apply_manifest", )