코워크 코드 내부설정 컨텍스트 토큰 기본값을 32K로 상향
LlmSettings.MaxContextTokens 기본값을 32768로 조정하고 메인 설정의 컨텍스트 토큰 카드에 32K 선택지를 추가했다. AgentSettingsWindow의 잘못된 입력 fallback도 32K 기준으로 바꿔 내부설정이 4K로 되돌아가지 않도록 정리했다. 검증: dotnet build src/AxCopilot/AxCopilot.csproj -c Release -v minimal -p:OutputPath=bin\\verify_context32k\\ -p:IntermediateOutputPath=obj\\verify_context32k\\ / dotnet test src/AxCopilot.Tests/AxCopilot.Tests.csproj -c Release -v minimal --filter SettingsServiceTests -p:OutputPath=bin\\verify_context32k_tests\\ -p:IntermediateOutputPath=obj\\verify_context32k_tests\
This commit is contained in:
@@ -3973,6 +3973,12 @@
|
||||
Style="{StaticResource AgentSubTabStyle}"
|
||||
Margin="0,0,6,6"
|
||||
Checked="AgentContextTokensCard_Checked"/>
|
||||
<RadioButton x:Name="AgentContextTokens32K"
|
||||
Content="32K"
|
||||
GroupName="AgentContextTokens"
|
||||
Style="{StaticResource AgentSubTabStyle}"
|
||||
Margin="0,0,6,6"
|
||||
Checked="AgentContextTokensCard_Checked"/>
|
||||
<RadioButton x:Name="AgentContextTokens64K"
|
||||
Content="64K"
|
||||
GroupName="AgentContextTokens"
|
||||
|
||||
Reference in New Issue
Block a user