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
cc713e65
authored
May 15, 2024
by
Boo p3psi
Committed by
bubu
May 16, 2024
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修复渠道测试没有走模型映射
parent
05b133e6
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
0 deletions
+14
-0
controller/channel-test.go
+14
-0
No files found.
controller/channel-test.go
View file @
cc713e65
...
...
@@ -64,7 +64,21 @@ func testChannel(channel *model.Channel, testModel string) (err error, openaiErr
}
else
{
testModel
=
adaptor
.
GetModelList
()[
0
]
}
}
else
{
modelMapping
:=
*
channel
.
ModelMapping
if
modelMapping
!=
""
&&
modelMapping
!=
"{}"
{
modelMap
:=
make
(
map
[
string
]
string
)
err
:=
json
.
Unmarshal
([]
byte
(
modelMapping
),
&
modelMap
)
if
err
!=
nil
{
openaiErr
:=
service
.
OpenAIErrorWrapperLocal
(
err
,
"unmarshal_model_mapping_failed"
,
http
.
StatusInternalServerError
)
.
Error
return
err
,
&
openaiErr
}
if
modelMap
[
testModel
]
!=
""
{
testModel
=
modelMap
[
testModel
]
}
}
}
request
:=
buildTestRequest
()
request
.
Model
=
testModel
meta
.
UpstreamModelName
=
testModel
...
...
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