You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
File "C:\ai\agentiq\src\aiq\utils\io\yaml_tools.py", line 27, in yaml_load with open(config_path, 'r', encoding="utf-8") as stream: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ with open(config_path, 'r', encoding="utf-8") as stream: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ PermissionError: [Errno 13] Permission denied: 'C:\\Users\\[user]\\AppData\\Local\\Temp\\aiq_configyvx4zgqq.yml' PermissionError: [Errno 13] Permission denied: 'C:\\Users\\[user]\\AppData\\Local\\Temp\\aiq_configyvx4zgqq.yml' Error: [Errno 13] Permission denied: 'C:\\Users\\[user]\\AppData\\Local\\Temp\\aiq_configyvx4zgqq.yml'
It seems that either the temp file is still open or deleted before the config is read again.
It is probably the latter case, since modifying the delete option to False in this location helps resolve the issue:
when running aiq serve, getting this failure:
File "C:\ai\agentiq\src\aiq\utils\io\yaml_tools.py", line 27, in yaml_load with open(config_path, 'r', encoding="utf-8") as stream: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ with open(config_path, 'r', encoding="utf-8") as stream: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ PermissionError: [Errno 13] Permission denied: 'C:\\Users\\[user]\\AppData\\Local\\Temp\\aiq_configyvx4zgqq.yml' PermissionError: [Errno 13] Permission denied: 'C:\\Users\\[user]\\AppData\\Local\\Temp\\aiq_configyvx4zgqq.yml' Error: [Errno 13] Permission denied: 'C:\\Users\\[user]\\AppData\\Local\\Temp\\aiq_configyvx4zgqq.yml'
It seems that either the temp file is still open or deleted before the config is read again.
It is probably the latter case, since modifying the delete option to False in this location helps resolve the issue:
AgentIQ/src/aiq/front_ends/fastapi/fastapi_front_end_plugin.py
Line 47 in c151736
The text was updated successfully, but these errors were encountered: