Skip to content

Commit e8fb4c0

Browse files
vinod0mCopilot
andauthored
Update src/agents/deepagent.py
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
1 parent 05cb154 commit e8fb4c0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/agents/deepagent.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ def __init__(
6767
config_path: Path to the model configuration file.
6868
kwargs: Additional LLM-specific arguments
6969
"""
70-
with open(config_path, 'r') as f:
70+
with open(config_path, 'r', encoding='utf-8') as f:
7171
config = yaml.safe_load(f)
7272

7373
provider = provider or config.get('default_provider')

0 commit comments

Comments
 (0)