Shun Miyazawa 1 год назад
Родитель
Сommit
b52554d2d2
1 измененных файлов с 4 добавлено и 4 удалено
  1. 4 4
      apps/app/src/features/openai/server/models/ai-assistant.ts

+ 4 - 4
apps/app/src/features/openai/server/models/ai-assistant.ts

@@ -4,7 +4,7 @@ import { type Model, type Document, Schema } from 'mongoose';
 import { getOrCreateModel } from '~/server/util/mongoose-utils';
 import { getOrCreateModel } from '~/server/util/mongoose-utils';
 
 
 /*
 /*
-*  AiAssistant Objects
+*  Objects
 */
 */
 const AiAssistantType = {
 const AiAssistantType = {
   KNOWLEDGE: 'knowledge',
   KNOWLEDGE: 'knowledge',
@@ -26,7 +26,7 @@ const AiAssistantLearningScope = {
 
 
 
 
 /*
 /*
-*  AiAssistant interfaces
+*  Interfaces
 */
 */
 type AiAssistantType = typeof AiAssistantType[keyof typeof AiAssistantType];
 type AiAssistantType = typeof AiAssistantType[keyof typeof AiAssistantType];
 type AiAssistantSharingScope = typeof AiAssistantSharingScope[keyof typeof AiAssistantSharingScope];
 type AiAssistantSharingScope = typeof AiAssistantSharingScope[keyof typeof AiAssistantSharingScope];
@@ -49,8 +49,8 @@ type AiAssistantModel = Model<AiAssistantDocument>
 
 
 
 
 /*
 /*
-*  AiAssistant Schema
-*/
+ * Schema Definition
+ */
 const schema = new Schema<AiAssistantDocument>(
 const schema = new Schema<AiAssistantDocument>(
   {
   {
     name: {
     name: {