Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
D
dify
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ai-tech
dify
Commits
95b179fb
Unverified
Commit
95b179fb
authored
Aug 19, 2023
by
takatost
Committed by
GitHub
Aug 19, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: replicate text generation model validate (#923)
parent
3a0a9e2d
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
replicate_provider.py
api/core/model_providers/providers/replicate_provider.py
+2
-1
No files found.
api/core/model_providers/providers/replicate_provider.py
View file @
95b179fb
...
@@ -116,7 +116,8 @@ class ReplicateProvider(BaseModelProvider):
...
@@ -116,7 +116,8 @@ class ReplicateProvider(BaseModelProvider):
and
'Embedding'
not
in
rst
.
openapi_schema
[
'components'
][
'schemas'
]:
and
'Embedding'
not
in
rst
.
openapi_schema
[
'components'
][
'schemas'
]:
raise
CredentialsValidateFailedError
(
f
"Model {model_name}:{version} is not a Embedding model."
)
raise
CredentialsValidateFailedError
(
f
"Model {model_name}:{version} is not a Embedding model."
)
elif
model_type
==
ModelType
.
TEXT_GENERATION
\
elif
model_type
==
ModelType
.
TEXT_GENERATION
\
and
(
'type'
not
in
rst
.
openapi_schema
[
'components'
][
'schemas'
][
'Output'
][
'items'
]
and
(
'items'
not
in
rst
.
openapi_schema
[
'components'
][
'schemas'
][
'Output'
]
or
'type'
not
in
rst
.
openapi_schema
[
'components'
][
'schemas'
][
'Output'
][
'items'
]
or
rst
.
openapi_schema
[
'components'
][
'schemas'
][
'Output'
][
'items'
][
'type'
]
!=
'string'
):
or
rst
.
openapi_schema
[
'components'
][
'schemas'
][
'Output'
][
'items'
][
'type'
]
!=
'string'
):
raise
CredentialsValidateFailedError
(
f
"Model {model_name}:{version} is not a Text Generation model."
)
raise
CredentialsValidateFailedError
(
f
"Model {model_name}:{version} is not a Text Generation model."
)
except
ReplicateError
as
e
:
except
ReplicateError
as
e
:
...
...
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