mirror of
https://ghfast.top/https://github.com/discourse/discourse-ai.git
synced 2026-07-16 11:36:23 +08:00
* FEATURE: Experimental search results from an AI Persona. When a user searches discourse, we'll send the query to an AI Persona to provide additional context and enrich the results. The feature depends on the user being a member of a group to which the persona has access. * Update assets/stylesheets/common/ai-blinking-animation.scss Co-authored-by: Keegan George <kgeorge13@gmail.com> --------- Co-authored-by: Keegan George <kgeorge13@gmail.com>
18 lines
478 B
Text
18 lines
478 B
Text
import { i18n } from "discourse-i18n";
|
|
import AiBlinkingAnimation from "./ai-blinking-animation";
|
|
import AiIndicatorWave from "./ai-indicator-wave";
|
|
|
|
const AiSummarySkeleton = <template>
|
|
<div class="ai-summary__container">
|
|
<AiBlinkingAnimation />
|
|
|
|
<span>
|
|
<div class="ai-summary__generating-text">
|
|
{{i18n "summary.in_progress"}}
|
|
</div>
|
|
<AiIndicatorWave @loading={{true}} />
|
|
</span>
|
|
</div>
|
|
</template>;
|
|
|
|
export default AiSummarySkeleton;
|