UPDATE 04-Sept

This commit is contained in:
PAVEL PALMA
2025-09-05 11:32:38 -06:00
parent 499bc002ae
commit 37c1b31b7c
9 changed files with 323 additions and 258 deletions

View File

@@ -62,4 +62,15 @@ public record ConversationEntryDTO(
null
);
}
public static ConversationEntryDTO forSystem(String text, Map<String, Object> parameters) {
return new ConversationEntryDTO(
ConversationEntryEntity.SISTEMA,
ConversationEntryType.CONVERSACION,
Instant.now(),
text,
parameters,
null
);
}
}