|
2 | 2 | "scenarios": [ |
3 | 3 | { |
4 | 4 | "id": "cloud-sql-debug-instance", |
5 | | - "starting_prompt": "Check on my databases in project ext-test-cloud-sql-postgres.", |
6 | | - "conversation_plan": "Ask the agent to list all Cloud SQL instances in the project. Once all instances are listed, if 'daily-ci-evals-db' exists, get its details and validate it is RUNNABLE.", |
| 5 | + "starting_prompt": "Check on my databases in project ${GOOGLE_CLOUD_PROJECT}.", |
| 6 | + "conversation_plan": "Ask the agent to list all Cloud SQL instances in the project. Once all instances are listed, if '${CLOUD_SQL_POSTGRES_INSTANCE}' exists, get its details and validate it is RUNNABLE.", |
7 | 7 | "expected_trajectory": [ |
8 | 8 | "list_instances", |
9 | 9 | "get_instance" |
10 | 10 | ], |
11 | 11 | "env": { |
12 | | - "GOOGLE_CLOUD_PROJECT": "ext-test-cloud-sql-postgres" |
| 12 | + "GOOGLE_CLOUD_PROJECT": "${GOOGLE_CLOUD_PROJECT}" |
13 | 13 | }, |
14 | 14 | "kind": "tools", |
15 | 15 | "max_turns": 3 |
|
23 | 23 | "list_tables" |
24 | 24 | ], |
25 | 25 | "env": { |
26 | | - "GOOGLE_CLOUD_PROJECT": "ext-test-cloud-sql-postgres" |
| 26 | + "GOOGLE_CLOUD_PROJECT": "${GOOGLE_CLOUD_PROJECT}" |
27 | 27 | }, |
28 | 28 | "kind": "tools", |
29 | 29 | "max_turns": 3 |
|
37 | 37 | "list_locks" |
38 | 38 | ], |
39 | 39 | "env": { |
40 | | - "GOOGLE_CLOUD_PROJECT": "ext-test-cloud-sql-postgres" |
| 40 | + "GOOGLE_CLOUD_PROJECT": "${GOOGLE_CLOUD_PROJECT}" |
41 | 41 | }, |
42 | 42 | "kind": "tools", |
43 | 43 | "max_turns": 3 |
44 | 44 | }, |
45 | 45 | { |
46 | 46 | "id": "cloud-sql-metrics-cpu-investigation", |
47 | | - "starting_prompt": "I'm worried about the database load for daily-ci-evals-db.", |
48 | | - "conversation_plan": "First, ask the agent to check the CPU utilization for the instance 'daily-ci-evals-db' for the last 5 minutes. After the agent provides the CPU data, ask it to check the overall database stats to see connection counts or transaction volume.", |
| 47 | + "starting_prompt": "I'm worried about the database load for ${CLOUD_SQL_POSTGRES_INSTANCE}.", |
| 48 | + "conversation_plan": "First, ask the agent to check the CPU utilization for the instance '${CLOUD_SQL_POSTGRES_INSTANCE}' for the last 5 minutes. After the agent provides the CPU data, ask it to check the overall database stats to see connection counts or transaction volume.", |
49 | 49 | "expected_trajectory": [ |
50 | 50 | "get_system_metrics", |
51 | 51 | "list_database_stats" |
52 | 52 | ], |
53 | 53 | "env": { |
54 | | - "GOOGLE_CLOUD_PROJECT": "ext-test-cloud-sql-postgres" |
| 54 | + "GOOGLE_CLOUD_PROJECT": "${GOOGLE_CLOUD_PROJECT}" |
55 | 55 | }, |
56 | 56 | "kind": "tools", |
57 | 57 | "max_turns": 3 |
|
0 commit comments