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
1
Merge Requests
1
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
ced06bc4
Commit
ced06bc4
authored
Aug 22, 2025
by
alex yao
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix[智能问数]: csv对话
parent
75bca6fb
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
0 deletions
+12
-0
AiBiServiceImpl.java
...java/cn/com/poc/ai_bi/aggregate/impl/AiBiServiceImpl.java
+1
-0
LargeModelDemandResult.java
...e/demand/ai/entity/largemodel/LargeModelDemandResult.java
+11
-0
No files found.
src/main/java/cn/com/poc/ai_bi/aggregate/impl/AiBiServiceImpl.java
View file @
ced06bc4
...
...
@@ -298,6 +298,7 @@ public class AiBiServiceImpl implements AiBiService {
if
(
csvChainResult
!=
null
)
{
sseUtil
.
send
(
JsonUtils
.
serialize
(
csvChainResult
));
if
(
StringUtils
.
isNotBlank
(
csvChainResult
.
getResult
()))
{
JSONObject
echartJSONObject
=
new
JSONObject
();
echartJSONObject
.
put
(
"sql"
,
StringUtils
.
EMPTY
);
...
...
src/main/java/cn/com/poc/thirdparty/resource/demand/ai/entity/largemodel/LargeModelDemandResult.java
View file @
ced06bc4
package
cn
.
com
.
poc
.
thirdparty
.
resource
.
demand
.
ai
.
entity
.
largemodel
;
import
cn.com.poc.agent_application.entity.KnowledgeContentResult
;
import
cn.com.poc.thirdparty.resource.demand.ai.entity.csvchain.CSVChainResult
;
import
cn.com.poc.thirdparty.resource.demand.ai.entity.dbchain.DBChainResult
;
import
cn.com.poc.thirdparty.resource.demand.ai.entity.dialogue.ToolFunction
;
import
cn.com.poc.thirdparty.resource.demand.ai.entity.dialogue.Usage
;
...
...
@@ -19,6 +20,8 @@ public class LargeModelDemandResult extends AbstractResult implements Serializab
private
ToolFunction
function
;
private
CSVChainResult
csvChainResult
;
private
List
<
DBChainResult
>
dbChainResult
;
private
List
<
KnowledgeContentResult
>
knowledgeContentResult
;
...
...
@@ -43,6 +46,14 @@ public class LargeModelDemandResult extends AbstractResult implements Serializab
this
.
knowledgeContentResult
=
knowledgeContentResult
;
}
public
CSVChainResult
getCsvChainResult
()
{
return
csvChainResult
;
}
public
void
setCsvChainResult
(
CSVChainResult
csvChainResult
)
{
this
.
csvChainResult
=
csvChainResult
;
}
public
String
getCode
()
{
return
code
;
}
...
...
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