Skip to content
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

Chore/Claude 3.7 #4075

Merged
merged 29 commits into from
Feb 24, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
a98a8ca
add gemini flash
HenryHengZJ May 14, 2024
73ad444
add gemin flash to vertex
HenryHengZJ May 14, 2024
740f986
add gemin-1.5-flash-preview to vertex
HenryHengZJ May 14, 2024
7ef7792
Merge branch 'main' into chore/Models-Update
HenryHengZJ Jun 13, 2024
7efdac9
add azure gpt 4o
HenryHengZJ Jun 13, 2024
07fef8c
add claude 3.5 sonnet
HenryHengZJ Jun 21, 2024
3185d65
Merge branch 'main' into chore/Models-Update
HenryHengZJ Jun 21, 2024
6e82ce8
Merge branch 'main' into chore/Models-Update
HenryHengZJ Jul 18, 2024
1edf59e
add mistral nemo
HenryHengZJ Jul 18, 2024
ef480c9
Merge branch 'main' into chore/Models-Update
HenryHengZJ Jul 18, 2024
18b5de3
add groq llama3.1
HenryHengZJ Jul 23, 2024
b8e9234
Merge branch 'main' into chore/Models-Update
HenryHengZJ Jul 23, 2024
b2bfe80
Merge branch 'main' into chore/Models-Update
HenryHengZJ Aug 29, 2024
9fa7b13
add gpt4o-mini to azure
HenryHengZJ Aug 29, 2024
5576207
Merge branch 'main' into chore/Models-Update
HenryHengZJ Sep 13, 2024
632825e
o1 mini
HenryHengZJ Sep 13, 2024
822f364
Merge branch 'main' into chore/Models-Update
HenryHengZJ Sep 24, 2024
d947264
add groq llama 3.2
HenryHengZJ Sep 25, 2024
006a9a2
update anthropic models
HenryHengZJ Oct 23, 2024
8dcddc1
Merge branch 'main' into chore/Models-Update
HenryHengZJ Nov 6, 2024
703acdc
add 3.5 haiku
HenryHengZJ Nov 6, 2024
1d82240
update vertex embedding models
HenryHengZJ Nov 6, 2024
c379a58
Merge branch 'main' into chore/Models-Update
HenryHengZJ Nov 27, 2024
eb77c48
add azure o1 models
HenryHengZJ Nov 27, 2024
fdf8481
Merge branch 'main' into chore/Models-Update
HenryHengZJ Feb 1, 2025
cf88b79
add o3 mini
HenryHengZJ Feb 1, 2025
bcb24fb
add wolframalpha tool
HenryHengZJ Feb 1, 2025
eee7d2c
Merge branch 'main' into chore/Models-Update
HenryHengZJ Feb 24, 2025
9950c35
Update pnpm-lock.yaml
HenryHengZJ Feb 24, 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
20 changes: 10 additions & 10 deletions packages/api-documentation/src/yml/swagger.yml
Original file line number Diff line number Diff line change
Expand Up @@ -778,11 +778,11 @@ paths:
'200':
description: Successfully execute refresh operation
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/VectorUpsertResponse'
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/VectorUpsertResponse'

'400':
description: Invalid request body
Expand Down Expand Up @@ -1036,11 +1036,11 @@ paths:
required: true
responses:
'200':
description: Feedback successfully created
content:
application/json:
schema:
$ref: '#/components/schemas/ChatMessageFeedback'
description: Feedback successfully created
content:
application/json:
schema:
$ref: '#/components/schemas/ChatMessageFeedback'
'400':
description: Invalid input provided
'500':
Expand Down
5 changes: 5 additions & 0 deletions packages/components/models.json
Original file line number Diff line number Diff line change
Expand Up @@ -320,6 +320,11 @@
{
"name": "chatAnthropic",
"models": [
{
"label": "claude-3-7-sonnet-latest",
"name": "claude-3-7-sonnet-latest",
"description": "Most recent snapshot version of Claude Sonnet 3.7 model - hybrid reasoning model"
},
{
"label": "claude-3-5-haiku-latest",
"name": "claude-3-5-haiku-latest",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ class ChatOpenAI_ChatModels implements INode {
streaming: streaming ?? true
}

if (modelName === 'o3-mini') {
if (modelName.includes('o3')) {
delete obj.temperature
}
if ((modelName.includes('o1') || modelName.includes('o3')) && reasoningEffort) {
Expand Down
1 change: 1 addition & 0 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading