Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Permission issue on temp config file (file does not exist or can't be accessed) #79

Open
ilahat-nv opened this issue Apr 3, 2025 · 2 comments
Assignees

Comments

@ilahat-nv
Copy link

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:

with tempfile.NamedTemporaryFile(mode="w", prefix="aiq_config", suffix=".yml", delete=True) as config_file:

@AnuradhaKaruppiah
Copy link
Contributor

Hi @ilahat-nv, Thanks for filing this issue.

Are you running agentiq on windows without WSL?

@ilahat-nv
Copy link
Author

Yes, Windows without WSL.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants