Criar um app
Mantenha tudo organizado com as coleções
Salve e categorize o conteúdo com base nas suas preferências.
Criar um app
Mais informações
Para ver a documentação detalhada que inclui este exemplo de código, consulte:
Exemplo de código
Exceto em caso de indicação contrária, o conteúdo desta página é licenciado de acordo com a Licença de atribuição 4.0 do Creative Commons, e as amostras de código são licenciadas de acordo com a Licença Apache 2.0. Para mais detalhes, consulte as políticas do site do Google Developers. Java é uma marca registrada da Oracle e/ou afiliadas.
[[["Fácil de entender","easyToUnderstand","thumb-up"],["Meu problema foi resolvido","solvedMyProblem","thumb-up"],["Outro","otherUp","thumb-up"]],[["Difícil de entender","hardToUnderstand","thumb-down"],["Informações incorretas ou exemplo de código","incorrectInformationOrSampleCode","thumb-down"],["Não contém as informações/amostras de que eu preciso","missingTheInformationSamplesINeed","thumb-down"],["Problema na tradução","translationIssue","thumb-down"],["Outro","otherDown","thumb-down"]],[],[[["\u003cp\u003eThis content provides a Python code sample for creating a search engine using the Vertex AI Agent Builder.\u003c/p\u003e\n"],["\u003cp\u003eThe code demonstrates how to configure a search engine, including setting its industry vertical, solution type, and search tier.\u003c/p\u003e\n"],["\u003cp\u003eIt outlines the process of authenticating to Vertex AI Agent Builder using Application Default Credentials.\u003c/p\u003e\n"],["\u003cp\u003eThe content gives a resource to the Google Cloud sample browser for further exploration of code samples for other Google Cloud products.\u003c/p\u003e\n"]]],[],null,["# Create an app\n\nExplore further\n---------------\n\n\nFor detailed documentation that includes this code sample, see the following:\n\n- [Create a search app](/generative-ai-app-builder/docs/create-engine-es)\n\nCode sample\n-----------\n\n### Python\n\n\nFor more information, see the\n[AI Applications Python API\nreference documentation](/python/docs/reference/discoveryengine/latest).\n\n\nTo authenticate to AI Applications, set up Application Default Credentials.\nFor more information, see\n\n[Set up authentication for a local development environment](/docs/authentication/set-up-adc-local-dev-environment).\n\n from typing import List\n\n from google.api_core.client_options import ClientOptions\n from google.cloud import discoveryengine_v1 as discoveryengine\n\n # TODO(developer): Uncomment these variables before running the sample.\n # project_id = \"YOUR_PROJECT_ID\"\n # location = \"YOUR_LOCATION\" # Values: \"global\"\n # engine_id = \"YOUR_ENGINE_ID\"\n # data_store_ids = [\"YOUR_DATA_STORE_ID\"]\n\n\n def create_engine_sample(\n project_id: str, location: str, engine_id: str, data_store_ids: List[str]\n ) -\u003e str:\n # For more information, refer to:\n # https://cloud.google.com/generative-ai-app-builder/docs/locations#specify_a_multi-region_for_your_data_store\n client_options = (\n ClientOptions(api_endpoint=f\"{location}-discoveryengine.googleapis.com\")\n if location != \"global\"\n else None\n )\n\n # Create a client\n client = discoveryengine.EngineServiceClient(client_options=client_options)\n\n # The full resource name of the collection\n # e.g. projects/{project}/locations/{location}/collections/default_collection\n parent = client.collection_path(\n project=project_id,\n location=location,\n collection=\"default_collection\",\n )\n\n engine = discoveryengine.Engine(\n display_name=\"Test Engine\",\n # Options: GENERIC, MEDIA, HEALTHCARE_FHIR\n industry_vertical=discoveryengine.IndustryVertical.GENERIC,\n # Options: SOLUTION_TYPE_RECOMMENDATION, SOLUTION_TYPE_SEARCH, SOLUTION_TYPE_CHAT, SOLUTION_TYPE_GENERATIVE_CHAT\n solution_type=discoveryengine.SolutionType.SOLUTION_TYPE_SEARCH,\n # For search apps only\n search_engine_config=discoveryengine.Engine.SearchEngineConfig(\n # Options: SEARCH_TIER_STANDARD, SEARCH_TIER_ENTERPRISE\n search_tier=discoveryengine.SearchTier.SEARCH_TIER_ENTERPRISE,\n # Options: SEARCH_ADD_ON_LLM, SEARCH_ADD_ON_UNSPECIFIED\n search_add_ons=[discoveryengine.SearchAddOn.SEARCH_ADD_ON_LLM],\n ),\n # For generic recommendation apps only\n # similar_documents_config=discoveryengine.Engine.SimilarDocumentsEngineConfig,\n data_store_ids=data_store_ids,\n )\n\n request = discoveryengine.CreateEngineRequest(\n parent=parent,\n engine=engine,\n engine_id=engine_id,\n )\n\n # Make the request\n operation = client.create_engine(request=request)\n\n print(f\"Waiting for operation to complete: {operation.operation.name}\")\n response = operation.result()\n\n # After the operation is complete,\n # get information from operation metadata\n metadata = discoveryengine.CreateEngineMetadata(operation.metadata)\n\n # Handle the response\n print(response)\n print(metadata)\n\n return operation.operation.name\n\nWhat's next\n-----------\n\n\nTo search and filter code samples for other Google Cloud products, see the\n[Google Cloud sample browser](/docs/samples?product=genappbuilder)."]]