Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
P
poc-api
Project
Project
Details
Activity
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
poc
poc-api
Commits
c577eac5
Commit
c577eac5
authored
Nov 20, 2024
by
alex yao
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat: 构建知识库提示词优化结构
parent
27159d48
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
AgentApplicationInfoServiceImpl.java
...ation/aggregate/impl/AgentApplicationInfoServiceImpl.java
+1
-1
No files found.
src/main/java/cn/com/poc/agent_application/aggregate/impl/AgentApplicationInfoServiceImpl.java
View file @
c577eac5
...
@@ -574,7 +574,7 @@ public class AgentApplicationInfoServiceImpl implements AgentApplicationInfoServ
...
@@ -574,7 +574,7 @@ public class AgentApplicationInfoServiceImpl implements AgentApplicationInfoServ
StringBuilder
knowledgeResultsBuilder
=
new
StringBuilder
();
StringBuilder
knowledgeResultsBuilder
=
new
StringBuilder
();
if
(
CollectionUtils
.
isNotEmpty
(
knowledgeResults
))
{
if
(
CollectionUtils
.
isNotEmpty
(
knowledgeResults
))
{
for
(
int
i
=
1
;
i
<=
knowledgeResults
.
size
();
i
++)
{
for
(
int
i
=
1
;
i
<=
knowledgeResults
.
size
();
i
++)
{
knowledgeResultsBuilder
.
append
(
"## Chunk "
).
append
(
i
).
append
(
":"
).
append
(
StringUtils
.
LF
).
append
(
knowledgeResults
.
get
(
i
-
1
)).
append
(
StringUtils
.
LF
);
knowledgeResultsBuilder
.
append
(
"##
#
Chunk "
).
append
(
i
).
append
(
":"
).
append
(
StringUtils
.
LF
).
append
(
knowledgeResults
.
get
(
i
-
1
)).
append
(
StringUtils
.
LF
);
}
}
}
}
promptTemplate
=
promptTemplate
.
replace
(
"${knowledgeResults}"
,
knowledgeResultsBuilder
.
toString
());
promptTemplate
=
promptTemplate
.
replace
(
"${knowledgeResults}"
,
knowledgeResultsBuilder
.
toString
());
...
...
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