feat: add vertex async loop feature flag (#2060)

This commit is contained in:
cthomas
2025-05-07 15:00:10 -07:00
committed by GitHub
parent abd3fb3204
commit 5c0bb5e4dd
2 changed files with 2 additions and 1 deletions

View File

@@ -98,7 +98,7 @@ class AsyncComposioToolSet(BaseComposioToolSet, runtime="letta"):
except aiohttp.ClientError as e:
# Wrap network errors in ComposioSDKError
raise ComposioSDKError(f"Network error when calling Composio API: {str(e)}")
except ValueError as e:
except ValueError:
# Re-raise ValueError (which could be our custom error message or a JSON parsing error)
raise
except Exception as e:

View File

@@ -196,6 +196,7 @@ class Settings(BaseSettings):
# experimental toggle
use_experimental: bool = False
use_vertex_structured_outputs_experimental: bool = False
use_vertex_async_loop_experimental: bool = False
# LLM provider client settings
httpx_max_retries: int = 5