This project accepts excel files as input which contains the description of a Knowledge Graph (Vertexes and Edges) and convert it into an in-memory Graph Store. This project implements APIs to search/filter/get nodes and relations from the in-memory Knowledge Graph. This project also provides a dialog management framework and enable a chatbot based on its knowledge graph.
(base) PS D:\新奥工作\中台工作\知识图谱\如何半自动、自动生成知识图谱\temp\smartkg> dotnet .\SmartKG.KGBot.dll
info: Microsoft.AspNetCore.DataProtection.KeyManagement.XmlKeyManager[0]
User profile is available. Using 'C:\Users\maguolianga\AppData\Local\ASP.NET\DataProtection-Keys' as key repository and Windows DPAPI to encrypt keys at rest.
Knowledge Graph is parsed.
NLU materials is parsed.
Knowledge Graph is parsed.
NLU materials is parsed.
Knowledge Graph is parsed.
NLU materials is parsed.
Knowledge Graph is parsed.
NLU materials is parsed.
Knowledge Graph is parsed.
NLU materials is parsed.
Knowledge Graph is parsed.
NLU materials is parsed.
Hosting environment: Production
Content root path: D:\新奥工作\中台工作\知识图谱\如何半自动、自动生成知识图谱\temp\smartkg
Now listening on: http://localhost:5000
Application started. Press Ctrl+C to shut down.
info: Microsoft.AspNetCore.Hosting.Internal.WebHost[1]
Request starting HTTP/1.1 GET http://localhost:5000/
warn: Microsoft.AspNetCore.HttpsPolicy.HttpsRedirectionMiddleware[3]
Failed to determine the https port for redirect.
info: Microsoft.AspNetCore.Hosting.Internal.WebHost[2]
Request finished in 326.2834ms 404
info: Microsoft.AspNetCore.Hosting.Internal.WebHost[1]
Request starting HTTP/1.1 GET http://localhost:5000/
info: Microsoft.AspNetCore.Hosting.Internal.WebHost[2]
Request finished in 0.9412ms 404
info: Microsoft.AspNetCore.Hosting.Internal.WebHost[1]
Request starting HTTP/1.1 GET http://localhost:5000/
info: Microsoft.AspNetCore.Hosting.Internal.WebHost[2]
Request finished in 0.5543ms 404
When I run dotnet .\SmartKG.KGBot.dll I get a 404 error, Why does this happen? There should be no problem with configuring the environment.
(base) PS D:\新奥工作\中台工作\知识图谱\如何半自动、自动生成知识图谱\temp\smartkg> dotnet .\SmartKG.KGBot.dll info: Microsoft.AspNetCore.DataProtection.KeyManagement.XmlKeyManager[0] User profile is available. Using 'C:\Users\maguolianga\AppData\Local\ASP.NET\DataProtection-Keys' as key repository and Windows DPAPI to encrypt keys at rest. Knowledge Graph is parsed. NLU materials is parsed. Knowledge Graph is parsed. NLU materials is parsed. Knowledge Graph is parsed. NLU materials is parsed. Knowledge Graph is parsed. NLU materials is parsed. Knowledge Graph is parsed. NLU materials is parsed. Knowledge Graph is parsed. NLU materials is parsed. Hosting environment: Production Content root path: D:\新奥工作\中台工作\知识图谱\如何半自动、自动生成知识图谱\temp\smartkg Now listening on: http://localhost:5000 Application started. Press Ctrl+C to shut down. info: Microsoft.AspNetCore.Hosting.Internal.WebHost[1] Request starting HTTP/1.1 GET http://localhost:5000/ warn: Microsoft.AspNetCore.HttpsPolicy.HttpsRedirectionMiddleware[3] Failed to determine the https port for redirect. info: Microsoft.AspNetCore.Hosting.Internal.WebHost[2] Request finished in 326.2834ms 404 info: Microsoft.AspNetCore.Hosting.Internal.WebHost[1] Request starting HTTP/1.1 GET http://localhost:5000/ info: Microsoft.AspNetCore.Hosting.Internal.WebHost[2] Request finished in 0.9412ms 404 info: Microsoft.AspNetCore.Hosting.Internal.WebHost[1] Request starting HTTP/1.1 GET http://localhost:5000/ info: Microsoft.AspNetCore.Hosting.Internal.WebHost[2] Request finished in 0.5543ms 404
When I run dotnet .\SmartKG.KGBot.dll I get a 404 error, Why does this happen? There should be no problem with configuring the environment.