├── .env.template ├── .gitignore ├── README.md ├── app ├── api │ ├── characters │ │ ├── [character] │ │ │ └── route.ts │ │ └── route.ts │ ├── chat-with-personality │ │ └── route.ts │ ├── config │ │ └── route.ts │ ├── persona-materials │ │ └── route.ts │ ├── philosophy │ │ └── route.ts │ ├── plasticity │ │ └── route.ts │ ├── process-text │ │ └── route.ts │ ├── profile-image │ │ └── route.ts │ ├── save-form-content │ │ └── route.ts │ └── save-uploaded-file │ │ └── route.ts ├── components │ ├── ConfigEditor.tsx │ ├── FileDropZone.tsx │ ├── InputFormManager.tsx │ ├── PersonaMaterialsManager.tsx │ ├── PersonalityEngine.tsx │ ├── personalityEngine.ts │ └── philosophyManager.ts ├── favicon.ico ├── globals.css ├── layout.tsx └── page.tsx ├── data ├── .gitignore └── default │ ├── philosophy.json │ ├── philosophy_backup.json │ ├── philosophy_previous.json │ └── plasticity_config.json ├── next.config.ts ├── package.json ├── persona_materials └── .gitignore ├── postcss.config.mjs ├── public ├── file.svg ├── globe.svg ├── next.svg ├── profile-images │ └── .gitkeep ├── vercel.svg └── window.svg └── tsconfig.json /.env.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sr2mg/personality_engine/HEAD/.env.template -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sr2mg/personality_engine/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sr2mg/personality_engine/HEAD/README.md -------------------------------------------------------------------------------- /app/api/characters/[character]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sr2mg/personality_engine/HEAD/app/api/characters/[character]/route.ts -------------------------------------------------------------------------------- /app/api/characters/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sr2mg/personality_engine/HEAD/app/api/characters/route.ts -------------------------------------------------------------------------------- /app/api/chat-with-personality/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sr2mg/personality_engine/HEAD/app/api/chat-with-personality/route.ts -------------------------------------------------------------------------------- /app/api/config/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sr2mg/personality_engine/HEAD/app/api/config/route.ts -------------------------------------------------------------------------------- /app/api/persona-materials/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sr2mg/personality_engine/HEAD/app/api/persona-materials/route.ts -------------------------------------------------------------------------------- /app/api/philosophy/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sr2mg/personality_engine/HEAD/app/api/philosophy/route.ts -------------------------------------------------------------------------------- /app/api/plasticity/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sr2mg/personality_engine/HEAD/app/api/plasticity/route.ts -------------------------------------------------------------------------------- /app/api/process-text/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sr2mg/personality_engine/HEAD/app/api/process-text/route.ts -------------------------------------------------------------------------------- /app/api/profile-image/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sr2mg/personality_engine/HEAD/app/api/profile-image/route.ts -------------------------------------------------------------------------------- /app/api/save-form-content/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sr2mg/personality_engine/HEAD/app/api/save-form-content/route.ts -------------------------------------------------------------------------------- /app/api/save-uploaded-file/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sr2mg/personality_engine/HEAD/app/api/save-uploaded-file/route.ts -------------------------------------------------------------------------------- /app/components/ConfigEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sr2mg/personality_engine/HEAD/app/components/ConfigEditor.tsx -------------------------------------------------------------------------------- /app/components/FileDropZone.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sr2mg/personality_engine/HEAD/app/components/FileDropZone.tsx -------------------------------------------------------------------------------- /app/components/InputFormManager.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sr2mg/personality_engine/HEAD/app/components/InputFormManager.tsx -------------------------------------------------------------------------------- /app/components/PersonaMaterialsManager.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sr2mg/personality_engine/HEAD/app/components/PersonaMaterialsManager.tsx -------------------------------------------------------------------------------- /app/components/PersonalityEngine.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sr2mg/personality_engine/HEAD/app/components/PersonalityEngine.tsx -------------------------------------------------------------------------------- /app/components/personalityEngine.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sr2mg/personality_engine/HEAD/app/components/personalityEngine.ts -------------------------------------------------------------------------------- /app/components/philosophyManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sr2mg/personality_engine/HEAD/app/components/philosophyManager.ts -------------------------------------------------------------------------------- /app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sr2mg/personality_engine/HEAD/app/favicon.ico -------------------------------------------------------------------------------- /app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sr2mg/personality_engine/HEAD/app/globals.css -------------------------------------------------------------------------------- /app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sr2mg/personality_engine/HEAD/app/layout.tsx -------------------------------------------------------------------------------- /app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sr2mg/personality_engine/HEAD/app/page.tsx -------------------------------------------------------------------------------- /data/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sr2mg/personality_engine/HEAD/data/.gitignore -------------------------------------------------------------------------------- /data/default/philosophy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sr2mg/personality_engine/HEAD/data/default/philosophy.json -------------------------------------------------------------------------------- /data/default/philosophy_backup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sr2mg/personality_engine/HEAD/data/default/philosophy_backup.json -------------------------------------------------------------------------------- /data/default/philosophy_previous.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sr2mg/personality_engine/HEAD/data/default/philosophy_previous.json -------------------------------------------------------------------------------- /data/default/plasticity_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sr2mg/personality_engine/HEAD/data/default/plasticity_config.json -------------------------------------------------------------------------------- /next.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sr2mg/personality_engine/HEAD/next.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sr2mg/personality_engine/HEAD/package.json -------------------------------------------------------------------------------- /persona_materials/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sr2mg/personality_engine/HEAD/postcss.config.mjs -------------------------------------------------------------------------------- /public/file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sr2mg/personality_engine/HEAD/public/file.svg -------------------------------------------------------------------------------- /public/globe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sr2mg/personality_engine/HEAD/public/globe.svg -------------------------------------------------------------------------------- /public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sr2mg/personality_engine/HEAD/public/next.svg -------------------------------------------------------------------------------- /public/profile-images/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sr2mg/personality_engine/HEAD/public/profile-images/.gitkeep -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sr2mg/personality_engine/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /public/window.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sr2mg/personality_engine/HEAD/public/window.svg -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sr2mg/personality_engine/HEAD/tsconfig.json --------------------------------------------------------------------------------