## Delete `agents.functions.delete(strfunction_uuid, FunctionDeleteParams**kwargs) -> FunctionDeleteResponse` **delete** `/v2/gen-ai/agents/{agent_uuid}/functions/{function_uuid}` To delete a function route from an agent, send a DELETE request to `/v2/gen-ai/agents/{agent_uuid}/functions/{function_uuid}`. ### Parameters - **agent\_uuid:** `str` - **function\_uuid:** `str` ### Returns - `class FunctionDeleteResponse` Information about a newly unlinked agent - **agent:** `Optional[APIAgent]` An Agent ### Example ```python from do_gradientai import GradientAI client = GradientAI() function = client.agents.functions.delete( function_uuid="\"123e4567-e89b-12d3-a456-426614174000\"", agent_uuid="\"123e4567-e89b-12d3-a456-426614174000\"", ) print(function.agent) ```