We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8879837 commit c66fe6fCopy full SHA for c66fe6f
agentkit/toolkit/config/config.py
@@ -297,7 +297,13 @@ def _save_config(self):
297
"""Save configuration file"""
298
os.makedirs(self.config_path.parent, exist_ok=True)
299
with open(self.config_path, "w", encoding="utf-8") as f:
300
- yaml.dump(self._data, f, default_flow_style=False, sort_keys=False)
+ yaml.dump(
301
+ self._data,
302
+ f,
303
+ default_flow_style=False,
304
+ sort_keys=False,
305
+ allow_unicode=True,
306
+ )
307
308
def get_common_config(self) -> CommonConfig:
309
"""Get common configuration"""
0 commit comments