Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
E
Education
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
黄奎
Education
Commits
047eab17
Commit
047eab17
authored
Dec 30, 2024
by
吴春
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
579d8299
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
25 additions
and
7 deletions
+25
-7
RB_AI_UseLog.cs
Edu.Model/Entity/AI/RB_AI_UseLog.cs
+13
-0
AIStudentController.cs
Edu.WebApi/Controllers/AI/AIStudentController.cs
+12
-7
No files found.
Edu.Model/Entity/AI/RB_AI_UseLog.cs
View file @
047eab17
...
...
@@ -48,6 +48,10 @@ namespace Edu.Model.Entity.AI
/// </summary>
public
DateTime
CreateTime
{
get
;
set
;
}
/// <summary>
/// 关键字类型
/// </summary>
public
int
KeyWordType
{
get
;
set
;
}
/// <summary>
/// 学校Id
...
...
@@ -64,6 +68,15 @@ namespace Edu.Model.Entity.AI
/// </summary>
public
DateStateEnum
Status
{
get
;
set
;
}
/// <summary>
/// 图片/关键字信息
/// </summary>
public
string
KeyWord
{
get
;
set
;
}
/// <summary>
/// 返回结果信息
/// </summary>
public
string
ResultInfo
{
get
;
set
;
}
}
}
Edu.WebApi/Controllers/AI/AIStudentController.cs
View file @
047eab17
...
...
@@ -155,6 +155,8 @@ namespace Edu.WebApi.Controllers.AI
userLogModel
.
SupplierId
=
applocationModel
.
SupplierId
;
userLogModel
.
TokenNum
=
""
;
userLogModel
.
Charging
=
""
;
userLogModel
.
KeyWord
=
keyWord
;
userLogModel
.
KeyWordType
=
Type
;
userLogModel
.
Status
=
Common
.
Enum
.
DateStateEnum
.
Normal
;
if
((
supplierModel
?.
ID
??
0
)
==
0
)
{
...
...
@@ -185,6 +187,7 @@ namespace Edu.WebApi.Controllers.AI
string
postUrl
=
""
;
if
(
Type
==
1
||
Type
==
3
)
//1-英语作文批改(图像识别)
{
userLogModel
.
KeyWord
=
imgUrl
;
userLogModel
.
Charging
=
"0.13(元/次)"
;
postUrl
=
(
Type
==
1
?
"https://openapi.youdao.com/v2/correct_writing_image"
:
"https://openapi.youdao.com/correct_writing_cn_image"
);
...
...
@@ -216,6 +219,7 @@ namespace Edu.WebApi.Controllers.AI
JObject
jsonObject
=
JObject
.
Parse
(
resStr
);
if
(
jsonObject
.
GetStringValue
(
"errorCode"
)
==
"0"
)
{
userLogModel
.
ResultInfo
=
resStr
;
int
addId
=
aiModule
.
SetAIUseLogModule
(
userLogModel
);
// Task.Run(() => { });
return
ApiResult
.
Success
(
data
:
new
{
result
=
resStr
,
Id
=
addId
});
...
...
@@ -272,12 +276,6 @@ namespace Edu.WebApi.Controllers.AI
{
Common
.
Plugin
.
LogHelper
.
Write
(
ex
,
"GetUserLoginInfo"
);
}
//foreach (var item in result.Result.Completions)
//{
// answer = item.Text;
//}
}
return
ApiResult
.
Success
(
data
:
new
{
result
=
resultModel
,
Id
=
addId
});
}
...
...
@@ -292,7 +290,8 @@ namespace Edu.WebApi.Controllers.AI
public
ApiResult
GetOpenAIResult
()
{
string
dateStr
=
base
.
ParmJObj
.
GetStringValue
(
"TimeUtc"
);
if
(
string
.
IsNullOrWhiteSpace
(
dateStr
))
int
Id
=
base
.
ParmJObj
.
GetInt
(
"Id"
,
0
);
if
(
string
.
IsNullOrWhiteSpace
(
dateStr
)
||
Id
<=
0
)
{
return
ApiResult
.
ParamIsNull
();
}
...
...
@@ -301,6 +300,12 @@ namespace Edu.WebApi.Controllers.AI
{
return
ApiResult
.
Failed
(
"获取失败请重新调用"
);
}
else
{
var
model
=
aiModule
.
GetAIUseLogEntity
(
Id
);
model
.
ResultInfo
=
returnModel
.
CompletionResultModel
;
aiModule
.
SetAIUseLogModule
(
model
);
}
return
ApiResult
.
Success
(
data
:
returnModel
);
}
...
...
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