@rizom/brain 0.2.0-alpha.131 → 0.2.0-alpha.133

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -209,7 +209,7 @@ interface CreateFromConversationMessageInput {
209
209
  messageId?: string | undefined;
210
210
  }
211
211
  type CreateFromInput = CreateFromAttachmentInput | CreateFromUploadInput | CreateFromConversationMessageInput;
212
- type CreateTransform = "extract-markdown";
212
+ type CreateTransform = "extract-markdown" | "preserve";
213
213
  interface CreateInput {
214
214
  entityType: string;
215
215
  prompt?: string;
@@ -219,6 +219,9 @@ interface CreateInput {
219
219
  from?: CreateFromInput;
220
220
  transform?: CreateTransform;
221
221
  replace?: boolean;
222
+ sourceEntityType?: string;
223
+ sourceEntityId?: string;
224
+ sourceEntityIds?: string[];
222
225
  targetEntityType?: string;
223
226
  targetEntityId?: string;
224
227
  coverImage?: boolean | CreateCoverImageInput;