@@ -300,6 +300,7 @@ def update(
300300 self ,
301301 path_uuid : str ,
302302 * ,
303+ agent_log_insights_enabled : bool | NotGiven = NOT_GIVEN ,
303304 anthropic_key_uuid : str | NotGiven = NOT_GIVEN ,
304305 conversation_logs_enabled : bool | NotGiven = NOT_GIVEN ,
305306 description : str | NotGiven = NOT_GIVEN ,
@@ -388,6 +389,7 @@ def update(
388389 else f"https://api.digitalocean.com/v2/gen-ai/agents/{ path_uuid } " ,
389390 body = maybe_transform (
390391 {
392+ "agent_log_insights_enabled" : agent_log_insights_enabled ,
391393 "anthropic_key_uuid" : anthropic_key_uuid ,
392394 "conversation_logs_enabled" : conversation_logs_enabled ,
393395 "description" : description ,
@@ -741,6 +743,7 @@ async def update(
741743 self ,
742744 path_uuid : str ,
743745 * ,
746+ agent_log_insights_enabled : bool | NotGiven = NOT_GIVEN ,
744747 anthropic_key_uuid : str | NotGiven = NOT_GIVEN ,
745748 conversation_logs_enabled : bool | NotGiven = NOT_GIVEN ,
746749 description : str | NotGiven = NOT_GIVEN ,
@@ -829,6 +832,7 @@ async def update(
829832 else f"https://api.digitalocean.com/v2/gen-ai/agents/{ path_uuid } " ,
830833 body = await async_maybe_transform (
831834 {
835+ "agent_log_insights_enabled" : agent_log_insights_enabled ,
832836 "anthropic_key_uuid" : anthropic_key_uuid ,
833837 "conversation_logs_enabled" : conversation_logs_enabled ,
834838 "description" : description ,
0 commit comments