Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
phsl
/
new-api
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
901c33f6
authored
Sep 13, 2024
by
CalciumIon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat: support OpenAI o1-preview and o1-mini
parent
75dc0dc5
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
11 deletions
+20
-11
common/model-ratio.go
+18
-11
relay/channel/openai/constant.go
+2
-0
No files found.
common/model-ratio.go
View file @
901c33f6
...
...
@@ -42,6 +42,10 @@ var defaultModelRatio = map[string]float64{
"gpt-4o"
:
2.5
,
// $0.01 / 1K tokens
"gpt-4o-2024-05-13"
:
2.5
,
// $0.01 / 1K tokens
"gpt-4o-2024-08-06"
:
1.25
,
// $0.01 / 1K tokens
"o1-preview"
:
7.5
,
"o1-preview-2024-09-12"
:
7.5
,
"o1-mini"
:
1.5
,
"o1-mini-2024-09-12"
:
1.5
,
"gpt-4o-mini"
:
0.075
,
"gpt-4o-mini-2024-07-18"
:
0.075
,
"gpt-4-turbo"
:
5
,
// $0.01 / 1K tokens
...
...
@@ -331,17 +335,6 @@ func GetCompletionRatio(name string) float64 {
if
strings
.
HasPrefix
(
name
,
"gpt-4o-gizmo"
)
{
name
=
"gpt-4o-gizmo-*"
}
if
strings
.
HasPrefix
(
name
,
"gpt-3.5"
)
{
if
name
==
"gpt-3.5-turbo"
||
strings
.
HasSuffix
(
name
,
"0125"
)
{
// https://openai.com/blog/new-embedding-models-and-api-updates
// Updated GPT-3.5 Turbo model and lower pricing
return
3
}
if
strings
.
HasSuffix
(
name
,
"1106"
)
{
return
2
}
return
4.0
/
3.0
}
if
strings
.
HasPrefix
(
name
,
"gpt-4"
)
&&
!
strings
.
HasSuffix
(
name
,
"-all"
)
&&
!
strings
.
HasSuffix
(
name
,
"-gizmo-*"
)
{
if
strings
.
HasPrefix
(
name
,
"gpt-4-turbo"
)
||
strings
.
HasSuffix
(
name
,
"preview"
)
{
return
3
...
...
@@ -354,6 +347,9 @@ func GetCompletionRatio(name string) float64 {
}
return
2
}
if
strings
.
HasPrefix
(
name
,
"o1-"
)
{
return
4
}
if
name
==
"chatgpt-4o-latest"
{
return
3
}
...
...
@@ -364,6 +360,17 @@ func GetCompletionRatio(name string) float64 {
}
else
if
strings
.
Contains
(
name
,
"claude-3"
)
{
return
5
}
if
strings
.
HasPrefix
(
name
,
"gpt-3.5"
)
{
if
name
==
"gpt-3.5-turbo"
||
strings
.
HasSuffix
(
name
,
"0125"
)
{
// https://openai.com/blog/new-embedding-models-and-api-updates
// Updated GPT-3.5 Turbo model and lower pricing
return
3
}
if
strings
.
HasSuffix
(
name
,
"1106"
)
{
return
2
}
return
4.0
/
3.0
}
if
strings
.
HasPrefix
(
name
,
"mistral-"
)
{
return
3
}
...
...
relay/channel/openai/constant.go
View file @
901c33f6
...
...
@@ -11,6 +11,8 @@ var ModelList = []string{
"chatgpt-4o-latest"
,
"gpt-4o"
,
"gpt-4o-2024-05-13"
,
"gpt-4o-2024-08-06"
,
"gpt-4o-mini"
,
"gpt-4o-mini-2024-07-18"
,
"o1-preview"
,
"o1-preview-2024-09-12"
,
"o1-mini"
,
"o1-mini-2024-09-12"
,
"text-embedding-ada-002"
,
"text-embedding-3-small"
,
"text-embedding-3-large"
,
"text-curie-001"
,
"text-babbage-001"
,
"text-ada-001"
,
"text-moderation-latest"
,
"text-moderation-stable"
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment