diff --git a/toolkits/google/arcade_google/tools/gmail.py b/toolkits/google/arcade_google/tools/gmail.py index f90aa17b..ccf846e2 100644 --- a/toolkits/google/arcade_google/tools/gmail.py +++ b/toolkits/google/arcade_google/tools/gmail.py @@ -497,16 +497,12 @@ async def list_threads( async def get_thread( context: ToolContext, thread_id: Annotated[str, "The ID of the thread to retrieve"], - metadata_headers: Annotated[ - Optional[list[str]], "When given and format is METADATA, only include headers specified." - ] = None, ) -> Annotated[dict, "A dictionary containing the thread details"]: """Get the specified thread by ID.""" params = { "userId": "me", "id": thread_id, "format": "full", - "metadataHeaders": metadata_headers, } params = remove_none_values(params)