feat: add vertex async loop feature flag (#2060)
This commit is contained in:
@@ -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:
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user