Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
D
deep-ask
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
deepseek
deep-ask
Commits
32eae563
Commit
32eae563
authored
Apr 03, 2025
by
luojun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
deepseek优化
parent
b6fb971e
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
5 deletions
+5
-5
VoiceWebSocketServer.java
src/main/java/admin/server/VoiceWebSocketServer.java
+3
-3
PythonOpenApiClientImpl.java
...main/java/admin/service/impl/PythonOpenApiClientImpl.java
+2
-2
No files found.
src/main/java/admin/server/VoiceWebSocketServer.java
View file @
32eae563
...
...
@@ -207,12 +207,12 @@ public class VoiceWebSocketServer {
chatgptRoleRecordsService
.
saveContent
(
analysisData
.
getData
(),
ScreenEnum
.
getByUserName
(
memberId
.
split
(
"__"
)[
1
])
,
Integer
.
valueOf
(
webSocketModel
.
getSessionId
()),
10001
,
0
,
analysisData
.
getDataList
()!=
null
?
1
:
0
,
analysisData
.
getDataList
());
}
else
if
(
analysisData
.
getType
().
equals
(
2
)){
//左边内容
sendMessage
(
session
,
JSONObject
.
toJSONString
(
WebSocketModel
.
createChartMode
(
"reply"
,
"text"
,
analysisData
.
getData
(),
StringUtils
.
isNotBlank
(
analysisData
.
getFile
())
?
"http://newscreen.justh5.com/bg/"
+
analysisData
.
getFile
()
:
null
)));
sendMessage
(
session
,
JSONObject
.
toJSONString
(
WebSocketModel
.
createChartMode
(
"reply"
,
"text"
,
analysisData
.
getData
(),
StringUtils
.
isNotBlank
(
analysisData
.
getFile
())
?
"http
s
://newscreen.justh5.com/bg/"
+
analysisData
.
getFile
()
:
null
)));
//结束标识
sendMessage
(
session
,
JSONObject
.
toJSONString
(
WebSocketModel
.
createChartMode
(
"done"
,
"chart"
,
analysisData
.
getData
(),
StringUtils
.
isNotBlank
(
analysisData
.
getFile
())
?
"http://newscreen.justh5.com/bg/"
+
analysisData
.
getFile
()
:
null
)));
sendMessage
(
session
,
JSONObject
.
toJSONString
(
WebSocketModel
.
createChartMode
(
"done"
,
"chart"
,
analysisData
.
getData
(),
StringUtils
.
isNotBlank
(
analysisData
.
getFile
())
?
"http
s
://newscreen.justh5.com/bg/"
+
analysisData
.
getFile
()
:
null
)));
//存储会话记录
chatgptRoleRecordsService
.
saveContent
(
analysisData
.
getData
(),
ScreenEnum
.
getByUserName
(
memberId
.
split
(
"__"
)[
1
]),
Integer
.
valueOf
(
webSocketModel
.
getSessionId
()),
10001
,
0
,
StringUtils
.
isNotBlank
(
analysisData
.
getFile
())?
2
:
0
,
StringUtils
.
isNotBlank
(
analysisData
.
getFile
())?
"http://newscreen.justh5.com/bg/"
+
analysisData
.
getFile
():
null
);
chatgptRoleRecordsService
.
saveContent
(
analysisData
.
getData
(),
ScreenEnum
.
getByUserName
(
memberId
.
split
(
"__"
)[
1
]),
Integer
.
valueOf
(
webSocketModel
.
getSessionId
()),
10001
,
0
,
StringUtils
.
isNotBlank
(
analysisData
.
getFile
())?
2
:
0
,
StringUtils
.
isNotBlank
(
analysisData
.
getFile
())?
"http
s
://newscreen.justh5.com/bg/"
+
analysisData
.
getFile
():
null
);
}
}
...
...
src/main/java/admin/service/impl/PythonOpenApiClientImpl.java
View file @
32eae563
...
...
@@ -21,12 +21,12 @@ import java.util.List;
public
class
PythonOpenApiClientImpl
implements
PythonOpenApiClient
{
@Override
public
PythonResp
getAnalysisData
(
PythonApiReq
pythonApiReq
)
{
return
JSONObject
.
parseObject
(
HttpUtil
.
post
(
"http://py.justh5.com/aiapi/sqlqa/"
,
pythonApiReq
),
PythonResp
.
class
);
return
JSONObject
.
parseObject
(
HttpUtil
.
post
(
"http
s
://py.justh5.com/aiapi/sqlqa/"
,
pythonApiReq
),
PythonResp
.
class
);
}
@Override
public
List
<
String
>
getSimilarProblems
(
PythonApiReq
pythonApiReq
)
{
String
post
=
HttpUtil
.
post
(
"http://py.justh5.com/aiapi/relatedIssues"
,
pythonApiReq
);
String
post
=
HttpUtil
.
post
(
"http
s
://py.justh5.com/aiapi/relatedIssues"
,
pythonApiReq
);
return
JSONObject
.
parseArray
(
post
,
String
.
class
);
}
}
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