Skip to content
Open
Changes from 1 commit
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
4714dd8
refactor: split UI logic in ChatHeader.razor
qoweh Sep 13, 2025
04735cc
test: add integration tests for NewChat button and icon visibility
qoweh Sep 13, 2025
a8f0a7d
Merge remote-tracking branch 'upstream/main'
qoweh Sep 13, 2025
6e68171
Merge remote-tracking branch 'origin/main'
qoweh Sep 18, 2025
1f5783c
Merge branch 'aliencube:main' into main
qoweh Sep 22, 2025
5094a9f
Merge branch 'aliencube:main' into main
qoweh Sep 23, 2025
8ed4bfd
Merge branch 'aliencube:main' into main
qoweh Sep 25, 2025
39354bc
Merge branch 'aliencube:main' into main
qoweh Sep 28, 2025
cf64868
Merge branch 'aliencube:main' into main
qoweh Oct 1, 2025
6cfef60
Merge branch 'aliencube:main' into main
qoweh Oct 5, 2025
aeb63e8
Merge branch 'aliencube:main' into main
qoweh Oct 8, 2025
1e225a0
Merge branch 'main' into feat/261-ConnectorImplementation-Inheritance…
qoweh Oct 13, 2025
bb8dcbf
feat: Add support for Anthropic API integration and update documentation
qoweh Oct 13, 2025
ebf7b2b
feat: Add documentation for running OpenChat Playground with Anthropi…
qoweh Oct 13, 2025
e06184b
feat: Update default model references to Claude Sonnet 4 and adjust a…
qoweh Oct 13, 2025
e3dba70
feat: Add support for Anthropic connector in LanguageModelConnector
qoweh Oct 13, 2025
15881b4
feat: Implement Anthropic connector for LanguageModel integration
qoweh Oct 14, 2025
0708685
feat: Enhance AnthropicConnector with improved error handling and add…
qoweh Oct 14, 2025
65b2d5f
Adds documentation for Anthropic connector
qoweh Oct 14, 2025
c625f11
Updates documentation to refer to Anthropic models
qoweh Oct 14, 2025
9bc001b
feat: Refactor GetChatClientAsync to improve API client initializatio…
qoweh Oct 14, 2025
4842bc8
Merge branch 'aliencube:main' into main
qoweh Oct 16, 2025
24c3dd5
Merge branch 'main' into feat/261-ConnectorImplementation-Inheritance…
qoweh Oct 16, 2025
d23c92b
feat: add max_tokens parameter for Anthropic in appsettings.json
qoweh Oct 16, 2025
92c3eed
feat: add property MaxTokens for Anthropic in AnthropicSettings
qoweh Oct 16, 2025
604dcf3
Merge remote-tracking branch 'origin/main' into feat/261-ConnectorImp…
qoweh Oct 16, 2025
1a58fb7
fix: temporarily disable Anthropic
qoweh Oct 16, 2025
9c51809
test: skip all Anthropic connector tests until enabled
qoweh Oct 16, 2025
06efab1
refactor: update documentation to remove "Claude" references from Ant…
qoweh Oct 18, 2025
99b7de9
Merge branch 'main' into feat/261-ConnectorImplementation-Inheritance…
qoweh Oct 18, 2025
09ad176
feat: add option MaxTokens for parsing option
qoweh Oct 20, 2025
cc490d7
Merge branch 'main' into feat/261-ConnectorImplementation-Inheritance…
qoweh Oct 20, 2025
8032506
feat: add constant for '--max-tokens' command-line argument
qoweh Oct 20, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,17 @@ public partial class AppSettings
public class AnthropicSettings : LanguageModelSettings
{
/// <summary>
/// Gets or sets the API key for Anthropic Claude.
/// Gets or sets the API key for Anthropic.
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

20번, 25번, 30번 라인에서 Calude를 뺏다가 다시 넣었는데요, (20번줄은 다시 안 넣었네요)
Anthropic Claude 라고 하는 것보다 Anthropic으로 넣는 게 맞는 것 같은데 어떤 식으로 할까요?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

빼시죠!

/// </summary>
public string? ApiKey { get; set; }

/// <summary>
/// Gets or sets the model name of Anthropic Claude.
/// </summary>
public string? Model { get; set; }

/// <summary>
/// Gets or sets the maximum number of output tokens for Anthropic Claude.
/// </summary>
public int? MaxTokens { get; set; }
}
Loading