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
e8df2b75
Commit
e8df2b75
authored
Jul 26, 2023
by
John Wang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: <|xxx|> raise error
parent
e51c9ff1
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
+4
-0
completion.py
api/core/completion.py
+4
-0
No files found.
api/core/completion.py
View file @
e8df2b75
import
logging
import
logging
import
re
from
typing
import
Optional
,
List
,
Union
,
Tuple
from
typing
import
Optional
,
List
,
Union
,
Tuple
from
langchain.base_language
import
BaseLanguageModel
from
langchain.base_language
import
BaseLanguageModel
...
@@ -270,6 +271,9 @@ And answer according to the language of the user's question.
...
@@ -270,6 +271,9 @@ And answer according to the language of the user's question.
messages
.
append
(
human_message
)
messages
.
append
(
human_message
)
for
message
in
messages
:
message
.
content
=
re
.
sub
(
r'<\|.*?\|>'
,
''
,
message
.
content
)
return
messages
,
[
'
\n
Human:'
,
'</histories>'
]
return
messages
,
[
'
\n
Human:'
,
'</histories>'
]
@
classmethod
@
classmethod
...
...
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