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
f697c92e
Commit
f697c92e
authored
Dec 30, 2024
by
吴春
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
047eab17
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
28 additions
and
26 deletions
+28
-26
OpenAIModel.cs
Edu.Common/API/OpenAIModel.cs
+1
-1
AIStudentController.cs
Edu.WebApi/Controllers/AI/AIStudentController.cs
+27
-25
No files found.
Edu.Common/API/OpenAIModel.cs
View file @
f697c92e
...
...
@@ -12,7 +12,7 @@ namespace Edu.Common.API
public
int
AccountId
{
get
;
set
;
}
public
int
ApplicationId
{
get
;
set
;
}
public
string
KeyWord
{
get
;
set
;
}
public
string
TimeUtc
{
get
;
set
;
}
public
int
LogId
{
get
;
set
;
}
public
int
Status
{
get
;
set
;
}
public
string
CompletionResultModel
{
get
;
set
;
}
...
...
Edu.WebApi/Controllers/AI/AIStudentController.cs
View file @
f697c92e
...
...
@@ -229,9 +229,8 @@ namespace Edu.WebApi.Controllers.AI
return
ApiResult
.
Failed
(
jsonObject
.
GetStringValue
(
"msg"
));
}
}
return
ApiResult
.
Failed
(
"获取失败"
);
}
return
ApiResult
.
Success
(
);
return
ApiResult
.
Failed
(
"解析失败!"
);
}
else
if
(
supplierModel
.
SupplierType
==
Common
.
Enum
.
AI
.
SupplierTypeEnum
.
OpenAI
)
{
...
...
@@ -247,39 +246,42 @@ namespace Edu.WebApi.Controllers.AI
AccountId
=
this
.
AppletUserInfo
.
AccountId
,
ApplicationId
=
applicationId
,
KeyWord
=
keyWord
,
TimeUtc
=
dateStr
,
LogId
=
0
,
Status
=
0
,
CompletionResultModel
=
""
,
};
Cache
.
User
.
UserReidsCache
.
Set
(
this
.
AppletUserInfo
.
AccountId
+
"_"
+
"TimeUtc"
+
dateStr
,
resultModel
,
Common
.
Config
.
JwtExpirTime
);
var
result
=
openai
.
Completions
.
CreateCompletionAsync
(
completion
);
int
addId
=
aiModule
.
SetAIUseLogModule
(
userLogModel
);
if
(
result
!=
null
)
if
(
addId
>
0
)
{
try
Cache
.
User
.
UserReidsCache
.
Set
(
this
.
AppletUserInfo
.
AccountId
+
"_"
+
"LogId_"
+
addId
,
resultModel
,
Common
.
Config
.
JwtExpirTime
);
if
(
result
!=
null
)
{
var
returnModel
=
Cache
.
User
.
UserReidsCache
.
OpenAIGet
(
this
.
AppletUserInfo
.
AccountId
+
"_"
+
"TimeUtc"
+
dateStr
);
if
(
returnModel
!=
null
)
try
{
re
turnModel
.
Status
=
1
;
string
completionResult
=
""
;
if
(
re
sult
.
Result
!=
null
)
re
sultModel
.
LogId
=
addId
;
var
returnModel
=
Cache
.
User
.
UserReidsCache
.
OpenAIGet
(
this
.
AppletUserInfo
.
AccountId
+
"_"
+
"LogId_"
+
addId
)
;
if
(
re
turnModel
!=
null
)
{
completionResult
=
JsonHelper
.
Serialize
(
result
.
Result
);
returnModel
.
Status
=
1
;
string
completionResult
=
""
;
if
(
result
.
Result
!=
null
)
{
completionResult
=
JsonHelper
.
Serialize
(
result
.
Result
);
}
returnModel
.
CompletionResultModel
=
completionResult
;
Cache
.
User
.
UserReidsCache
.
Set
(
this
.
AppletUserInfo
.
AccountId
+
"_"
+
"LogId_"
+
addId
,
resultModel
,
Common
.
Config
.
JwtExpirTime
);
}
returnModel
.
CompletionResultModel
=
completionResult
;
Cache
.
User
.
UserReidsCache
.
Set
(
this
.
AppletUserInfo
.
AccountId
+
"_"
+
"TimeUtc"
+
dateStr
,
resultModel
,
Common
.
Config
.
JwtExpirTime
);
}
}
catch
(
Exception
ex
)
{
Common
.
Plugin
.
LogHelper
.
Write
(
ex
,
"GetUserLoginInfo"
);
catch
(
Exception
ex
)
{
Common
.
Plugin
.
LogHelper
.
Write
(
ex
,
"GetUserLoginInfo"
);
}
}
return
ApiResult
.
Success
(
data
:
new
{
result
=
resultModel
,
Id
=
addId
});
}
return
ApiResult
.
Success
(
data
:
new
{
result
=
resultModel
,
Id
=
addId
});
}
return
ApiResult
.
Success
(
);
return
ApiResult
.
Failed
(
"解析失败!"
);
}
/// <summary>
...
...
@@ -289,18 +291,18 @@ namespace Edu.WebApi.Controllers.AI
[
HttpPost
]
public
ApiResult
GetOpenAIResult
()
{
string
dateStr
=
base
.
ParmJObj
.
GetStringValue
(
"TimeUtc"
);
//
string dateStr = base.ParmJObj.GetStringValue("TimeUtc");
int
Id
=
base
.
ParmJObj
.
GetInt
(
"Id"
,
0
);
if
(
string
.
IsNullOrWhiteSpace
(
dateStr
)
||
Id
<=
0
)
if
(
Id
<=
0
)
{
return
ApiResult
.
ParamIsNull
();
}
var
returnModel
=
Cache
.
User
.
UserReidsCache
.
OpenAIGet
(
this
.
AppletUserInfo
.
AccountId
+
"_"
+
"
TimeUtc"
+
dateStr
);
var
returnModel
=
Cache
.
User
.
UserReidsCache
.
OpenAIGet
(
this
.
AppletUserInfo
.
AccountId
+
"_"
+
"
LogId_"
+
Id
);
if
(
returnModel
==
null
)
{
return
ApiResult
.
Failed
(
"获取失败请重新调用"
);
}
else
else
if
(
returnModel
.
Status
==
1
)
{
var
model
=
aiModule
.
GetAIUseLogEntity
(
Id
);
model
.
ResultInfo
=
returnModel
.
CompletionResultModel
;
...
...
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