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
10d97747
Commit
10d97747
authored
Jan 03, 2025
by
黄奎
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
11
parent
6086a5f8
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
26 additions
and
3 deletions
+26
-3
UserReidsCache.cs
Edu.Cache/User/UserReidsCache.cs
+18
-0
AIStudentController.cs
Edu.WebApi/Controllers/AI/AIStudentController.cs
+7
-3
run_5001.cmd
Edu.WebApi/run_5001.cmd
+1
-0
No files found.
Edu.Cache/User/UserReidsCache.cs
View file @
10d97747
...
@@ -84,6 +84,24 @@ namespace Edu.Cache.User
...
@@ -84,6 +84,24 @@ namespace Edu.Cache.User
}
}
/// <summary>
/// 设置缓存
/// </summary>
/// <param name="model"></param>
public
static
void
SetOpenAIModelCache
(
string
cacheKey
,
OpenAIModel
model
,
int
JwtExpirTime
)
{
try
{
TimeSpan
ts
=
GetExpirTime
(
JwtExpirTime
);
redis
.
StringSet
<
OpenAIModel
>(
cacheKey
,
model
,
ts
);
}
catch
(
Exception
ex
)
{
Common
.
Plugin
.
LogHelper
.
Write
(
ex
,
"SetOpenAIModelCache缓存设置失败"
);
}
}
/// <summary>
/// <summary>
/// 获取缓存
/// 获取缓存
...
...
Edu.WebApi/Controllers/AI/AIStudentController.cs
View file @
10d97747
...
@@ -298,9 +298,13 @@ namespace Edu.WebApi.Controllers.AI
...
@@ -298,9 +298,13 @@ namespace Edu.WebApi.Controllers.AI
// 编码 JSON
// 编码 JSON
var
jsonData
=
data
.
ToString
();
var
jsonData
=
data
.
ToString
();
var
dataBytes
=
Encoding
.
UTF8
.
GetBytes
(
jsonData
);
var
dataBytes
=
Encoding
.
UTF8
.
GetBytes
(
jsonData
);
var
returnModel
=
Cache
.
User
.
UserReidsCache
.
OpenAIGet
(
this
.
AppletUserInfo
.
AccountId
+
"_"
+
"LogId_"
+
addId
);
string
cacheKey
=
this
.
AppletUserInfo
.
AccountId
+
"_"
+
"LogId_"
+
addId
;
Console
.
WriteLine
(
"PostAsync:CacheKey:{0}"
,
cacheKey
);
var
returnModel
=
Cache
.
User
.
UserReidsCache
.
OpenAIGet
(
cacheKey
);
Console
.
WriteLine
(
"PostAsync:returnModel_1:{0}"
,
Common
.
Plugin
.
JsonHelper
.
Serialize
(
returnModel
));
if
(
returnModel
!=
null
)
if
(
returnModel
!=
null
)
{
{
Console
.
WriteLine
(
"PostAsync:returnModel_2:{0}"
,
Common
.
Plugin
.
JsonHelper
.
Serialize
(
returnModel
));
using
(
HttpClient
client
=
new
HttpClient
())
using
(
HttpClient
client
=
new
HttpClient
())
{
{
var
requestContent
=
new
ByteArrayContent
(
dataBytes
);
var
requestContent
=
new
ByteArrayContent
(
dataBytes
);
...
@@ -337,12 +341,12 @@ namespace Edu.WebApi.Controllers.AI
...
@@ -337,12 +341,12 @@ namespace Edu.WebApi.Controllers.AI
}
}
aiModule
.
SetAIUseLogModule
(
oldModel
);
aiModule
.
SetAIUseLogModule
(
oldModel
);
}
}
Cache
.
User
.
UserReidsCache
.
Set
(
this
.
AppletUserInfo
.
AccountId
+
"_"
+
"LogId_"
+
addId
,
returnModel
,
Common
.
Config
.
JwtExpirTime
);
Cache
.
User
.
UserReidsCache
.
Set
OpenAIModelCache
(
cacheKey
,
returnModel
,
Common
.
Config
.
JwtExpirTime
);
}
}
else
else
{
{
returnModel
.
Status
=
3
;
//失败了
returnModel
.
Status
=
3
;
//失败了
Cache
.
User
.
UserReidsCache
.
Set
(
this
.
AppletUserInfo
.
AccountId
+
"_"
+
"LogId_"
+
addId
,
returnModel
,
Common
.
Config
.
JwtExpirTime
);
Cache
.
User
.
UserReidsCache
.
Set
OpenAIModelCache
(
cacheKey
,
returnModel
,
Common
.
Config
.
JwtExpirTime
);
LogHelper
.
WriteInfo
(
$"Error:
{
response
.
StatusCode
}
,
{
response
.
ReasonPhrase
}
"
);
LogHelper
.
WriteInfo
(
$"Error:
{
response
.
StatusCode
}
,
{
response
.
ReasonPhrase
}
"
);
}
}
}
}
...
...
Edu.WebApi/run_5001.cmd
View file @
10d97747
...
@@ -2,4 +2,5 @@
...
@@ -2,4 +2,5 @@
echo ASPNETCORE_ENVIRONMENT=Development
echo ASPNETCORE_ENVIRONMENT=Development
dotnet build
dotnet build
start "Edu.WebApi" dotnet bin\Debug\netcoreapp3.1\Edu.WebApi.dll --urls http://0.0.0.0:5001 --ip="127.0.0.1" --port=5001
start "Edu.WebApi" dotnet bin\Debug\netcoreapp3.1\Edu.WebApi.dll --urls http://0.0.0.0:5001 --ip="127.0.0.1" --port=5001
dotnet Edu.WebApi.dll --urls http://0.0.0.0:5001 --ip="127.0.0.1" --port=5001
exit
exit
\ No newline at end of file
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