We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 584f629 commit 09ff45bCopy full SHA for 09ff45b
MyApp/Configure.AI.Chat.cs
@@ -27,12 +27,13 @@ public void Configure(IWebHostBuilder builder) => builder
27
// "openrouter",
28
]
29
});
30
-
+
31
// Persist AI Chat History, enables analytics at /admin-ui/chat
32
- services.AddSingleton<IChatStore,DbChatStore>();
+ services.AddSingleton<IChatStore, DbChatStore>();
33
// Or store history in monthly partitioned tables in PostgreSQL:
34
// services.AddSingleton<IChatStore, PostgresChatStore>();
35
36
+ // Add AI Chat link to /metadata
37
services.ConfigurePlugin<MetadataFeature>(feature => {
38
feature.AddPluginLink("/chat", "AI Chat");
39
0 commit comments