모델 프로파일 기반 Cowork/Code 루프와 진행 UX 고도화 반영
- 등록 모델 실행 프로파일을 검증 게이트, 문서 fallback, post-tool verification까지 확장 적용 - Cowork/Code 진행 카드에 계획/도구/검증/압축/폴백/재시도 단계 메타를 추가해 대기 상태 가시성 강화 - OpenAI/vLLM tool 요청에 병렬 도구 호출 힌트를 추가하고 회귀 프롬프트 문서를 프로파일 기준으로 전면 정리 - 검증: dotnet build src/AxCopilot/AxCopilot.csproj -c Release -v minimal -p:OutputPath=bin\\verify\\ -p:IntermediateOutputPath=obj\\verify\\ (경고 0 / 오류 0)
This commit is contained in:
@@ -894,6 +894,52 @@
|
||||
</Grid>
|
||||
</Border>
|
||||
|
||||
<!-- 런처 무지개 글로우 -->
|
||||
<Border Style="{StaticResource SettingsRow}">
|
||||
<Grid>
|
||||
<Grid.ColumnDefinitions>
|
||||
<ColumnDefinition Width="Auto"/>
|
||||
<ColumnDefinition Width="*"/>
|
||||
<ColumnDefinition Width="Auto"/>
|
||||
</Grid.ColumnDefinitions>
|
||||
<Border Grid.Column="0" Width="36" Height="36" CornerRadius="9"
|
||||
Background="#7C3AED" Margin="0,0,14,0" VerticalAlignment="Center">
|
||||
<TextBlock Text="" FontFamily="Segoe MDL2 Assets" FontSize="17"
|
||||
Foreground="White" HorizontalAlignment="Center" VerticalAlignment="Center"/>
|
||||
</Border>
|
||||
<StackPanel Grid.Column="1" VerticalAlignment="Center">
|
||||
<TextBlock Text="런처 무지개 글로우" Style="{StaticResource RowLabel}"/>
|
||||
<TextBlock Text="AX Commander 테두리에 무지개 글로우를 표시합니다" Style="{StaticResource RowHint}"/>
|
||||
</StackPanel>
|
||||
<CheckBox x:Name="ChkLauncherRainbowGlow" Grid.Column="2"
|
||||
Style="{StaticResource ToggleSwitch}"
|
||||
HorizontalAlignment="Right" VerticalAlignment="Center"/>
|
||||
</Grid>
|
||||
</Border>
|
||||
|
||||
<!-- 런처 선택 글로우 -->
|
||||
<Border Style="{StaticResource SettingsRow}">
|
||||
<Grid>
|
||||
<Grid.ColumnDefinitions>
|
||||
<ColumnDefinition Width="Auto"/>
|
||||
<ColumnDefinition Width="*"/>
|
||||
<ColumnDefinition Width="Auto"/>
|
||||
</Grid.ColumnDefinitions>
|
||||
<Border Grid.Column="0" Width="36" Height="36" CornerRadius="9"
|
||||
Background="#5B4E7E" Margin="0,0,14,0" VerticalAlignment="Center">
|
||||
<TextBlock Text="" FontFamily="Segoe MDL2 Assets" FontSize="17"
|
||||
Foreground="White" HorizontalAlignment="Center" VerticalAlignment="Center"/>
|
||||
</Border>
|
||||
<StackPanel Grid.Column="1" VerticalAlignment="Center">
|
||||
<TextBlock Text="런처 선택 글로우" Style="{StaticResource RowLabel}"/>
|
||||
<TextBlock Text="선택된 런처 항목에 은은한 글로우를 표시합니다" Style="{StaticResource RowHint}"/>
|
||||
</StackPanel>
|
||||
<CheckBox x:Name="ChkLauncherSelectionGlow" Grid.Column="2"
|
||||
Style="{StaticResource ToggleSwitch}"
|
||||
HorizontalAlignment="Right" VerticalAlignment="Center"/>
|
||||
</Grid>
|
||||
</Border>
|
||||
|
||||
<!-- 언어 -->
|
||||
<Border Style="{StaticResource SettingsRow}">
|
||||
<Grid>
|
||||
@@ -3892,6 +3938,12 @@
|
||||
Style="{StaticResource AgentSubTabStyle}"
|
||||
Margin="0,0,6,6"
|
||||
Checked="AgentContextTokensCard_Checked"/>
|
||||
<RadioButton x:Name="AgentContextTokens128K"
|
||||
Content="128K"
|
||||
GroupName="AgentContextTokens"
|
||||
Style="{StaticResource AgentSubTabStyle}"
|
||||
Margin="0,0,6,6"
|
||||
Checked="AgentContextTokensCard_Checked"/>
|
||||
<RadioButton x:Name="AgentContextTokens256K"
|
||||
Content="256K"
|
||||
GroupName="AgentContextTokens"
|
||||
|
||||
Reference in New Issue
Block a user