@@ -20,7 +20,7 @@ function Start-Build
20
20
[string ] $Runtime = [NullString ]::Value,
21
21
22
22
[Parameter ()]
23
- [ValidateSet (' openai-gpt' , ' az-agent ' , ' msaz' , ' interpreter' , ' ollama' )]
23
+ [ValidateSet (' openai-gpt' , ' msaz' , ' interpreter' , ' ollama' )]
24
24
[string []] $AgentToInclude ,
25
25
26
26
[Parameter ()]
@@ -66,7 +66,6 @@ function Start-Build
66
66
$module_dir = Join-Path $shell_dir " AIShell.Integration"
67
67
68
68
$openai_agent_dir = Join-Path $agent_dir " AIShell.OpenAI.Agent"
69
- $az_agent_dir = Join-Path $agent_dir " AIShell.Azure.Agent"
70
69
$msaz_dir = Join-Path $agent_dir " Microsoft.Azure.Agent"
71
70
$interpreter_agent_dir = Join-Path $agent_dir " AIShell.Interpreter.Agent"
72
71
$ollama_agent_dir = Join-Path $agent_dir " AIShell.Ollama.Agent"
@@ -77,7 +76,6 @@ function Start-Build
77
76
$module_out_dir = Join-Path $out_dir $config " module" " AIShell"
78
77
79
78
$openai_out_dir = Join-Path $app_out_dir " agents" " AIShell.OpenAI.Agent"
80
- $az_out_dir = Join-Path $app_out_dir " agents" " AIShell.Azure.Agent"
81
79
$msaz_out_dir = Join-Path $app_out_dir " agents" " Microsoft.Azure.Agent"
82
80
$interpreter_out_dir = Join-Path $app_out_dir " agents" " AIShell.Interpreter.Agent"
83
81
$ollama_out_dir = Join-Path $app_out_dir " agents" " AIShell.Ollama.Agent"
@@ -99,12 +97,6 @@ function Start-Build
99
97
dotnet publish $openai_csproj - c $Configuration - o $openai_out_dir
100
98
}
101
99
102
- if ($LASTEXITCODE -eq 0 -and $AgentToInclude -contains ' az-agent' ) {
103
- Write-Host " `n [Build the az-ps/cli agents ...]`n " - ForegroundColor Green
104
- $az_csproj = GetProjectFile $az_agent_dir
105
- dotnet publish $az_csproj - c $Configuration - o $az_out_dir
106
- }
107
-
108
100
if ($LASTEXITCODE -eq 0 -and $AgentToInclude -contains ' msaz' ) {
109
101
Write-Host " `n [Build the Azure agent ...]`n " - ForegroundColor Green
110
102
$msaz_csproj = GetProjectFile $msaz_dir
0 commit comments