first commit

This commit is contained in:
NAME
2026-05-14 08:42:03 +00:00
commit 5f16ed135d
167 changed files with 29178 additions and 0 deletions
@@ -0,0 +1,15 @@
// interfaces/content-context.interface.ts
import {Platform} from "../enum/platform.enum";
import {ContentStyle} from "../enum/style.enum";
import {ContentTone} from "../enum/tone.enum";
import {Language} from "../../../common/interfaces/language.prompt.interface";
export interface ContentContext {
topic: string;
platform: Platform;
style: ContentStyle;
tone: ContentTone;
language: Language;
extraInstructions?: string;
}