Shanto Mathew
Shanto Mathew
## Summary Added comprehensive troubleshooting documentation to help users resolve common issues with multi-GPU rollout and response_mask contiguity. ## Changes - Created `docs/troubleshooting.md` with detailed troubleshooting guide - Added Multi-GPU...
## Summary This PR fixes two documentation issues in README.md: ### 1. Flutter TTS macOS Mirror Link Targets (Lines 177-178, 525, 527) The Chinese mirror links (中国用户 column) for macOS...
## Overview This PR implements a provider-agnostic LLM client interface that enables seamless switching between different LLM providers without code changes, addressing Issue #1. ## Changes ### 1. Provider-Agnostic Interface...
This PR updates README.md to use portable SQL identifiers in code examples: **Changes:** - Replaced `my-table` with `my_table` in DDL and SQL examples (lines ~161, ~175) - Added "Note on...
## Problem This PR fixes issue #16322 where adding "txt2img" to **Settings → User Interface → Hidden UI tabs** causes the img2img tab to malfunction with JavaScript errors: - `TypeError:...
Added four new exception classes to improve error handling: - DatabaseConnectionError: Enhanced database connection errors with recovery hints - DatabaseTimeoutError: Timeout errors with operation context - EncodingError: UTF-8 and character...
The state.All() method had a race condition where it unlocked the mutex inside the range loop over the map, leaving the map unprotected during iteration. This could trigger the race...
Fixes #189 This commit fixes the critical resource leak in DatabaseManager by properly closing SQLite connections. Changes: - Added `from contextlib import closing` import - Wrapped all `self._get_connection()` calls with...
Fix broken import for create_api_key.py script. The script was importing DATABASE from a non-existent module 'skyvern.forge.app'. Updated to use the correct import path 'from skyvern.forge import app' and access DATABASE...
Fixes #316 This PR updates the anthropic SDK version constraint in requirements.txt from >=0.39.0 to >=0.71.0 to align with pyproject.toml. Changes: - Updated anthropic version from >=0.39.0 to >=0.71.0 -...