Skip to content

Commit acadff4

Browse files
committed
chore: Update secret version for accessing correct tools manifest
1 parent 26bfef4 commit acadff4

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

packages/toolbox-core/tests/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ def toolbox_version() -> str:
106106
def tools_file_path(project_id: str) -> Generator[str]:
107107
"""Provides a temporary file path containing the tools manifest."""
108108
tools_manifest = access_secret_version(
109-
project_id=project_id, secret_id="sdk_testing_tools"
109+
project_id=project_id, secret_id="sdk_testing_tools", version_id="34"
110110
)
111111
tools_file_path = create_tmpfile(tools_manifest)
112112
yield tools_file_path

packages/toolbox-langchain/tests/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ def toolbox_version() -> str:
106106
def tools_file_path(project_id: str) -> Generator[str]:
107107
"""Provides a temporary file path containing the tools manifest."""
108108
tools_manifest = access_secret_version(
109-
project_id=project_id, secret_id="sdk_testing_tools"
109+
project_id=project_id, secret_id="sdk_testing_tools", version_id="34"
110110
)
111111
tools_file_path = create_tmpfile(tools_manifest)
112112
yield tools_file_path

packages/toolbox-llamaindex/tests/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ def toolbox_version() -> str:
106106
def tools_file_path(project_id: str) -> Generator[str]:
107107
"""Provides a temporary file path containing the tools manifest."""
108108
tools_manifest = access_secret_version(
109-
project_id=project_id, secret_id="sdk_testing_tools"
109+
project_id=project_id, secret_id="sdk_testing_tools", version_id="34"
110110
)
111111
tools_file_path = create_tmpfile(tools_manifest)
112112
yield tools_file_path

0 commit comments

Comments
 (0)