Compare commits

...

24 Commits
0.1.0 ... 0.1.1

Author SHA1 Message Date
zyxucp
34c06b1dd1 Merge branch 'feature_openai对外接口' 2024-02-18 23:53:23 +08:00
zyxucp
50415b12c0 add 增加描述 2024-02-18 23:49:30 +08:00
zyxucp
61509154c6 add 增加会话嵌入页面 2024-02-18 23:24:27 +08:00
zyxucp
3d5be56089 Update README.md 2024-02-18 16:02:30 +08:00
zyxucp
a0da9c223b fix 取消api的markdown格式化 2024-02-18 15:52:00 +08:00
zyxucp
172755081f add 新增对外接口 2024-02-18 15:46:21 +08:00
zyxucp
1da43f2cee fix 调整Pro框架Service结构 2024-02-18 14:20:46 +08:00
zyxucp
8b77ea4438 add 增加外部API配置页面 2024-02-18 14:05:15 +08:00
zyxucp
b6039c0da3 Delete AntSK.db 2024-02-18 10:46:05 +08:00
zyxucp
1cda01d5b3 Merge branch 'main' of https://github.com/xuzeyu91/AntSK 2024-02-15 16:43:41 +08:00
zyxucp
6bd2ef4131 add 添加一点延迟,让对话输出更平缓 2024-02-15 16:41:47 +08:00
zyxucp
96e1ca6b34 Update README.en.md 2024-02-15 13:39:39 +08:00
zyxucp
6620a74447 Update README.md 2024-02-15 13:38:46 +08:00
zyxucp
fb7a85b9cf Update README.md 2024-02-15 13:38:25 +08:00
zyxucp
b7532676c5 add 新增系统账号,需要输入账号密码才可访问 2024-02-15 13:34:32 +08:00
zyxucp
8cd6940311 update 修改登陆页 2024-02-15 12:36:52 +08:00
zyxucp
2de851f5b1 fix 如果模板为空给一个默认提示词 2024-02-14 20:55:25 +08:00
zyxucp
e8fd055349 add 增加首页 2024-02-10 00:54:46 +08:00
zyxucp
7b92373f54 fix 提前function让代码更整洁 2024-02-10 00:22:36 +08:00
zyxucp
03b937432f add 增加多轮会话,会话总结 2024-02-10 00:19:56 +08:00
zyxucp
bd9798ad17 fix 处理知识库markdown样式 2024-02-09 23:23:17 +08:00
zyxucp
030abf1059 Merge branch 'main' of https://github.com/xuzeyu91/AntSK 2024-02-09 23:05:30 +08:00
zyxucp
91e633700a add 增加应用标签 2024-02-09 23:03:49 +08:00
zyxucp
6eb034967c add 增加聊天流式输出 2024-02-09 22:49:44 +08:00
71 changed files with 1355 additions and 221 deletions

View File

@@ -15,6 +15,7 @@
<PackageReference Include="Microsoft.SemanticKernel" Version="1.3.0" />
<PackageReference Include="Microsoft.SemanticKernel.Core" Version="1.3.0" />
<PackageReference Include="Microsoft.SemanticKernel.Plugins.Core" Version="1.3.0-alpha" />
<PackageReference Include="Microsoft.KernelMemory.Core" Version="0.26.240121.1" />
<PackageReference Include="Microsoft.KernelMemory.MemoryDb.Postgres" Version="0.26.240121.1" />
</ItemGroup>

View File

@@ -102,6 +102,11 @@
知识库ID列表
</summary>
</member>
<member name="P:AntSK.Domain.Repositories.Apps.SecretKey">
<summary>
API调用秘钥
</summary>
</member>
<member name="P:AntSK.Domain.Repositories.KmsDetails.FileName">
<summary>
文件名称

View File

@@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AntSK.Domain.Options
{
public class LoginOption
{
public static string User { get; set; }
public static string Password { get; set; }
}
}

View File

@@ -39,5 +39,9 @@ namespace AntSK.Domain.Repositories
/// 知识库ID列表
/// </summary>
public string? KmsIdList { get; set; }
/// <summary>
/// API调用秘钥
/// </summary>
public string? SecretKey { get; set; }
}
}

View File

View File

@@ -5,11 +5,14 @@
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<DocumentationFile>AntSK.xml</DocumentationFile>
<NoWarn>CA1050,CA1707,CA2007,VSTHRD111,CS1591,RCS1110,CA5394,SKEXP0001,SKEXP0002,SKEXP0003,SKEXP0004,SKEXP0010,SKEXP0011,,SKEXP0012,SKEXP0020,SKEXP0021,SKEXP0022,SKEXP0023,SKEXP0024,SKEXP0025,SKEXP0026,SKEXP0027,SKEXP0028,SKEXP0029,SKEXP0030,SKEXP0031,SKEXP0032,SKEXP0040,SKEXP0041,SKEXP0042,SKEXP0050,SKEXP0051,SKEXP0052,SKEXP0053,SKEXP0054,SKEXP0055,SKEXP0060,SKEXP0061,SKEXP0101,SKEXP0102</NoWarn>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="AntDesign.Charts" Version="0.5.1" />
<PackageReference Include="AntDesign.ProLayout" Version="0.17.3" />
<PackageReference Include="Microsoft.AspNetCore.Authorization" Version="8.0.2" />
<PackageReference Include="Microsoft.AspNetCore.Components.Authorization" Version="8.0.2" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.Authentication" Version="8.0.2" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.5.0" />
<PackageReference Include="System.Net.Http.Json" Version="8.0.0" />
</ItemGroup>

View File

@@ -16,6 +16,72 @@
</summary>
<returns></returns>
</member>
<member name="T:AntSK.Controllers.OpenController">
<summary>
对外接口
</summary>
</member>
<member name="M:AntSK.Controllers.OpenController.#ctor(AntSK.Services.OpenApi.IOpenApiService)">
<summary>
对外接口
</summary>
</member>
<member name="M:AntSK.Controllers.OpenController.chat(AntSK.Models.OpenAIModel)">
<summary>
对话接口
</summary>
<returns></returns>
</member>
<member name="M:AntSK.Pages.ChatPage.Chat.SendKms(System.String,System.String,AntSK.Domain.Repositories.Apps)">
<summary>
发送知识库问答
</summary>
<param name="questions"></param>
<param name="msg"></param>
<param name="app"></param>
<returns></returns>
</member>
<member name="M:AntSK.Pages.ChatPage.Chat.SendChat(System.String,System.String,AntSK.Domain.Repositories.Apps)">
<summary>
发送普通对话
</summary>
<param name="questions"></param>
<param name="msg"></param>
<param name="app"></param>
<returns></returns>
</member>
<member name="M:AntSK.Pages.ChatPage.Chat.HistorySummarize(System.String)">
<summary>
历史会话的会话总结
</summary>
<param name="questions"></param>
<returns></returns>
</member>
<member name="M:AntSK.Pages.ChatPage.OpenChat.SendKms(System.String,System.String,AntSK.Domain.Repositories.Apps)">
<summary>
发送知识库问答
</summary>
<param name="questions"></param>
<param name="msg"></param>
<param name="app"></param>
<returns></returns>
</member>
<member name="M:AntSK.Pages.ChatPage.OpenChat.SendChat(System.String,System.String,AntSK.Domain.Repositories.Apps)">
<summary>
发送普通对话
</summary>
<param name="questions"></param>
<param name="msg"></param>
<param name="app"></param>
<returns></returns>
</member>
<member name="M:AntSK.Pages.ChatPage.OpenChat.HistorySummarize(System.String)">
<summary>
历史会话的会话总结
</summary>
<param name="questions"></param>
<returns></returns>
</member>
<member name="T:AntSK.Pages.KmsPage.KmsDetail.UrlModel">
<summary>
根据文档ID获取文档
@@ -23,5 +89,31 @@
<param name="fileid"></param>
<returns></returns>
</member>
<member name="M:AntSK.Services.OpenApi.OpenApiService.SendKms(System.String,AntSK.Domain.Repositories.Apps)">
<summary>
发送知识库问答
</summary>
<param name="questions"></param>
<param name="msg"></param>
<param name="app"></param>
<returns></returns>
</member>
<member name="M:AntSK.Services.OpenApi.OpenApiService.SendChat(System.String,AntSK.Domain.Repositories.Apps)">
<summary>
发送普通对话
</summary>
<param name="questions"></param>
<param name="msg"></param>
<param name="app"></param>
<returns></returns>
</member>
<member name="M:AntSK.Services.OpenApi.OpenApiService.HistorySummarize(AntSK.Models.OpenAIModel)">
<summary>
历史会话的会话总结
</summary>
<param name="questions"></param>
<param name="msg"></param>
<returns></returns>
</member>
</members>
</doc>

View File

@@ -1,13 +1,32 @@
<Router AppAssembly="@typeof(Program).Assembly">
<Found Context="routeData">
<CascadingValue Value="routeData">
<RouteView RouteData="@routeData" DefaultLayout="@typeof(BasicLayout)" />
</CascadingValue>
</Found>
<NotFound>
<LayoutView Layout="@typeof(BasicLayout)">
<p>Sorry, there's nothing at this address.</p>
</LayoutView>
</NotFound>
</Router>
<AntContainer />
@inject NavigationManager NavigationManager
@using Microsoft.AspNetCore.Components.Authorization
<CascadingAuthenticationState>
<Router AppAssembly="@typeof(Program).Assembly">
<Found Context="routeData">
<CascadingValue Value="routeData">
<RouteView RouteData="@routeData" DefaultLayout="@typeof(BasicLayout)" />
</CascadingValue>
</Found>
<NotFound>
<LayoutView Layout="@typeof(BasicLayout)">
<p>Sorry, there's nothing at this address.</p>
</LayoutView>
</NotFound>
</Router>
<AntContainer />
</CascadingAuthenticationState>
@code {
private RenderFragment RedirectToLogin => builder =>
{
var returnUrl = NavigationManager.ToBaseRelativePath(NavigationManager.Uri);
if (string.IsNullOrWhiteSpace(returnUrl))
{
NavigationManager.NavigateTo("user/login");
}
else
{
NavigationManager.NavigateTo($"user/login?returnUrl={Uri.EscapeDataString(returnUrl)}", true);
}
};
}

View File

@@ -0,0 +1,32 @@
using AntSK.Domain.Model;
using AntSK.Domain.Repositories;
using AntSK.Domain.Utils;
using AntSK.Models;
using AntSK.Models.OpenAPI;
using AntSK.Services.OpenApi;
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Mvc;
namespace AntSK.Controllers
{
/// <summary>
/// 对外接口
/// </summary>
[ApiController]
public class OpenController(IOpenApiService _openApiService) : ControllerBase
{
/// <summary>
/// 对话接口
/// </summary>
/// <returns></returns>
[HttpPost]
[Route("api/v1/chat/completions")]
public async Task<IActionResult> chat(OpenAIModel model)
{
string sk = HttpContext.Request.Headers["Authorization"].ConvertToString();
var result=await _openApiService.Chat(model,sk);
return Ok(result);
}
}
}

View File

@@ -0,0 +1,8 @@
@namespace AntSK
@inherits LayoutComponentBase
@Body
@code {
}

View File

@@ -11,14 +11,14 @@
<div class="header">
<a>
<img alt="logo" class="logo" src="assets/logo.svg" />
<span class="title">Ant Design</span>
<span class="title">AntSK</span>
</a>
</div>
<div class="desc">Ant Design Blazor</div>
<div class="desc"> </div>
</div>
@Body
</div>
<FooterView Copyright="2021 Ant Design Blazor" Links="Links"></FooterView>
<FooterView Copyright="许泽宇的技术分享" Links="Links"></FooterView>
</div>
@code

View File

@@ -0,0 +1,21 @@
using Microsoft.AspNetCore.Identity;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AntSK.Models
{
public class OpenAIModel
{
public List<OpenAIMessage> messages { get; set; }
}
public class OpenAIMessage
{
public string role { get; set; }
public string content { get; set; }
}
}

View File

@@ -0,0 +1,23 @@
using System.Text.Json.Serialization;
namespace AntSK.Models.OpenAPI
{
public class OpenAIResult
{
public string id { get; set; } = Guid.NewGuid().ToString();
[JsonPropertyName("object")]
public string obj { get; set; } = "chat.completion";
public List<ChoicesModel> choices { get; set; }
public long created { get; set; }
}
public class ChoicesModel
{
public string finish_reason { get; set; } = "stop";
public int index { get; set; } = 0;
public OpenAIMessage message { get; set; }
}
}

View File

@@ -3,6 +3,8 @@
@using AntSK.Models
@page "/App/Add"
@page "/App/Add/{AppId}"
@using AntSK.Services.Auth
@inherits AuthComponentBase
<PageContainer Title="新增应用">
<ChildContent>

View File

@@ -68,6 +68,8 @@ namespace AntSK.Pages.AppPage
{
//新增
_appModel.Id = Guid.NewGuid().ToString();
//秘钥
_appModel.SecretKey="sk-"+ Guid.NewGuid().ToString();
if (_apps_Repositories.IsAny(p => p.Name == _appModel.Name))
{
_errorMsg = "名称已存在!";

View File

@@ -1,11 +0,0 @@
@namespace AntSK.Pages.AppPage
@using AntSK.Domain.Repositories
@using System.ComponentModel.DataAnnotations
@page "/App/Detail/{AppID}"
@inject NavigationManager NavigationManager
<h3>AppDetail</h3>
@code {
}

View File

@@ -1,10 +0,0 @@
using Microsoft.AspNetCore.Components;
namespace AntSK.Pages.AppPage
{
public partial class AppDetail
{
[Parameter]
public string AppId { get; set; }
}
}

View File

@@ -2,6 +2,8 @@
@using AntSK.Domain.Repositories
@page "/AppList"
@inject NavigationManager NavigationManager
@using AntSK.Services.Auth
@inherits AuthComponentBase
<PageContainer Title="应用列表">
<Content>
@@ -30,7 +32,9 @@
{
<Card Hoverable Bordered Class="card" Actions="@(new[] {
info(()=> Info(context.Id)) ,
open(()=> Open(context.Id)),
delete(async ()=>await Delete(context.Id)) ,
})" Style="max-height:247px;">
<CardMeta>
<AvatarTemplate>
@@ -44,6 +48,15 @@
<!--todo: Ellipsis not working-->
@context.Describe
</Paragraph>
@if (context.Type == "chat")
{
<Tag Color="@PresetColor.Yellow.ToString()">会话应用</Tag>
}
else if (context.Type == "kms")
{
<Tag Color="@PresetColor.Green.ToString()">知识库</Tag>
}
</DescriptionTemplate>
</CardMeta>
</Card>
@@ -57,5 +70,6 @@
@code
{
RenderFragment info(Action clickAction) =>@<a key="info" @onclick="@clickAction">查看</a>;
RenderFragment open(Action clickAction) =>@<a key="info" @onclick="@clickAction">外部使用</a>;
RenderFragment delete(Action clickAction) => @<a key="delete" @onclick="@clickAction">删除</a> ;
}

View File

@@ -65,6 +65,10 @@ namespace AntSK.Pages
NavigationManager.NavigateTo($"/app/add/{id}");
}
private void Open(string id)
{
NavigationManager.NavigateTo($"/app/open/{id}");
}
private async Task Delete(string id)

View File

@@ -0,0 +1,60 @@
@namespace AntSK.Pages.AppPage
@page "/App/Open/{AppID}"
<AntDesign.Col Lg="24" Md="24">
<Card Class="tabsCard">
<CardTabs>
<Tabs DefaultActiveKey="1">
<TabPane Key="1">
<TabTemplate>Api接入</TabTemplate>
<ChildContent>
<Card>
<Form Model="@_appModel"
Style="margin-top: 8px;">
<FormItem Label="接口地址" LabelCol="_formItemLayout.LabelCol" WrapperCol="_formItemLayout.WrapperCol">
<Input @bind-Value="@_openApiUrl" ReadOnly="true" />
</FormItem>
<FormItem Label="秘钥" LabelCol="_formItemLayout.LabelCol" WrapperCol="_formItemLayout.WrapperCol">
<Input @bind-Value="@context.SecretKey" ReadOnly="true" />
<Button OnClick="Reset" Style="margin-top:5px;">
重置
</Button>
</FormItem>
<FormItem Label="使用方法" LabelCol="_formItemLayout.LabelCol" WrapperCol="_formItemLayout.WrapperCol">
<TextArea @bind-Value="@_desc" ReadOnly="true" Rows="15" />
</FormItem>
</Form>
</Card>
</ChildContent>
</TabPane>
<TabPane Key="2">
<TabTemplate>页面嵌入</TabTemplate>
<ChildContent>
<Form Model="@_appModel"
Style="margin-top: 8px;">
<FormItem Label="页面地址" LabelCol="_formItemLayout.LabelCol" WrapperCol="_formItemLayout.WrapperCol">
<Input @bind-Value="@_openChatUrl" ReadOnly="true" />
<a href="@_openChatUrl" target="_blank">打开</a>
</FormItem>
<FormItem Label="嵌入脚本" LabelCol="_formItemLayout.LabelCol" WrapperCol="_formItemLayout.WrapperCol">
<TextArea @bind-Value="@_script" ReadOnly="true" Rows="5" />
<span>
将上述代码添加到站点的 body 中<br/>
data-width宽度默认 30rem<br />
data-height高度默认 50rem<br />
data-message-icon-url:嵌入消息图标地址,默认不设置<br />
data-color消息图标颜色默认 #4e83fd<br />
</span>
</FormItem>
</Form>
</ChildContent>
</TabPane>
</Tabs>
</CardTabs>
</Card>
</AntDesign.Col>
@code {
}

View File

@@ -0,0 +1,90 @@
using AntDesign;
using AntSK.Domain.Model;
using AntSK.Domain.Repositories;
using AntSK.Models;
using DocumentFormat.OpenXml.Office2010.Excel;
using DocumentFormat.OpenXml.Wordprocessing;
using Microsoft.AspNetCore.Components;
using Newtonsoft.Json;
namespace AntSK.Pages.AppPage
{
public partial class AppOpen
{
[Parameter]
public string AppId { get; set; }
[Inject]
protected IApps_Repositories _apps_Repositories { get; set; }
[Inject]
IConfirmService _confirmService { get; set; }
[Inject]
NavigationManager NavigationManager { get; set; }
private readonly FormItemLayout _formItemLayout = new FormItemLayout
{
LabelCol = new ColLayoutParam
{
Xs = new EmbeddedProperty { Span = 24 },
Sm = new EmbeddedProperty { Span = 7 },
},
WrapperCol = new ColLayoutParam
{
Xs = new EmbeddedProperty { Span = 24 },
Sm = new EmbeddedProperty { Span = 12 },
Md = new EmbeddedProperty { Span = 10 },
}
};
private Apps _appModel = new Apps();
private string _openApiUrl { get; set; }
private string _openChatUrl { get; set; }
private string _desc { get; set; }
private string _script { get; set; }
protected override async Task OnInitializedAsync()
{
await base.OnInitializedAsync();
_appModel = _apps_Repositories.GetFirst(p => p.Id == AppId);
_openApiUrl = NavigationManager.BaseUri + "api/v1/chat/completions";
_openChatUrl= NavigationManager.BaseUri + "openchat/"+AppId;
GetDesc();
GetScript();
}
private void GetDesc()
{
_desc = @$"为了方便其他应用对接接口符合openai规范省略了温度TopP等参数。{Environment.NewLine}BaseUrl:{Environment.NewLine}{_openApiUrl} {Environment.NewLine}headers:{Environment.NewLine}Authorization: ""{_appModel.SecretKey}"" {Environment.NewLine}Body: {Environment.NewLine}{JsonConvert.SerializeObject(new OpenAIModel() { messages = new List<OpenAIMessage>() { new OpenAIMessage() { role = "user", content = "" } } }, Formatting.Indented)}";
}
private void GetScript()
{
_script = $"<script src=\"{NavigationManager.BaseUri}js/iframe.js\" data-width=\"40rem\" data-height=\"80vh\" id=\"antsk-iframe\" data-src=\"{NavigationManager.BaseUri}openchat/{AppId}\" data-color=\"#4e83fd\" data-message-icon-url=\"{NavigationManager.BaseUri}assets/ai.png\"></script>";
}
private void HandleSubmit()
{
}
private async Task Reset()
{
var content = "是否确认重置秘钥重之后之前的秘钥将无法访问API接口";
var title = "重置";
var result = await _confirmService.Show(content, title, ConfirmButtons.YesNo);
if (result == ConfirmResult.Yes)
{
_appModel.SecretKey = "sk-" + Guid.NewGuid().ToString();
_apps_Repositories.Update(_appModel);
GetDesc();
}
}
}
}

View File

@@ -4,13 +4,15 @@
@using Microsoft.AspNetCore.Components.Web.Virtualization
@page "/Chat"
@page "/Chat/{AppId}"
@using AntSK.Services.Auth
@inherits AuthComponentBase
<GridRow Gutter="(16, 16)">
<GridCol Span="12">
<Spin Size="large" Tip="请稍等..." Spinning="@(_loading)">
<Card Style="height:800px;overflow: auto;">
<TitleTemplate>
<Icon Type="setting" /> 选择应用
<GridRow Gutter="(16, 16)">
<GridCol Span="12">
<Spin Size="large" Tip="请稍等..." Spinning="@(_loading)">
<Card Style="height:800px;overflow: auto;">
<TitleTemplate>
<Icon Type="setting" /> 选择应用
<Select DataSource="@_list"
@bind-Value="@AppId"
DefaultValue="@("lucy")"
@@ -18,67 +20,67 @@
LabelProperty="c=>c.Name"
Style="width:200px">
</Select>
</TitleTemplate>
<Body>
<div id="scrollDiv" style="height: 530px; overflow-y: auto; overflow-x: hidden;">
<GridRow Gutter="(8, 8)">
<Virtualize Items="@(MessageList.OrderByDescending(o => o.CreateTime).ToList())" Context="item">
<GridCol Span="24">
<Card Size="small">
<TitleTemplate>
<Text Strong><Icon Type="bulb" /> @(item.Questions)</Text>
</TitleTemplate>
<Extra>
<Space>
<SpaceItem>
<a style="color: gray;" @onclick="@(() => OnCopyAsync(item))"><Icon Type="copy" /></a>
</SpaceItem>
<SpaceItem>
<a style="color: gray;" @onclick="@(() => OnClearAsync(item.ID))"><Icon Type="rest" /></a>
</SpaceItem>
</Space>
</Extra>
<Body>
@((MarkupString)(item.HtmlAnswers))
</Body>
</Card>
</GridCol>
</Virtualize>
</GridRow>
</div>
<div style="height: 10px;"></div>
<AntDesign.Input @bind-Value="@(_messageInput)" DebounceMilliseconds="@(-1)" Placeholder="输入消息回车发送" OnPressEnter="@(async () => await OnSendAsync())">
<Suffix>
<Button Icon="send" Type="@(ButtonType.Link)" OnClick="@(async () => await OnSendAsync())"></Button>
</Suffix>
</AntDesign.Input>
</Body>
</Card>
</Spin>
</GridCol>
<GridCol Span="12">
<Card Style="height: 800px;overflow: auto;">
<TitleTemplate>
<Icon Type="search" /> 调试结果
</TitleTemplate>
<Extra>
</Extra>
<Body>
<div id="scrollDiv" style="height: 530px; overflow-y: auto; overflow-x: hidden;">
<GridRow Gutter="(8, 8)">
<Virtualize Items="@(MessageList.OrderByDescending(o => o.CreateTime).ToList())" Context="item">
<GridCol Span="24">
<Card Size="small">
<TitleTemplate>
<Text Strong><Icon Type="bulb" /> @(item.Questions)</Text>
</TitleTemplate>
<Extra>
<Space>
<SpaceItem>
<a style="color: gray;" @onclick="@(() => OnCopyAsync(item))"><Icon Type="copy" /></a>
</SpaceItem>
<SpaceItem>
<a style="color: gray;" @onclick="@(() => OnClearAsync(item.ID))"><Icon Type="rest" /></a>
</SpaceItem>
</Space>
</Extra>
<Body>
@((MarkupString)(item.HtmlAnswers))
</Body>
</Card>
</GridCol>
</Virtualize>
</GridRow>
</div>
<div style="height: 10px;"></div>
<AntDesign.Input @bind-Value="@(_messageInput)" DebounceMilliseconds="@(-1)" Placeholder="输入消息回车发送" OnPressEnter="@(async () => await OnSendAsync())" Disabled="@Sendding">
<Suffix>
<Button Icon="send" Type="@(ButtonType.Link)" OnClick="@(async () => await OnSendAsync())" Disabled="@Sendding"></Button>
</Suffix>
</AntDesign.Input>
</Body>
</Card>
</Spin>
</GridCol>
<GridCol Span="12">
<Card Style="height: 800px;overflow: auto;">
<TitleTemplate>
<Icon Type="search" /> 调试结果
</TitleTemplate>
<Extra>
</Extra>
<Body>
<AntList Bordered DataSource="@RelevantSources">
<ChildContent Context="item">
<span> <b>@item.SourceName </b> 相似度:<Text Mark> @item.Relevance</Text></span>
<ListItem>
@item.Text
</ListItem>
</ChildContent>
</AntList>
<span> <b>@item.SourceName </b> 相似度:<Text Mark> @item.Relevance</Text></span>
<Body>
@((MarkupString)(@item.Text))
</Body>
</ChildContent>
</AntList>
</Body>
</Card>
</GridCol>
</GridRow>
@code {
@code {
}

View File

@@ -4,15 +4,18 @@ using AntSK.Domain.Repositories;
using AntSK.Domain.Utils;
using Azure.AI.OpenAI;
using Azure.Core;
using DocumentFormat.OpenXml.EMMA;
using MarkdownSharp;
using Microsoft.AspNetCore.Components;
using Microsoft.KernelMemory;
using Microsoft.OpenApi.Models;
using Microsoft.SemanticKernel;
using Microsoft.SemanticKernel.ChatCompletion;
using Microsoft.SemanticKernel.Connectors.OpenAI;
using Newtonsoft.Json;
using SqlSugar;
using System;
using System.Text;
namespace AntSK.Pages.ChatPage
{
@@ -37,6 +40,7 @@ namespace AntSK.Pages.ChatPage
protected List<MessageInfo> MessageList = [];
protected string? _messageInput;
protected string _json = "";
protected bool Sendding = false;
List<RelevantSource> RelevantSources = new List<RelevantSource>();
@@ -60,8 +64,10 @@ namespace AntSK.Pages.ChatPage
return;
}
Sendding = true;
await SendAsync(_messageInput);
_messageInput = "";
Sendding = false;
}
protected async Task OnCopyAsync(MessageInfo item)
@@ -82,82 +88,150 @@ namespace AntSK.Pages.ChatPage
protected async Task<bool> SendAsync(string questions)
{
string msg = questions;
//处理多轮会话
if (MessageList.Count > 0)
{
msg = await HistorySummarize(questions);
}
Apps app=_apps_Repositories.GetFirst(p => p.Id == AppId);
switch (app.Type)
{
case "chat":
//普通会话
var promptTemplateFactory = new KernelPromptTemplateFactory();
var promptTemplate = promptTemplateFactory.Create(new PromptTemplateConfig(app.Prompt));
var renderedPrompt = await promptTemplate.RenderAsync(_kernel);
var func = _kernel.CreateFunctionFromPrompt(app.Prompt, new OpenAIPromptExecutionSettings() );
var chatResult = await _kernel.InvokeAsync(func,new KernelArguments() { ["input"]=questions});
if (chatResult.IsNotNull())
{
string answers = chatResult.GetValue<string>();
var markdown = new Markdown();
string htmlAnswers = markdown.Transform(answers);
var info = new MessageInfo()
{
ID = Guid.NewGuid().ToString(),
Questions = questions,
Answers = answers,
HtmlAnswers = htmlAnswers,
CreateTime = DateTime.Now,
};
MessageList.Add(info);
}
await SendChat(questions, msg, app);
break;
case "kms":
//知识库问答
var filters = new List<MemoryFilter>();
var kmsidList = app.KmsIdList.Split(",");
foreach (var kmsid in kmsidList)
{
filters.Add(new MemoryFilter().ByTag("kmsid", kmsid));
}
var kmsResult = await _memory.AskAsync(questions, index: "kms", filters: filters);
if (kmsResult != null)
{
if (!string.IsNullOrEmpty(kmsResult.Result))
{
string answers = kmsResult.Result;
var markdown = new Markdown();
string htmlAnswers = markdown.Transform(answers);
var info = new MessageInfo()
{
ID = Guid.NewGuid().ToString(),
Questions = questions,
Answers = answers,
HtmlAnswers = htmlAnswers,
CreateTime = DateTime.Now,
};
MessageList.Add(info);
}
foreach (var x in kmsResult.RelevantSources)
{
foreach (var xsd in x.Partitions)
{
string sourceName = x.SourceName;
var fileDetail = _kmsDetails_Repositories.GetFirst(p => p.FileGuidName == x.SourceName);
if (fileDetail.IsNotNull())
{
sourceName = fileDetail.FileName;
}
RelevantSources.Add(new RelevantSource() { SourceName = sourceName, Text = xsd.Text, Relevance = xsd.Relevance });
}
}
}
await SendKms(questions, msg, app);
break;
}
return await Task.FromResult(true);
}
/// <summary>
/// 发送知识库问答
/// </summary>
/// <param name="questions"></param>
/// <param name="msg"></param>
/// <param name="app"></param>
/// <returns></returns>
private async Task SendKms(string questions, string msg, Apps app)
{
//知识库问答
var filters = new List<MemoryFilter>();
var kmsidList = app.KmsIdList.Split(",");
foreach (var kmsid in kmsidList)
{
filters.Add(new MemoryFilter().ByTag("kmsid", kmsid));
}
var kmsResult = await _memory.AskAsync(msg, index: "kms", filters: filters);
if (kmsResult != null)
{
if (!string.IsNullOrEmpty(kmsResult.Result))
{
string answers = kmsResult.Result;
var markdown = new Markdown();
string htmlAnswers = markdown.Transform(answers);
var info1 = new MessageInfo()
{
ID = Guid.NewGuid().ToString(),
Questions = questions,
Answers = answers,
HtmlAnswers = htmlAnswers,
CreateTime = DateTime.Now,
};
MessageList.Add(info1);
}
foreach (var x in kmsResult.RelevantSources)
{
foreach (var xsd in x.Partitions)
{
var markdown = new Markdown();
string sourceName = x.SourceName;
var fileDetail = _kmsDetails_Repositories.GetFirst(p => p.FileGuidName == x.SourceName);
if (fileDetail.IsNotNull())
{
sourceName = fileDetail.FileName;
}
RelevantSources.Add(new RelevantSource() { SourceName = sourceName, Text = markdown.Transform(xsd.Text), Relevance = xsd.Relevance });
}
}
}
}
/// <summary>
/// 发送普通对话
/// </summary>
/// <param name="questions"></param>
/// <param name="msg"></param>
/// <param name="app"></param>
/// <returns></returns>
private async Task SendChat(string questions, string msg, Apps app)
{
if (string.IsNullOrEmpty(app.Prompt))
{
//如果模板为空,给默认提示词
app.Prompt = "{{$input}}";
}
var promptTemplateFactory = new KernelPromptTemplateFactory();
var promptTemplate = promptTemplateFactory.Create(new PromptTemplateConfig(app.Prompt));
var renderedPrompt = await promptTemplate.RenderAsync(_kernel);
var func = _kernel.CreateFunctionFromPrompt(app.Prompt, new OpenAIPromptExecutionSettings());
var chatResult = _kernel.InvokeStreamingAsync<StreamingChatMessageContent>(function: func, arguments: new KernelArguments() { ["input"] = msg });
MessageInfo info = null;
var markdown = new Markdown();
await foreach (var content in chatResult)
{
if (info == null)
{
info = new MessageInfo();
info.ID = Guid.NewGuid().ToString();
info.Questions = questions;
info.Answers = content.Content!;
info.HtmlAnswers = content.Content!;
info.CreateTime = DateTime.Now;
MessageList.Add(info);
}
else
{
info.HtmlAnswers += content.Content;
await Task.Delay(50);
}
await InvokeAsync(StateHasChanged);
}
//全部处理完后再处理一次Markdown
info!.HtmlAnswers = markdown.Transform(info.HtmlAnswers);
await InvokeAsync(StateHasChanged);
}
/// <summary>
/// 历史会话的会话总结
/// </summary>
/// <param name="questions"></param>
/// <returns></returns>
private async Task<string> HistorySummarize(string questions)
{
StringBuilder history = new StringBuilder();
foreach (var item in MessageList)
{
history.Append($"user:{item.Questions}{Environment.NewLine}");
history.Append($"assistant:{item.Answers}{Environment.NewLine}");
}
KernelFunction sunFun = _kernel.Plugins.GetFunction("ConversationSummaryPlugin", "SummarizeConversation");
var summary = await _kernel.InvokeAsync(sunFun, new() { ["input"] = $"内容是:{history.ToString()} {Environment.NewLine} 请注意用中文总结" });
string his = summary.GetValue<string>();
var msg = $"历史对话:{his}{Environment.NewLine} 用户问题:{Environment.NewLine}{questions}"; ;
return msg;
}
}
public class RelevantSource

View File

@@ -0,0 +1,45 @@
@namespace AntSK.Pages.ChatPage
@using AntSK.Domain.Repositories
@using AntSK.Models
@using Microsoft.AspNetCore.Components.Web.Virtualization
@page "/OpenChat/{AppId}"
@layout OpenLayout
<div id="chat" style="display:flex; flex-direction:column; height:100%; overflow-x:hidden;">
<PageHeader Class="site-page-header" Title="@app.Name" Subtitle="@app.Describe" />
<div id="scrollDiv" style="flex:1; width:100%; overflow-y:auto; overflow-x:hidden;padding:10px;">
<Virtualize Items="@(MessageList.OrderByDescending(o => o.CreateTime).ToList())" Context="item">
<GridCol Span="24">
<Card>
<TitleTemplate>
<Text Strong><Icon Type="bulb" />@(item.Questions)</Text>
</TitleTemplate>
<Extra>
<Space>
<SpaceItem>
<a style="color: gray;" @onclick="@(() => OnCopyAsync(item))"><Icon Type="copy" /></a>
</SpaceItem>
<SpaceItem>
<a style="color: gray;" @onclick="@(() => OnClearAsync(item.ID))"><Icon Type="rest" /></a>
</SpaceItem>
</Space>
</Extra>
<Body>
@((MarkupString)(item.HtmlAnswers))
</Body>
</Card>
</GridCol>
</Virtualize>
</div>
<div style="flex-shrink:0;margin:10px;">
<AntDesign.Input @bind-Value="@(_messageInput)" DebounceMilliseconds="@(-1)" Placeholder="输入消息回车发送" OnPressEnter="@(async () => await OnSendAsync())" Disabled="@Sendding">
<Suffix>
<Button Icon="send" Type="@(ButtonType.Link)" OnClick="@(async () => await OnSendAsync())" Disabled="@Sendding"></Button>
</Suffix>
</AntDesign.Input>
</div>
</div>
@code {
}

View File

@@ -0,0 +1,213 @@
using AntDesign;
using AntSK.Domain.Model;
using AntSK.Domain.Repositories;
using AntSK.Domain.Utils;
using Azure.AI.OpenAI;
using Azure.Core;
using DocumentFormat.OpenXml.EMMA;
using MarkdownSharp;
using Microsoft.AspNetCore.Components;
using Microsoft.KernelMemory;
using Microsoft.OpenApi.Models;
using Microsoft.SemanticKernel;
using Microsoft.SemanticKernel.ChatCompletion;
using Microsoft.SemanticKernel.Connectors.OpenAI;
using Newtonsoft.Json;
using SqlSugar;
using System;
using System.Text;
namespace AntSK.Pages.ChatPage
{
public partial class OpenChat
{
[Parameter]
public string AppId { get; set; }
[Inject]
protected MessageService? Message { get; set; }
[Inject]
protected IApps_Repositories _apps_Repositories { get; set; }
[Inject]
protected IKmss_Repositories _kmss_Repositories { get; set; }
[Inject]
protected IKmsDetails_Repositories _kmsDetails_Repositories { get; set; }
[Inject]
protected MemoryServerless _memory { get; set; }
[Inject]
protected Kernel _kernel { get; set; }
protected bool _loading = false;
protected List<MessageInfo> MessageList = [];
protected string? _messageInput;
protected string _json = "";
protected bool Sendding = false;
protected Apps app = new Apps();
protected override async Task OnInitializedAsync()
{
await base.OnInitializedAsync();
app = _apps_Repositories.GetFirst(p=>p.Id==AppId);
}
protected async Task OnSendAsync()
{
if (string.IsNullOrWhiteSpace(_messageInput))
{
_ = Message.Info("请输入消息", 2);
return;
}
Sendding = true;
await SendAsync(_messageInput);
_messageInput = "";
Sendding = false;
}
protected async Task OnCopyAsync(MessageInfo item)
{
await Task.Run(() =>
{
_messageInput = item.Questions;
});
}
protected async Task OnClearAsync(string id)
{
await Task.Run(() =>
{
MessageList = MessageList.Where(w => w.ID != id).ToList();
});
}
protected async Task<bool> SendAsync(string questions)
{
string msg = questions;
//处理多轮会话
if (MessageList.Count > 0)
{
msg = await HistorySummarize(questions);
}
Apps app=_apps_Repositories.GetFirst(p => p.Id == AppId);
switch (app.Type)
{
case "chat":
//普通会话
await SendChat(questions, msg, app);
break;
case "kms":
//知识库问答
await SendKms(questions, msg, app);
break;
}
return await Task.FromResult(true);
}
/// <summary>
/// 发送知识库问答
/// </summary>
/// <param name="questions"></param>
/// <param name="msg"></param>
/// <param name="app"></param>
/// <returns></returns>
private async Task SendKms(string questions, string msg, Apps app)
{
//知识库问答
var filters = new List<MemoryFilter>();
var kmsidList = app.KmsIdList.Split(",");
foreach (var kmsid in kmsidList)
{
filters.Add(new MemoryFilter().ByTag("kmsid", kmsid));
}
var kmsResult = await _memory.AskAsync(msg, index: "kms", filters: filters);
if (kmsResult != null)
{
if (!string.IsNullOrEmpty(kmsResult.Result))
{
string answers = kmsResult.Result;
var markdown = new Markdown();
string htmlAnswers = markdown.Transform(answers);
var info1 = new MessageInfo()
{
ID = Guid.NewGuid().ToString(),
Questions = questions,
Answers = answers,
HtmlAnswers = htmlAnswers,
CreateTime = DateTime.Now,
};
MessageList.Add(info1);
}
}
}
/// <summary>
/// 发送普通对话
/// </summary>
/// <param name="questions"></param>
/// <param name="msg"></param>
/// <param name="app"></param>
/// <returns></returns>
private async Task SendChat(string questions, string msg, Apps app)
{
if (string.IsNullOrEmpty(app.Prompt))
{
//如果模板为空,给默认提示词
app.Prompt = "{{$input}}";
}
var promptTemplateFactory = new KernelPromptTemplateFactory();
var promptTemplate = promptTemplateFactory.Create(new PromptTemplateConfig(app.Prompt));
var renderedPrompt = await promptTemplate.RenderAsync(_kernel);
var func = _kernel.CreateFunctionFromPrompt(app.Prompt, new OpenAIPromptExecutionSettings());
var chatResult = _kernel.InvokeStreamingAsync<StreamingChatMessageContent>(function: func, arguments: new KernelArguments() { ["input"] = msg });
MessageInfo info = null;
var markdown = new Markdown();
await foreach (var content in chatResult)
{
if (info == null)
{
info = new MessageInfo();
info.ID = Guid.NewGuid().ToString();
info.Questions = questions;
info.Answers = content.Content!;
info.HtmlAnswers = content.Content!;
info.CreateTime = DateTime.Now;
MessageList.Add(info);
}
else
{
info.HtmlAnswers += content.Content;
await Task.Delay(50);
}
await InvokeAsync(StateHasChanged);
}
//全部处理完后再处理一次Markdown
info!.HtmlAnswers = markdown.Transform(info.HtmlAnswers);
await InvokeAsync(StateHasChanged);
}
/// <summary>
/// 历史会话的会话总结
/// </summary>
/// <param name="questions"></param>
/// <returns></returns>
private async Task<string> HistorySummarize(string questions)
{
StringBuilder history = new StringBuilder();
foreach (var item in MessageList)
{
history.Append($"user:{item.Questions}{Environment.NewLine}");
history.Append($"assistant:{item.Answers}{Environment.NewLine}");
}
KernelFunction sunFun = _kernel.Plugins.GetFunction("ConversationSummaryPlugin", "SummarizeConversation");
var summary = await _kernel.InvokeAsync(sunFun, new() { ["input"] = $"内容是:{history.ToString()} {Environment.NewLine} 请注意用中文总结" });
string his = summary.GetValue<string>();
var msg = $"历史对话:{his}{Environment.NewLine} 用户问题:{Environment.NewLine}{questions}"; ;
return msg;
}
}
}

View File

@@ -0,0 +1,3 @@
.ant-card-body {
height: 90% !important;
}

29
AntSK/Pages/Index.razor Normal file
View File

@@ -0,0 +1,29 @@
@namespace AntSK.Pages
@using MarkdownSharp
@page "/"
@using AntSK.Services.Auth
@inherits AuthComponentBase
<Body>
@((MarkupString)(body))
</Body>
@code {
private string body = new Markdown().Transform(@"非常感谢您对**AntSK**的喜爱,您的支持对我来说是莫大的鼓励。
如果您对技术类视频感兴趣欢迎关注我的B站账号获取更多精彩内容。
- **Bilibili账号**[点击这里](https://space.bilibili.com/1673184683/channel/series)
同时如果您感兴趣可以访问我的GitHub页面查看更多开源项目和代码
- **GitHub页面**[点击这里](https://github.com/xuzeyu91)
另外,如果您想加入由我创建的**.Net/AI应用开发微信交流群**,欢迎先添加我的微信**xuzeyu91**。
发送“进群请求”,我将会把您邀请进群。
期待与您在线上交流技术,共同进步!");
}

View File

@@ -3,6 +3,8 @@
@using AntSK.Models
@page "/Kms/Add"
@inject IMessageService _message
@using AntSK.Services.Auth
@inherits AuthComponentBase
<PageContainer Title="新增知识库">
<ChildContent>

View File

@@ -3,6 +3,8 @@
@using System.ComponentModel.DataAnnotations
@page "/Kms/Detail/{KmsID}"
@inject NavigationManager NavigationManager
@using AntSK.Services.Auth
@inherits AuthComponentBase
<div>
<PageContainer Title="知识库文档">

View File

@@ -3,6 +3,8 @@
@using AntSK.Domain.Domain.Dto
@page "/Kms/DetailList/{KmsID}/{FileId}"
@inject NavigationManager NavigationManager
@using AntSK.Services.Auth
@inherits AuthComponentBase
<Button Type="@ButtonType.Primary" OnClick="NavigateBack">返回</Button>

View File

@@ -2,6 +2,8 @@
@using AntSK.Domain.Repositories
@page "/KmsList"
@inject NavigationManager NavigationManager
@using AntSK.Services.Auth
@inherits AuthComponentBase
<PageContainer Title="知识库列表">

View File

@@ -1,59 +1,27 @@
@namespace AntSK.Pages.User
@layout UserLayout
@using Microsoft.AspNetCore.Components.Authorization
@inject AuthenticationStateProvider AuthenticationStateProvider
@page "/user/login"
<div class="main__b__0">
<div class="login">
<Form Model="@_model" OnFinish="HandleSubmit">
<Tabs ActiveKey="@context.LoginType">
<TabPane Key="1" Tab="Account Login">
<TabPane Key="1" Tab="账号登陆">
<FormItem>
<AntDesign.Input Placeholder="Username: admin or user" Size="large" @bind-Value="@context.UserName">
<AntDesign.Input Placeholder="请输入账号" Size="large" @bind-Value="@context.UserName">
<Prefix><Icon Type="user" /></Prefix>
</AntDesign.Input>
</FormItem>
<FormItem>
<AntDesign.Input Placeholder="Password: ant.design" Size="large" @bind-Value="@context.Password" Type="password">
<AntDesign.Input Placeholder="请输入密码" Size="large" @bind-Value="@context.Password" Type="password">
<Prefix><Icon Type="lock" /></Prefix>
</AntDesign.Input>
</FormItem>
</TabPane>
<TabPane Key="2" Tab="Mobile Login">
<FormItem>
<AntDesign.Input Placeholder="Phone Number" Size="large" @bind-Value="@context.Mobile">
<Prefix><Icon Type="mobile" /></Prefix>
</AntDesign.Input>
</FormItem>
<FormItem>
<Row Gutter="8">
<AntDesign.Col Span="16">
<AntDesign.Input Placeholder="Verification code" Size="large" @bind-Value="@context.Captcha">
<Prefix><Icon Type="mail" /></Prefix>
</AntDesign.Input>
</AntDesign.Col>
<AntDesign.Col Span="8">
<Button Size="large" Block OnClick="GetCaptcha">Verify</Button>
</AntDesign.Col>
</Row>
</FormItem>
</TabPane>
</Tabs>
<div>
<Checkbox Checked="@context.AutoLogin">
Auto Login
</Checkbox>
<a style="float: right;">
Forgot Password
</a>
</div>
<Button Type="primary" HtmlType="submit" Class="submit" Size="large" Block>Log in </Button>
<div class="other">
Other Login Methods
<Icon Class="icon" Type="alipay-circle" />
<Icon Class="icon" Type="taobao-circle" />
<Icon Class="icon" Type="weibo-circle" />
<a class="register" href="/user/register">Register Account</a>
</div>
<Button Type="primary" HtmlType="submit" Class="submit" Size="large" Block>登陆</Button>
</Form>
</div>
</div>

View File

@@ -3,6 +3,9 @@ using Microsoft.AspNetCore.Components;
using System.Threading.Tasks;
using AntSK.Models;
using AntSK.Services;
using AntSK.Domain.Options;
using SqlSugar;
using AntSK.Services.Auth;
namespace AntSK.Pages.User
{
@@ -16,21 +19,18 @@ namespace AntSK.Pages.User
[Inject] public MessageService Message { get; set; }
public void HandleSubmit()
public async Task HandleSubmit()
{
if (_model.UserName == "admin" && _model.Password == "ant.design")
var loginFailed = await((AntSKAuthProvider)AuthenticationStateProvider).SignIn(_model.UserName, _model.Password);
if (loginFailed)
{
NavigationManager.NavigateTo("/");
return;
}
if (_model.UserName == "user" && _model.Password == "ant.design") NavigationManager.NavigateTo("/");
}
public async Task GetCaptcha()
{
var captcha = await AccountService.GetCaptchaAsync(_model.Mobile);
await Message.Success($"Verification code validated successfully! The verification code is: {captcha}");
}
else
{
Message.Error("账号密码错误", 2);
}
}
}
}

View File

@@ -13,10 +13,11 @@ using Microsoft.KernelMemory.ContentStorage.DevTools;
using Microsoft.KernelMemory.FileSystem.DevTools;
using Microsoft.KernelMemory;
using Microsoft.SemanticKernel;
using System.Configuration;
using Microsoft.KernelMemory.Postgres;
using AntSK.Domain.Repositories;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.SemanticKernel.Plugins.Core;
using Microsoft.AspNetCore.Components.Authorization;
using AntSK.Services.Auth;
var builder = WebApplication.CreateBuilder(args);
// Add services to the container.
@@ -32,17 +33,18 @@ builder.Services.AddControllers().AddJsonOptions(config =>
builder.Services.AddRazorPages();
builder.Services.AddServerSideBlazor();
builder.Services.AddAntDesign();
builder.Services.AddAuthorizationCore();
builder.Services.AddScoped<AuthenticationStateProvider, AntSKAuthProvider>();
builder.Services.AddScoped(sp => new HttpClient
{
BaseAddress = new Uri(sp.GetService<NavigationManager>()!.BaseUri)
});
builder.Services.Configure<ProSettings>(builder.Configuration.GetSection("ProSettings"));
builder.Services.AddScoped<IChartService, ChartService>();
builder.Services.AddScoped<IProjectService, ProjectService>();
builder.Services.AddScoped<IUserService, UserService>();
builder.Services.AddScoped<IAccountService, AccountService>();
builder.Services.AddScoped<IProfileService, ProfileService>();
builder.Services.AddServicesFromAssemblies("AntSK");
builder.Services.AddServicesFromAssemblies("AntSK.Domain");
builder.Services.AddSwaggerGen(c =>
{
c.SwaggerDoc("v1", new() { Title = "AntSK.Api", Version = "v1" });
@@ -72,6 +74,7 @@ builder.Services.AddSwaggerGen(c =>
{
builder.Configuration.GetSection("ConnectionStrings").Get<ConnectionOption>();
builder.Configuration.GetSection("OpenAIOption").Get<OpenAIOption>();
builder.Configuration.GetSection("Login").Get<LoginOption>();
}
InitSK(builder);
var app = builder.Build();
@@ -131,6 +134,7 @@ void InitSK(WebApplicationBuilder builder)
apiKey: OpenAIOption.Key,
httpClient: new HttpClient(handler))
.Build();
RegisterPluginsWithKernel(kernel);
return kernel;
});
//Kernel Memory
@@ -165,4 +169,9 @@ void InitSK(WebApplicationBuilder builder)
return memory;
});
}
void RegisterPluginsWithKernel(Kernel kernel)
{
kernel.ImportPluginFromObject(new ConversationSummaryPlugin(), "ConversationSummaryPlugin");
kernel.ImportPluginFromObject(new TimePlugin(), "TimePlugin");
}

View File

@@ -0,0 +1,33 @@
using AntSK.Domain.Options;
using Microsoft.AspNetCore.Components.Authorization;
using System.Security.Claims;
namespace AntSK.Services.Auth
{
public class AntSKAuthProvider : AuthenticationStateProvider
{
private ClaimsIdentity identity = new ClaimsIdentity();
public async Task<bool> SignIn(string username, string password)
{
if (username == LoginOption.User && password == LoginOption.Password)
{
// 用户认证成功创建用户的ClaimsIdentity
var claims = new[] { new Claim(ClaimTypes.Name, username) };
identity = new ClaimsIdentity(claims, "AntSK");
NotifyAuthenticationStateChanged(GetAuthenticationStateAsync());
return true;
}
else
{
// 用户认证失败
return false;
}
}
public override Task<AuthenticationState> GetAuthenticationStateAsync()
{
var user = new ClaimsPrincipal(identity);
return Task.FromResult(new AuthenticationState(user));
}
}
}

View File

@@ -0,0 +1,31 @@
using Microsoft.AspNetCore.Components;
using Microsoft.AspNetCore.Components.Authorization;
using System.Security.Claims;
namespace AntSK.Services.Auth
{
public class AuthComponentBase : ComponentBase
{
[Inject]
public AuthenticationStateProvider AuthenticationStateProvider { get; set; }
[Inject]
public NavigationManager NavigationManager { get; set; }
public ClaimsPrincipal User { get; set; }
protected override async Task OnInitializedAsync()
{
await GetAuthenticationStateAsync();
}
private async Task GetAuthenticationStateAsync()
{
var authenticationState = await AuthenticationStateProvider.GetAuthenticationStateAsync();
User = authenticationState.User;
if (!User.Identity.IsAuthenticated)
{
NavigationManager.NavigateTo("/user/login");
}
}
}
}

View File

@@ -0,0 +1,145 @@
using AntSK.Domain.Common.DependencyInjection;
using AntSK.Domain.Model;
using AntSK.Domain.Repositories;
using AntSK.Domain.Utils;
using AntSK.Models;
using AntSK.Models.OpenAPI;
using AntSK.Pages.ChatPage;
using MarkdownSharp;
using Microsoft.KernelMemory;
using Microsoft.SemanticKernel.Connectors.OpenAI;
using Microsoft.SemanticKernel;
using System.Text;
using System;
using ServiceLifetime = AntSK.Domain.Common.DependencyInjection.ServiceLifetime;
using AntDesign.Core.Extensions;
using Azure.AI.OpenAI;
namespace AntSK.Services.OpenApi
{
public interface IOpenApiService
{
Task<OpenAIResult> Chat(OpenAIModel model, string sk);
}
[ServiceDescription(typeof(IOpenApiService), ServiceLifetime.Scoped)]
public class OpenApiService(
IApps_Repositories _apps_Repositories,
IKmss_Repositories _kmss_Repositories,
IKmsDetails_Repositories _kmsDetails_Repositories,
Kernel _kernel,
MemoryServerless _memory
) : IOpenApiService
{
public async Task<OpenAIResult> Chat(OpenAIModel model,string sk)
{
OpenAIResult result = new OpenAIResult();
result.created= DateTimeOffset.UtcNow.ToUnixTimeSeconds();
result.choices=new List<ChoicesModel>() { new ChoicesModel() { message=new OpenAIMessage() { role= "assistant" } } };
Apps app = _apps_Repositories.GetFirst(p => p.SecretKey == sk);
if (app.IsNotNull())
{
string msg= await HistorySummarize(model);
switch (app.Type)
{
case "chat":
//普通会话
result.choices[0].message.content= await SendChat( msg, app);
break;
case "kms":
//知识库问答
result.choices[0].message.content = await SendKms( msg, app);
break;
}
}
return result;
}
/// <summary>
/// 发送知识库问答
/// </summary>
/// <param name="questions"></param>
/// <param name="msg"></param>
/// <param name="app"></param>
/// <returns></returns>
private async Task<string> SendKms( string msg, Apps app)
{
string result = "";
//知识库问答
var filters = new List<MemoryFilter>();
var kmsidList = app.KmsIdList.Split(",");
foreach (var kmsid in kmsidList)
{
filters.Add(new MemoryFilter().ByTag("kmsid", kmsid));
}
var kmsResult = await _memory.AskAsync(msg, index: "kms", filters: filters);
if (kmsResult != null)
{
if (!string.IsNullOrEmpty(kmsResult.Result))
{
string answers = kmsResult.Result;
result = answers;
}
}
return result;
}
/// <summary>
/// 发送普通对话
/// </summary>
/// <param name="questions"></param>
/// <param name="msg"></param>
/// <param name="app"></param>
/// <returns></returns>
private async Task<string> SendChat( string msg, Apps app)
{
string result = "";
if (string.IsNullOrEmpty(app.Prompt))
{
//如果模板为空,给默认提示词
app.Prompt = "{{$input}}";
}
var promptTemplateFactory = new KernelPromptTemplateFactory();
var promptTemplate = promptTemplateFactory.Create(new PromptTemplateConfig(app.Prompt));
var renderedPrompt = await promptTemplate.RenderAsync(_kernel);
var func = _kernel.CreateFunctionFromPrompt(app.Prompt, new OpenAIPromptExecutionSettings());
var chatResult = await _kernel.InvokeAsync(function: func, arguments: new KernelArguments() { ["input"] = msg });
if (chatResult.IsNotNull())
{
string answers = chatResult.GetValue<string>();
result = answers;
}
return result;
}
/// <summary>
/// 历史会话的会话总结
/// </summary>
/// <param name="questions"></param>
/// <param name="msg"></param>
/// <returns></returns>
private async Task<string> HistorySummarize(OpenAIModel model)
{
StringBuilder history = new StringBuilder();
string questions = model.messages[model.messages.Count-1].content;
for(int i=0;i<model.messages.Count()-1;i++)
{
var item = model.messages[i];
history.Append($"{item.role}:{item.content}{Environment.NewLine}");
}
KernelFunction sunFun = _kernel.Plugins.GetFunction("ConversationSummaryPlugin", "SummarizeConversation");
var summary = await _kernel.InvokeAsync(sunFun, new() { ["input"] = $"内容是:{history.ToString()} {Environment.NewLine} 请注意用中文总结" });
string his = summary.GetValue<string>();
var msg = $"历史对话:{his}{Environment.NewLine}用户问题:{Environment.NewLine}{questions}"; ;
return msg;
}
}
}

View File

@@ -1,6 +1,9 @@
using System;
using System.Threading.Tasks;
using AntSK.Domain.Common.DependencyInjection;
using AntSK.Domain.Repositories;
using AntSK.Models;
using ServiceLifetime = AntSK.Domain.Common.DependencyInjection.ServiceLifetime;
namespace AntSK.Services
{
@@ -10,6 +13,7 @@ namespace AntSK.Services
Task<string> GetCaptchaAsync(string modile);
}
[ServiceDescription(typeof(IAccountService), ServiceLifetime.Scoped)]
public class AccountService : IAccountService
{
private readonly Random _random = new Random();

View File

@@ -1,7 +1,9 @@
using System.Net.Http;
using System.Net.Http.Json;
using System.Threading.Tasks;
using AntSK.Domain.Common.DependencyInjection;
using AntSK.Models;
using ServiceLifetime = AntSK.Domain.Common.DependencyInjection.ServiceLifetime;
namespace AntSK.Services
{
@@ -12,7 +14,7 @@ namespace AntSK.Services
Task<ChartDataItem[]> GetSalesDataAsync();
Task<RadarDataItem[]> GetRadarDataAsync();
}
[ServiceDescription(typeof(IChartService), ServiceLifetime.Scoped)]
public class ChartService : IChartService
{
private readonly HttpClient _httpClient;

View File

@@ -1,7 +1,9 @@
using System.Net.Http;
using System.Net.Http.Json;
using System.Threading.Tasks;
using AntSK.Domain.Common.DependencyInjection;
using AntSK.Models;
using ServiceLifetime = AntSK.Domain.Common.DependencyInjection.ServiceLifetime;
namespace AntSK.Services
{
@@ -10,7 +12,7 @@ namespace AntSK.Services
Task<BasicProfileDataType> GetBasicAsync();
Task<AdvancedProfileData> GetAdvancedAsync();
}
[ServiceDescription(typeof(IProfileService), ServiceLifetime.Scoped)]
public class ProfileService : IProfileService
{
private readonly HttpClient _httpClient;

View File

@@ -2,7 +2,9 @@ using System.Linq;
using System.Net.Http;
using System.Net.Http.Json;
using System.Threading.Tasks;
using AntSK.Domain.Common.DependencyInjection;
using AntSK.Models;
using ServiceLifetime = AntSK.Domain.Common.DependencyInjection.ServiceLifetime;
namespace AntSK.Services
{
@@ -13,7 +15,7 @@ namespace AntSK.Services
Task<ListItemDataType[]> GetFakeListAsync(int count = 0);
Task<NoticeItem[]> GetNoticesAsync();
}
[ServiceDescription(typeof(IProjectService), ServiceLifetime.Scoped)]
public class ProjectService : IProjectService
{
private readonly HttpClient _httpClient;

View File

@@ -1,7 +1,9 @@
using System.Net.Http;
using System.Net.Http.Json;
using System.Threading.Tasks;
using AntSK.Domain.Common.DependencyInjection;
using AntSK.Models;
using ServiceLifetime = AntSK.Domain.Common.DependencyInjection.ServiceLifetime;
namespace AntSK.Services
{
@@ -9,7 +11,7 @@ namespace AntSK.Services
{
Task<CurrentUser> GetCurrentUserAsync();
}
[ServiceDescription(typeof(IUserService), ServiceLifetime.Scoped)]
public class UserService : IUserService
{
private readonly HttpClient _httpClient;

View File

@@ -35,5 +35,9 @@
"Postgres": {
"ConnectionString": "Host=;Port=;Database=antsk;Username=;Password=",
"TableNamePrefix": "km-"
},
"Login": {
"User": "admin",
"Password": "xuzeyu"
}
}

BIN
AntSK/wwwroot/assets/ai.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 KiB

175
AntSK/wwwroot/js/iframe.js Normal file
View File

@@ -0,0 +1,175 @@
async function embedChatbot() {
const chatBtnId = 'aiagent-chatbot-button'
const chatWindowId = 'aiagent-chatbot-window'
const script = document.getElementById('antsk-iframe')
const botSrc = script?.getAttribute('data-src')
const width = script?.getAttribute('data-width') || '30rem'
const height = script?.getAttribute('data-height') || '50rem'
const primaryColor = script?.getAttribute('data-color') || '#4e83fd'
const defaultOpen = script?.getAttribute('data-default-open') === 'true'
const MessageIconUrl = script?.getAttribute('data-message-icon-url')
if (!botSrc) {
console.error(`Can't find chaturl`)
return
}
if (document.getElementById(chatBtnId)) {
return
}
const MessageIcon = `<?xml version="1.0" encoding="UTF-8"?>
<svg width="48px" height="50px" viewBox="0 0 48 50" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="页面-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="编组-6" transform="translate(0.000000, 1.000000)">
<rect id="矩形" fill="#FFFFFF" opacity="0" x="0" y="0" width="48" height="49.7454545"></rect>
<g id="zhinengxuexi-5" transform="translate(0.000000, 1.000000)" fill-rule="nonzero">
<path d="M39.4407295,31.1732523 L39.4407295,17.3860182 C39.4407295,16.1702128 38.7355623,15.0273556 37.6899696,14.3221884 L25.7264438,7.44072948 C24.6808511,6.83282675 23.2948328,6.83282675 22.224924,7.44072948 L10.3100304,14.3465046 C9.26443769,14.9544073 8.55927052,16.0972644 8.55927052,17.4103343 L8.55927052,31.2705167 C8.55927052,32.4863222 9.26443769,33.6291793 10.3100304,34.3343465 L22.2735562,41.1428571 C23.3191489,41.7507599 24.7051672,41.7507599 25.775076,41.1428571 L37.7386018,34.2613982 C38.8328267,33.6291793 39.4407295,32.4863222 39.4407295,31.1732523 Z" id="路径" fill="#D5ECFF"></path>
<path d="M28.7416413,31.7082067 L24.7051672,31.7082067 L23.3920973,27.768997 L17.118541,27.768997 L15.8054711,31.7082067 L11.768997,31.7082067 L18.0425532,14.443769 L22.3465046,14.443769 L28.7416413,31.7082067 L28.7416413,31.7082067 Z M22.662614,24.8510638 L20.6930091,18.8449848 C20.5957447,18.4802432 20.4984802,17.993921 20.4012158,17.337386 L20.3039514,17.337386 C20.3039514,17.7993921 20.1094225,18.3586626 20.0121581,18.8449848 L18.0425532,24.8510638 L22.662614,24.8510638 L22.662614,24.8510638 Z M34.6504559,14.3465046 L34.6504559,31.6109422 L31.0030395,31.6109422 L31.0030395,14.3465046 L34.6504559,14.3465046 Z" id="形状" fill="#027FE6"></path>
<path d="M44.5957447,29.0820669 C43.8905775,29.0820669 43.2826748,29.6899696 43.2826748,30.3951368 L43.2826748,34.0668693 C43.2826748,34.8449848 42.8449848,35.550152 42.1398176,35.9878419 L25.3130699,45.6656535 C24.6079027,46.1033435 23.7325228,46.1033435 23.0516717,45.6656535 L6.22492401,35.9878419 C5.51975684,35.6474164 5.08206687,34.8449848 5.08206687,34.0668693 L5.08206687,29.2036474 C6.32218845,28.6443769 7.17325228,27.4042553 7.17325228,25.9452888 C7.17325228,23.9756839 5.56838906,22.3708207 3.59878419,22.3708207 C1.62917933,22.3708207 0,23.9756839 0,25.9452888 C0,27.5258359 1.0212766,28.8632219 2.43161094,29.325228 L2.43161094,34.0425532 C2.43161094,35.7933131 3.37993921,37.3495441 4.86322188,38.224924 L21.6899696,48 C22.4680851,48.43769 23.2705167,48.6079027 24.1215805,48.6079027 C24.899696,48.6079027 25.775076,48.3404255 26.5531915,47.9027356 L43.3069909,38.224924 C44.7902736,37.3495441 45.7386018,35.7933131 45.7386018,34.0425532 L45.7386018,30.3708207 C45.8115502,29.6170213 45.2765957,29.0820669 44.5957447,29.0820669 Z M45.9088146,18.7720365 L45.9088146,14.5167173 C45.9088146,12.7659574 44.9604863,11.2097264 43.4772036,10.3343465 L26.6261398,0.656534954 C25.1428571,-0.218844985 23.2218845,-0.218844985 21.7386018,0.656534954 L4.88753799,10.3343465 C3.40425532,11.2097264 2.45592705,12.7659574 2.45592705,14.5167173 L2.45592705,17.8237082 C2.45592705,18.5288754 3.06382979,19.1367781 3.76899696,19.1367781 C4.47416413,19.1367781 5.08206687,18.5288754 5.08206687,17.8237082 L5.08206687,14.5167173 C5.08206687,13.7386018 5.51975684,13.0334347 6.22492401,12.5957447 L23.0516717,2.91793313 C23.7568389,2.48024316 24.6322188,2.48024316 25.3130699,2.91793313 L42.0668693,12.6930091 C42.7720365,13.0334347 43.2097264,13.8358663 43.2097264,14.6139818 L43.2097264,18.674772 C41.8480243,19.1854103 40.8510638,20.4741641 40.8510638,22.0303951 C40.8510638,24 42.4559271,25.6048632 44.4255319,25.6048632 C46.3951368,25.6048632 48,24 48,22.0303951 C48,20.5714286 47.1246201,19.331307 45.9088146,18.7720365 Z" id="形状" fill="#027FE6"></path>
</g>
</g>
</g>
</svg>`
const CloseIcon = `<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1690535441526" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="6367" xmlns:xlink="http://www.w3.org/1999/xlink"><path d="M512 1024A512 512 0 1 1 512 0a512 512 0 0 1 0 1024zM305.956571 370.395429L447.488 512 305.956571 653.604571a45.568 45.568 0 1 0 64.438858 64.438858L512 576.512l141.604571 141.531429a45.568 45.568 0 0 0 64.438858-64.438858L576.512 512l141.531429-141.604571a45.568 45.568 0 1 0-64.438858-64.438858L512 447.488 370.395429 305.956571a45.568 45.568 0 0 0-64.438858 64.438858z" fill=${primaryColor} p-id="6368"></path></svg>`
const MessageIconImg = document.createElement('img')
MessageIconImg.src = MessageIconUrl
MessageIconImg.style.cssText = 'width: 100%; height: 100%;'
const ChatBtn = document.createElement('div')
ChatBtn.id = chatBtnId
ChatBtn.style.cssText = 'position: fixed; bottom: 1rem; right: 1rem; width: 40px; height: 40px; cursor: pointer; z-index: 2147483647; transition: 0;'
const ChatBtnDiv = document.createElement('div')
if (MessageIconUrl) {
ChatBtnDiv.appendChild(MessageIconImg)
} else {
ChatBtnDiv.innerHTML = MessageIcon
}
/**
* 添加样式
*/
// 创建一个style元素
const style = document.createElement('style')
style.type = 'text/css'
// 添加CSS规则到style元素
const rules = document.createTextNode('.resizing-iframe iframe { pointer-events: none; }' + '.resizing-iframe { user-select: none; }')
// 将规则附加到style元素
style.appendChild(rules)
// 将style元素添加到document的head中使其生效
document.head.appendChild(style)
const parentDiv = document.createElement('div')
parentDiv.style.cssText = `border: none; position: fixed; flex-direction: column; justify-content: space-between; box-shadow: rgba(150, 150, 150, 0.2) 0px 10px 30px 0px, rgba(150, 150, 150, 0.2) 0px 0px 0px 1px; bottom: 4rem; right: 1rem; min-width:${width}; min-height: ${height};width:${width}; height: ${height}; max-width: 90vw; max-height: 85vh; border-radius: 0.75rem; display: flex; z-index: 2147483647; overflow: hidden; left: unset; background-color: #F3F4F6;`
parentDiv.id = chatWindowId
parentDiv.style.visibility = defaultOpen ? 'unset' : 'hidden'
const iframe = document.createElement('iframe')
iframe.allow = 'fullscreen;microphone'
iframe.title = 'AIAgent Chat Window'
iframe.target = '_self'
// iframe.id = chatWindowId
iframe.src = botSrc
iframe.style.cssText = `width: 100%; height: 100%; border: none;`
parentDiv.appendChild(iframe)
document.body.appendChild(parentDiv)
let resizing = false
let startX, startWidth
const resizer = document.createElement('div')
resizer.className = 'resizer'
iframe.parentElement.appendChild(resizer) // 假设iframe和resizer有相同的父元素
// 为resizer添加样式
resizer.style.width = '2px'
resizer.style.height = '100%'
resizer.style.background = '#f8f9fd'
resizer.style.position = 'absolute'
resizer.style.left = '0'
resizer.style.bottom = '0'
resizer.style.cursor = 'e-resize'
// 监听鼠标按下事件
resizer.addEventListener('mousedown', (e) => {
e.preventDefault()
document.body.classList.add('resizing-iframe')
startX = e.clientX
// startY = e.clientY
startWidth = parseInt(document.defaultView.getComputedStyle(parentDiv).width, 10)
// startHeight = parseInt(document.defaultView.getComputedStyle(parentDiv).height, 10)
resizing = true
})
// 监听鼠标移动事件
document.addEventListener('mousemove', (e) => {
if (!resizing) return
requestAnimationFrame(() => {
let newWidth = startWidth + (startX - e.clientX)
// let newHeight = startHeight + (e.clientY - startY)
parentDiv.style.width = newWidth + 'px'
// parentDiv.style.height = newHeight + 'px'
})
})
// 监听鼠标释放事件
document.addEventListener('mouseup', (e) => {
document.body.classList.remove('resizing-iframe')
resizing = false
})
let chatBtnDragged = false
let chatBtnDown = false
let chatBtnMouseX
let chatBtnMouseY
ChatBtn.addEventListener('click', function () {
if (chatBtnDragged) {
chatBtnDragged = false
return
}
const chatWindow = document.getElementById(chatWindowId)
if (!chatWindow) return
const visibilityVal = chatWindow.style.visibility
if (visibilityVal === 'hidden') {
chatWindow.style.visibility = 'unset'
ChatBtnDiv.innerHTML = CloseIcon
} else {
chatWindow.style.visibility = 'hidden'
if (MessageIconUrl) {
ChatBtnDiv.innerHTML = ''
ChatBtnDiv.appendChild(MessageIconImg)
} else {
ChatBtnDiv.innerHTML = MessageIcon
}
}
})
ChatBtn.addEventListener('mousedown', (e) => {
if (!chatBtnMouseX && !chatBtnMouseY) {
chatBtnMouseX = e.clientX
chatBtnMouseY = e.clientY
}
chatBtnDown = true
})
ChatBtn.addEventListener('mousemove', (e) => {
if (!chatBtnDown) return
chatBtnDragged = true
const transformX = e.clientX - chatBtnMouseX
const transformY = e.clientY - chatBtnMouseY
ChatBtn.style.transform = `translate3d(${transformX}px, ${transformY}px, 0)`
e.stopPropagation()
})
ChatBtn.addEventListener('mouseup', (e) => {
chatBtnDown = false
})
ChatBtn.addEventListener('mouseleave', (e) => {
chatBtnDown = false
})
ChatBtn.appendChild(ChatBtnDiv)
document.body.appendChild(ChatBtn)
}
document.body.onload = embedChatbot

View File

@@ -113,7 +113,7 @@ Let's see the effect
## How do I get started?
Login is the default login account and password
Here I use Postgres as data storage and vector storage, because both the Semantic Kernel and Kernel Memory support it. Of course, you can switch to other ones.
@@ -147,6 +147,10 @@ Postgres:{
"TableNamePrefix": "km -"
},
"Login": {
"User": "admin",
"Password": "xuzeyu"
}
```

View File

@@ -16,7 +16,7 @@
- **GPTs 生成**此平台支持创建个性化的GPT模型尝试构建您自己的GPT模型。
- **API接口发布**将内部功能以API的形式对外提供便于开发者将Xzy.AntSK.KnowledgeBase 集成进其他应用,增强应用智慧。
- **API接口发布**将内部功能以API的形式对外提供便于开发者将AntSK 集成进其他应用,增强应用智慧。
## 应用场景
@@ -61,6 +61,7 @@ AntSK 适用于多种业务场景,例如:
在这里我使用的是Postgres 作为数据存储和向量存储因为Semantic Kernel和Kernel Memory都支持他当然你也可以换成其他的。
模型默认支持openai,如果需要使用azure openai需要调整SK的依赖注入也可以使用one-api进行集成。
Login是默认的登陆账号和密码
需要配置如下的配置文件
```
"ConnectionStrings": {
@@ -75,6 +76,10 @@ AntSK 适用于多种业务场景,例如:
"Postgres": {
"ConnectionString": "Host=;Port=;Database=antsk;Username=;Password=",
"TableNamePrefix": "km-"
},
"Login": {
"User": "admin",
"Password": "xuzeyu"
}
```
我使用的是CodeFirst模式只要配置好数据库链接表结构是自动创建的