voytas75 / AIPSTeam

PowerShell script simulates a team of AI Agents working together on a user provided PowerShell project. It utilizes Retrieval-Augmented Generation (RAG). The project leverages Azure OpenAI, Ollama, and LM Studio.
7 stars 2 forks source link

Removed excess [System.] references #13

Closed NathanWindisch closed 3 months ago

NathanWindisch commented 3 months ago

As the System namespace is automatically included in every PowerShell session, we can shorten the [System.Environment]::SetEnvironmentVariable(...) call to just [Environment]::SetEnvironmentVariable(...). This makes the code cleaner and slightly easier to read.