InternalServerError: 500 Error When Creating Reasoning Engine on GCP

Hello GCP Community, #Vertex AI Platform

I’m currently working on deploying a reasoning engine using Google Cloud Platform’s Vertex AI. Below is the relevant snippet of my code:

reasoning_engine = reasoning_engines.ReasoningEngine.create(
    LangchainApp(project=project_id, location=location),
    requirements=[
        "google-cloud-aiplatform==1.50.0",
        "langchain-google-vertexai",
        "langchain-core",
    ],
    display_name="Demo LangChain App",
    description="This is a simple LangChain app.",
    # sys_version="3.10",  # Optional
    extra_packages=[],
)

However, when I run this code, I encounter the following error:

InternalServerError: 500 INTERNAL 13: INTERNAL

1 Like