Commit b5c3f098 authored by Kostas Chartsias's avatar Kostas Chartsias
Browse files

feat: amendments for multi-step agentic operations

parent 2ba081b7
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -53,7 +53,7 @@ async def create_groq_agent():

    agent = MCPAgent(
        client=client,
        max_steps=10,
        max_steps=20,
        system_prompt=CONVERSATION_MEMORY_PROMPT,
        llm=llm,
        verbose=True,
+2 −2
Original line number Diff line number Diff line
@@ -141,7 +141,7 @@ async def register_app_definition(inp: RegisterAppDefinitionInput) -> dict:

async def delete_app_definition(inp: DeleteAppDefinitionInput) -> dict:
    """
    Delete all the information and content related to an Application.
    Delete all the information and content related to an application definition id. If there are multiple ones, invoke the tool multiple times.
    """
    url = f"{get_session_service_url()}/apps/{inp.sessionId}"
    logger.debug("Deleting app definition from: %s", url)
@@ -301,7 +301,7 @@ async def get_app_instances() -> dict:

async def delete_app_instance(inp: DeleteAppInstanceInput) -> dict:
    """
    Delete an instantiated or deployed application by app instance id.
    Delete an instantiated or deployed application by app instance id. If there are multiple ones, invoke the tool multiple times.
    """
    url = f"{get_session_service_url()}/appinstances/{inp.appInstanceId}"
    logger.debug("Deleting app instance from: %s", url)