You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: datasets/dea-tools/README.md
+20Lines changed: 20 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -30,6 +30,26 @@ This file is the main driver that dictates how evaluations are executed. Key par
30
30
*`set_up_script` & `tear_down_script`: Scripts that prep and clean up the Dataform environment. You can comment out `tear_down_script` if you want to keep the workspace alive after the run for debugging.
31
31
*`dataform_workspace_gcs_archive`: Saves a ZIP archive of the workspace artifacts to a GCS bucket.
The model configuration file is defined in `datasets/model_configs/gcp_data_engineering_agent_model.yaml`. In your model configuration YAML file, you can configure target environments and agent personas:
35
+
36
+
```yaml
37
+
generator: "data_engineering_agent"
38
+
gcp_project_id: !ENV ${EVAL_GCP_PROJECT_ID}
39
+
gcp_region: !ENV ${EVAL_GCP_PROJECT_REGION}
40
+
41
+
# Parameterized Agent Options:
42
+
model_env: local # Target environment: "local", "staging", or "prod" (defaults to "prod")
43
+
port: 9876# Required port for local Boq servers when env="local"
44
+
agent_type: sparkagent # Desired agent persona (e.g., "sparkagent", "dataengineeringagent")
0 commit comments