assets/scripts/setup.py [69:85]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TERRAFORM_VAR_FILE = "vars/env.tfvars"

# GCP resources constants.
ARTIFACT_REGISTRY_REPOSITORY = f"{PROJECT_ID.lower().replace(' ', '-')}-{AGENT_NAME.lower().replace(' ', '-')}-repository"

CLOUD_RUN_BACKEND_SERVICE_NAME = AGENT_NAME.lower().replace(" ", "-") + "-backend"
CLOUD_RUN_FRONTEND_SERVICE_NAME = AGENT_NAME.lower().replace(" ", "-") + "-frontend"

DATASTORE_INDUSTRY_SOURCES_MAP = {
    "finance": "gs://cloud-samples-data/gen-app-builder/search/alphabet-investor-pdfs/*.pdf",
    "healthcare": "gs://cloud-samples-data/vertex-ai/medlm/primock57/transcripts/*.txt",
    "retail": "gs://cloud-samples-data/dialogflow-cx/google-store/*.html",
}
DATA_STORE_ID = f"agent_smithy_data_store_{uuid4()}"
DATA_STORE_NAME = f"{PROJECT_ID.lower().replace(' ', '-')}-{AGENT_NAME.lower().replace(' ', '-')}-datastore"
SEARCH_APP_ENGINE_ID = f"agent_smithy_search_engine_{uuid4()}"
GCS_STAGING_BUCKET = f"gs://{PROJECT_ID.lower().replace(' ', '-')}-agents-staging"
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



build.py [96:112]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TERRAFORM_VAR_FILE = "vars/env.tfvars"

# GCP resources constants.
ARTIFACT_REGISTRY_REPOSITORY = f"{PROJECT_ID.lower().replace(' ', '-')}-{AGENT_NAME.lower().replace(' ', '-')}-repository"

CLOUD_RUN_BACKEND_SERVICE_NAME = AGENT_NAME.lower().replace(" ", "-") + "-backend"
CLOUD_RUN_FRONTEND_SERVICE_NAME = AGENT_NAME.lower().replace(" ", "-") + "-frontend"

DATASTORE_INDUSTRY_SOURCES_MAP = {
    "finance": "gs://cloud-samples-data/gen-app-builder/search/alphabet-investor-pdfs/*.pdf",
    "healthcare": "gs://cloud-samples-data/vertex-ai/medlm/primock57/transcripts/*.txt",
    "retail": "gs://cloud-samples-data/dialogflow-cx/google-store/*.html",
}
DATA_STORE_ID = f"agent_smithy_data_store_{uuid4()}"
DATA_STORE_NAME = f"{PROJECT_ID.lower().replace(' ', '-')}-{AGENT_NAME.lower().replace(' ', '-')}-datastore"
SEARCH_APP_ENGINE_ID = f"agent_smithy_search_engine_{uuid4()}"
GCS_STAGING_BUCKET = f"gs://{PROJECT_ID.lower().replace(' ', '-')}-agents-staging"
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



