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
80740d8c
authored
May 16, 2024
by
Calcium-Ion
Committed by
GitHub
May 16, 2024
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #257 from p3psi-boo/main
修复渠道测试时,没有走模型映射
parents
d2bafda6
a6f3558f
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 @
80740d8c
...
@@ -64,7 +64,21 @@ func testChannel(channel *model.Channel, testModel string) (err error, openaiErr
...
@@ -64,7 +64,21 @@ func testChannel(channel *model.Channel, testModel string) (err error, openaiErr
}
else
{
}
else
{
testModel
=
adaptor
.
GetModelList
()[
0
]
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
:=
buildTestRequest
()
request
.
Model
=
testModel
request
.
Model
=
testModel
meta
.
UpstreamModelName
=
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