mirror of
https://ghfast.top/https://github.com/discourse/discourse-ai.git
synced 2026-07-15 11:27:11 +08:00
In this feature update, we add the UI for the ability to easily configure persona backed AI-features. The feature will still be hidden until structured responses are complete.
10 lines
270 B
JavaScript
10 lines
270 B
JavaScript
import { service } from "@ember/service";
|
|
import DiscourseRoute from "discourse/routes/discourse";
|
|
|
|
export default class AdminPluginsShowDiscourseAiFeatures extends DiscourseRoute {
|
|
@service store;
|
|
|
|
async model() {
|
|
return this.store.findAll("ai-feature");
|
|
}
|
|
}
|