Skip to content

Commit aac4324

Browse files
csfernghappyhuman
andauthored
Update region and ADK version for llm-auditor (#1762)
Co-authored-by: Shahin Saadati <happyhuman@users.noreply.github.com>
1 parent 9bee304 commit aac4324

5 files changed

Lines changed: 1769 additions & 1587 deletions

File tree

python/agents/llm-auditor/llm_auditor/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
pass
3030

3131
os.environ.setdefault("GOOGLE_GENAI_USE_VERTEXAI", "true")
32-
os.environ.setdefault("GOOGLE_CLOUD_LOCATION", "us-central1")
32+
os.environ.setdefault("GOOGLE_CLOUD_LOCATION", "us-east1")
3333

3434
from . import agent
3535

python/agents/llm-auditor/llm_auditor/sub_agents/critic/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@
1414

1515
"""Critic agent for identifying and verifying statements using search tools."""
1616

17-
from .agent import critic_agent
17+
from .agent import critic_agent as critic_agent

python/agents/llm-auditor/llm_auditor/sub_agents/reviser/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@
1414

1515
"""Reviser agent for correcting inaccuracies based on verified findings."""
1616

17-
from .agent import reviser_agent
17+
from .agent import reviser_agent as reviser_agent

python/agents/llm-auditor/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ requires-python = ">=3.10"
1414

1515
dependencies = [
1616
"agent-starter-pack>=0.32.0",
17-
"google-adk>=1.0.0",
17+
"google-adk>=1.31.0",
1818
"google-auth>=2.30.0",
1919
"google-cloud-aiplatform[adk,agent-engines]>=1.93.0",
2020
"google-genai>=1.9.0",
@@ -24,7 +24,7 @@ dependencies = [
2424

2525
[dependency-groups]
2626
dev = [
27-
"google-adk[eval]>=1.0.0",
27+
"google-adk[eval]>=1.31.0",
2828
"pytest>=8.3.5",
2929
"pytest-asyncio>=0.26.0",
3030
]

0 commit comments

Comments
 (0)