A partire dal 29 aprile 2025, i modelli Gemini 1.5 Pro e Gemini 1.5 Flash non sono disponibili nei progetti che non li hanno mai utilizzati, inclusi i nuovi progetti. Per maggiori dettagli, vedi Versioni e ciclo di vita dei modelli.
InvalidArgument: 400 Provided filter is not valid.
Possibile causa:
Il formato del filtro non è corretto.
Soluzione consigliata:
Aggiorna la formattazione del filtro in modo che sia corretta. Ad esempio,
potresti utilizzare quanto segue per filtrare per nome visualizzato. Questo filtro non è formato correttamente perché mancano le virgolette:
[[["Facile da capire","easyToUnderstand","thumb-up"],["Il problema è stato risolto","solvedMyProblem","thumb-up"],["Altra","otherUp","thumb-up"]],[["Difficile da capire","hardToUnderstand","thumb-down"],["Informazioni o codice di esempio errati","incorrectInformationOrSampleCode","thumb-down"],["Mancano le informazioni o gli esempi di cui ho bisogno","missingTheInformationSamplesINeed","thumb-down"],["Problema di traduzione","translationIssue","thumb-down"],["Altra","otherDown","thumb-down"]],["Ultimo aggiornamento 2025-09-04 UTC."],[],[],null,["# Troubleshoot managing deployed agents\n\nThis document describes how to resolve errors that you might encounter when\n[managing deployed agents](/vertex-ai/generative-ai/docs/agent-engine/manage/overview).\n\nError when filtering the list of agents\n---------------------------------------\n\n**Issue**:\n\nYou receive an error message similar to the following: \n\n InvalidArgument: 400 Provided filter is not valid.\n\n**Possible cause**:\n\nYour filter isn't formatted properly.\n\n**Recommended solution**:\n\nUpdate the formatting of your filter so it's formatted correctly. For example,\nyou might be using the following to filter by display name. This filter isn't\nformatted correctly because it's missing quotation marks: \n\n from vertexai import agent_engines\n\n agent_engines.list(filter=f'display_name={DISPLAY_NAME}')\n\nIn this case, enclose `{DISPLAY_NAME}` in double-quotation marks: \n\n from vertexai import agent_engines\n\n agent_engines.list(filter=f'display_name=\"{DISPLAY_NAME}\"')"]]