首页布局优化前
This commit is contained in:
@@ -82,6 +82,7 @@ export function inferPreference(feedback: string, sentiment: FeedbackSentiment):
|
||||
export class ActiveLearningEngine {
|
||||
private events: LearningEvent[] = [];
|
||||
private patterns: LearningPattern[] = [];
|
||||
// Reserved for future learning suggestions feature
|
||||
private suggestions: LearningSuggestion[] = [];
|
||||
private initialized: boolean = false;
|
||||
|
||||
@@ -89,6 +90,16 @@ export class ActiveLearningEngine {
|
||||
this.initialized = true;
|
||||
}
|
||||
|
||||
/** Get current suggestions (reserved for future use) */
|
||||
getSuggestions(): LearningSuggestion[] {
|
||||
return this.suggestions;
|
||||
}
|
||||
|
||||
/** Check if engine is initialized */
|
||||
isInitialized(): boolean {
|
||||
return this.initialized;
|
||||
}
|
||||
|
||||
/**
|
||||
* 记录学习事件
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user