-
Notifications
You must be signed in to change notification settings - Fork 2
feat: add new model support for Claude 4.5 Sonnet #17
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
INSTALL_METHOD=remote | ||
REMOTE_INSTALL_HOST=debug-plugin.dify.dev | ||
REMOTE_INSTALL_PORT=5003 | ||
REMOTE_INSTALL_URL=debug.dify.ai:5003 | ||
REMOTE_INSTALL_KEY=********-****-****-****-************ |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -57,3 +57,6 @@ logs/ | |
*.tmp | ||
*.temp | ||
*.difypkg | ||
|
||
# Copilot | ||
.github/copilot-instructions.md | ||
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,7 +23,7 @@ | |
|
||
- **OpenAI 开源系列**:GPT-OSS-120b、GPT-OSS-20b | ||
- **DeepSeek 系列**:DeepSeek-R1、DeepSeek-V3、DeepSeek-V3.1(128k上下文) | ||
- **Claude 系列**:Claude 3.5 Sonnet、Claude 3.7 Sonnet、Claude 4.0 Sonnet、Claude 4.0 Opus、Claude 4.1 Opus(200k上下文) | ||
- **Claude 系列**:Claude 3.5 Sonnet、Claude 3.7 Sonnet、Claude 4.0 Sonnet、Claude 4.5 Sonnet、Claude 4.0 Opus、Claude 4.1 Opus(200k上下文) | ||
- **GLM 系列**:GLM-4.5、GLM-4.5-Air | ||
- **Kimi 系列**:Kimi-K2 | ||
- **Qwen 系列**:Qwen-Turbo、Qwen3-32B、Qwen3-235B-A22B(128k上下文)、Qwen3-Max-Preview(256k上下文) | ||
|
@@ -172,8 +172,7 @@ pip install -r requirements.txt | |
|
||
```bash | ||
INSTALL_METHOD=remote | ||
REMOTE_INSTALL_PORT=5003 | ||
REMOTE_INSTALL_KEY=your-debug-key-here | ||
REMOTE_INSTALL_URL=debug.dify.ai:5003 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. While adding INSTALL_METHOD=remote
REMOTE_INSTALL_URL=debug.dify.ai:5003
REMOTE_INSTALL_KEY=your-debug-key-here |
||
REMOTE_INSTALL_HOST=debug-plugin.dify.dev | ||
``` | ||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
model: claude-4.5-sonnet | ||
label: | ||
zh_Hans: Claude 4.5 Sonnet | ||
en_US: Claude 4.5 Sonnet | ||
model_type: llm | ||
features: | ||
- agent-thought | ||
- tool-call | ||
- multi-tool-call | ||
- stream-tool-call | ||
model_properties: | ||
mode: chat | ||
context_size: 200000 | ||
parameter_rules: | ||
- name: temperature | ||
use_template: temperature | ||
default: 0.7 | ||
min: 0 | ||
max: 2 | ||
- name: top_p | ||
use_template: top_p | ||
default: 0.6 | ||
type: float | ||
- name: presence_penalty | ||
use_template: presence_penalty | ||
default: 0.95 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's a good practice for text files to end with a newline character. This ensures compatibility with various command-line tools and maintains consistency with other files in the repository. Please add a newline at the end of the file.