├── .babelrc ├── .dockerignore ├── .env.template ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── question.md ├── actions │ ├── install-node-pnpm │ │ └── action.yml │ └── restore-pnpm-cache │ │ └── action.yml ├── deploy-stg.sh ├── deploy.sh ├── inject.js ├── rev-version.js └── workflows │ ├── api.yml │ ├── deploy.yml │ ├── dev-deploy.yml │ ├── pipeline.yml │ ├── prd-deploy-api.yml │ ├── prd-deploy-stack.yml │ ├── prd-deploy.yml │ ├── publish.yml │ ├── stg-deploy-stack.yml │ └── web-deploy.yml ├── .gitignore ├── .parcelrc ├── .postcssrc ├── .prettierrc ├── .vscode ├── extensions.json ├── launch.json └── tasks.json ├── Dockerfile ├── LICENSE.md ├── README.md ├── SECURITY.md ├── api.tsconfig.json ├── common ├── adapters.ts ├── ambient.d.ts ├── characters.ts ├── chat.ts ├── debug.ts ├── default-preset.ts ├── dummy.ts ├── grammar.ts ├── guidance │ ├── grammar.ts │ ├── guidance-parser.ts │ ├── json-schema.ts │ └── v2 │ │ ├── grammar.ts │ │ └── index.ts ├── horde-gen.ts ├── image-prompt.ts ├── image-util.ts ├── image.ts ├── logger.ts ├── memory.ts ├── mode-templates.ts ├── module.d.ts ├── presets.ts ├── presets │ ├── agnaistic.ts │ ├── claude.ts │ ├── horde.ts │ ├── kobold.ts │ ├── novel.ts │ ├── ooba.ts │ ├── openai.ts │ ├── openrouter.ts │ ├── replicate.ts │ ├── scale.ts │ └── templates.ts ├── prompt-order.ts ├── prompt.ts ├── providers.ts ├── reasoning.ts ├── requests │ ├── index.ts │ ├── openai.ts │ ├── payloads.ts │ ├── stream.ts │ ├── swarmui.ts │ ├── types.ts │ └── util.ts ├── sampler-order.ts ├── scenario.ts ├── template-messages.ts ├── template-parser.ts ├── tokenize.ts ├── typed-event-emitter.ts ├── types │ ├── admin.ts │ ├── image-schema.ts │ ├── index.ts │ ├── library.ts │ ├── memory.ts │ ├── presets.ts │ ├── replicate.ts │ ├── saga.ts │ ├── schema.ts │ ├── sprite.ts │ ├── texttospeech-schema.ts │ └── ui.ts ├── util.ts ├── valid │ ├── index.ts │ ├── types.ts │ ├── util.ts │ └── validate.ts └── version.ts ├── db ├── .gitignore └── .gitkeep ├── docker-compose.yml ├── extras └── .gitkeep ├── instructions ├── memory.md └── novel.md ├── model ├── app.py ├── args.py ├── device.py ├── memory.py ├── server.py └── summary.py ├── package.json ├── pnpm-lock.yaml ├── poetry.lock ├── pyproject.toml ├── screenshots ├── chat.png ├── persona.png └── settings.png ├── self-host.docker-compose.yml ├── sprites.js ├── srv.tsconfig.json ├── srv ├── adapter │ ├── agnaistic.ts │ ├── arli.ts │ ├── chat-completion.ts │ ├── claude.ts │ ├── dispatch.ts │ ├── featherless.ts │ ├── gemini.ts │ ├── generate.ts │ ├── goose.ts │ ├── horde.ts │ ├── kobold.ts │ ├── mancer.ts │ ├── novel-bad-words.ts │ ├── novel.ts │ ├── openai.ts │ ├── openrouter.ts │ ├── payloads.ts │ ├── petals.ts │ ├── prompt.ts │ ├── register.ts │ ├── replicate.ts │ ├── scale.ts │ ├── stream.ts │ ├── template-chat-payload.ts │ ├── type.ts │ └── venus.ts ├── api │ ├── admin.ts │ ├── announcements.ts │ ├── auth.ts │ ├── billing │ │ ├── cancel.ts │ │ ├── checkout.ts │ │ ├── index.ts │ │ ├── modify.ts │ │ ├── resume.ts │ │ └── stripe.ts │ ├── character.ts │ ├── chat │ │ ├── characters.ts │ │ ├── common.ts │ │ ├── create.ts │ │ ├── edit.ts │ │ ├── get.ts │ │ ├── granular.ts │ │ ├── guest-msg.ts │ │ ├── image.ts │ │ ├── index.ts │ │ ├── inference.ts │ │ ├── invite.ts │ │ ├── lock.ts │ │ ├── message.ts │ │ ├── remove.ts │ │ └── texttospeech.ts │ ├── classify │ │ └── index.ts │ ├── horde.ts │ ├── image-api.ts │ ├── index.ts │ ├── json │ │ └── index.ts │ ├── memory │ │ └── index.ts │ ├── pipeline.ts │ ├── request.ts │ ├── scenario │ │ └── index.ts │ ├── settings.ts │ ├── subscriptions.ts │ ├── upload.ts │ ├── user │ │ ├── auth.ts │ │ ├── delete-user.ts │ │ ├── index.ts │ │ ├── patreon.ts │ │ ├── presets.ts │ │ ├── services.ts │ │ └── settings.ts │ ├── voice.ts │ ├── wrap.ts │ └── ws │ │ ├── handle.ts │ │ ├── handlers.ts │ │ ├── index.ts │ │ ├── redis.ts │ │ ├── setup.ts │ │ └── types.ts ├── app.ts ├── augment.d.ts ├── bin.ts ├── config.ts ├── db │ ├── admin.ts │ ├── announcements.ts │ ├── characters.ts │ ├── chats.ts │ ├── client.ts │ ├── image-presets.ts │ ├── index.ts │ ├── invite.ts │ ├── memory.ts │ ├── messages.ts │ ├── oauth.ts │ ├── presets.ts │ ├── scenario.ts │ ├── subscriptions.ts │ ├── user.ts │ └── util.ts ├── domains │ ├── billing │ │ ├── agg.ts │ │ ├── cmd.ts │ │ ├── manager.ts │ │ └── types.ts │ ├── domain.ts │ ├── gifts │ │ ├── agg.ts │ │ ├── cmd.ts │ │ └── types.ts │ ├── index.ts │ ├── lock.ts │ ├── patreons │ │ ├── cmd.ts │ │ ├── index.ts │ │ └── types.ts │ └── subs │ │ ├── agg.ts │ │ ├── cmd.ts │ │ └── types.ts ├── image │ ├── horde.ts │ ├── index.ts │ ├── novel.ts │ ├── stable-diffusion.ts │ └── types.ts ├── middleware.ts ├── module.d.ts ├── server.ts ├── sp-models │ ├── claude.json │ ├── cohere.json │ ├── cohere_config.json │ ├── gemma.model │ ├── gpt2_tokenizer.json │ ├── llama.model │ ├── llama3.json │ ├── llama3_config.json │ ├── mistral.model │ ├── novelai.model │ ├── novelai_v2.model │ ├── pile_tokenizer.json │ ├── qwen2.json │ └── yi.model ├── start.ts ├── tokenize.ts └── voice │ ├── agnai.ts │ ├── elevenlabs.ts │ ├── index.ts │ ├── novel.ts │ ├── types.ts │ └── webspeechsynthesis.ts ├── static └── schema │ └── scenario-schema-v1.json ├── tailwind.config.js ├── template.settings.json ├── tests ├── __snapshots__ │ ├── chat-model-sample-chat.spec.js.snap │ ├── parser.spec.js.snap │ ├── placeholder.spec.js.snap │ └── prompt.spec.js.snap ├── chat-model-sample-chat.spec.ts ├── init.ts ├── parser.spec.ts ├── placeholder.spec.ts ├── prompt.spec.ts ├── resolve-scenario.spec.ts ├── system-prompt-extraction.spec.ts ├── trim-sentence.spec.ts ├── trim.spec.ts └── util.ts ├── tsconfig.json ├── vite.config.ts └── web ├── App.tsx ├── Layout.tsx ├── Navigation.tsx ├── Toasts.tsx ├── ambient.d.ts ├── app.css ├── asset ├── DiscordDark.svg ├── DiscordLight.svg ├── NoCharacter.svg ├── WizardIcon.svg ├── agnai_bg-circle.png ├── favicon.ico ├── mixins.scss ├── sprite.ts └── sprites │ ├── images │ ├── blank.png │ ├── female-accessories-flower-base.png │ ├── female-accessories-ribbon_1-base.png │ ├── female-accessories-ribbon_2-base.png │ ├── female-accessories-ribbon_3-base.png │ ├── female-accessories-rose_1-base.png │ ├── female-accessories-rose_2-base.png │ ├── female-accessories-sweatdrop-highlights.png │ ├── female-accessories-sweatdrop-skin.png │ ├── female-back_hair-bob-base.png │ ├── female-back_hair-bob-highlights.png │ ├── female-back_hair-long_1-base.png │ ├── female-back_hair-long_1-highlights.png │ ├── female-back_hair-long_2-base.png │ ├── female-back_hair-long_2-highlights.png │ ├── female-back_hair-long_curly-base.png │ ├── female-back_hair-long_curly-highlights.png │ ├── female-back_hair-medium-base.png │ ├── female-back_hair-medium-highlights.png │ ├── female-back_hair-short_1-base.png │ ├── female-back_hair-short_1-highlights.png │ ├── female-back_hair-short_2-base.png │ ├── female-back_hair-short_2-highlights.png │ ├── female-back_hair-short_3-base.png │ ├── female-back_hair-short_3-highlights.png │ ├── female-back_hair-short_curly-base.png │ ├── female-back_hair-short_curly-highlights.png │ ├── female-back_hair-shoulder-length-base.png │ ├── female-back_hair-shoulder-length-highlights.png │ ├── female-back_hair-twin_tail-base.png │ ├── female-back_hair-twin_tail-highlights.png │ ├── female-blushes-blush_1-base.png │ ├── female-blushes-blush_2-base.png │ ├── female-body-body-highlights.png │ ├── female-body-body-skin.png │ ├── female-eye_cover_hair-side-base.png │ ├── female-eye_cover_hair-side-highlights.png │ ├── female-eye_cover_hair-side-skin.png │ ├── female-eyebrows-angry_1-skin.png │ ├── female-eyebrows-angry_2-skin.png │ ├── female-eyebrows-angry_3-skin.png │ ├── female-eyebrows-neutral_1-skin.png │ ├── female-eyebrows-neutral_2-skin.png │ ├── female-eyebrows-sad_1-skin.png │ ├── female-eyebrows-sad_2-skin.png │ ├── female-eyebrows-suprised_2-skin.png │ ├── female-eyebrows-surprised_1-skin.png │ ├── female-eyes-closed_1-skin.png │ ├── female-eyes-closed_2-skin.png │ ├── female-eyes-closed_3-base.png │ ├── female-eyes-closed_3-skin.png │ ├── female-eyes-crying_1-base.png │ ├── female-eyes-crying_1-skin.png │ ├── female-eyes-crying_1-static.png │ ├── female-eyes-neutral_1-base.png │ ├── female-eyes-neutral_1-skin.png │ ├── female-eyes-neutral_1-static.png │ ├── female-eyes-neutral_10-base.png │ ├── female-eyes-neutral_10-skin.png │ ├── female-eyes-neutral_10-static.png │ ├── female-eyes-neutral_11-base.png │ ├── female-eyes-neutral_11-skin.png │ ├── female-eyes-neutral_11-static.png │ ├── female-eyes-neutral_12-base.png │ ├── female-eyes-neutral_12-skin.png │ ├── female-eyes-neutral_12-static.png │ ├── female-eyes-neutral_2-base.png │ ├── female-eyes-neutral_2-skin.png │ ├── female-eyes-neutral_2-static.png │ ├── female-eyes-neutral_3-base.png │ ├── female-eyes-neutral_3-skin.png │ ├── female-eyes-neutral_3-static.png │ ├── female-eyes-neutral_4-base.png │ ├── female-eyes-neutral_4-skin.png │ ├── female-eyes-neutral_4-static.png │ ├── female-eyes-neutral_5-base.png │ ├── female-eyes-neutral_5-skin.png │ ├── female-eyes-neutral_5-static.png │ ├── female-eyes-neutral_6-base.png │ ├── female-eyes-neutral_6-skin.png │ ├── female-eyes-neutral_6-static.png │ ├── female-eyes-neutral_7-base.png │ ├── female-eyes-neutral_7-skin.png │ ├── female-eyes-neutral_7-static.png │ ├── female-eyes-neutral_8-base.png │ ├── female-eyes-neutral_8-skin.png │ ├── female-eyes-neutral_8-static.png │ ├── female-eyes-neutral_9-base.png │ ├── female-eyes-neutral_9-skin.png │ ├── female-eyes-neutral_9-static.png │ ├── female-eyes-surprised_1-base.png │ ├── female-eyes-surprised_1-skin.png │ ├── female-eyes-surprised_1-static.png │ ├── female-eyes-surprised_2-base.png │ ├── female-eyes-surprised_2-skin.png │ ├── female-eyes-surprised_2-static.png │ ├── female-eyes-surprised_3-base.png │ ├── female-eyes-surprised_3-skin.png │ ├── female-eyes-surprised_3-static.png │ ├── female-freckles-freckles_1-base.png │ ├── female-freckles-freckles_2-base.png │ ├── female-front_hair-bob-base.png │ ├── female-front_hair-bob-highlights.png │ ├── female-front_hair-bob-skin.png │ ├── female-front_hair-curly-base.png │ ├── female-front_hair-curly-highlights.png │ ├── female-front_hair-curly-skin.png │ ├── female-front_hair-hime_cut-base.png │ ├── female-front_hair-hime_cut-highlights.png │ ├── female-front_hair-hime_cut-skin.png │ ├── female-front_hair-hime_cut_short-base.png │ ├── female-front_hair-hime_cut_short-highlights.png │ ├── female-front_hair-hime_cut_short-skin.png │ ├── female-front_hair-long_bangs-base.png │ ├── female-front_hair-long_bangs-highlights.png │ ├── female-front_hair-long_bangs-skin.png │ ├── female-front_hair-middle_part-base.png │ ├── female-front_hair-middle_part-highlights.png │ ├── female-front_hair-middle_part-skin.png │ ├── female-front_hair-short_1-base.png │ ├── female-front_hair-short_1-highlights.png │ ├── female-front_hair-short_1-skin.png │ ├── female-front_hair-short_2-base.png │ ├── female-front_hair-short_2-highlights.png │ ├── female-front_hair-short_2-skin.png │ ├── female-front_hair-short_3-base.png │ ├── female-front_hair-short_3-highlights.png │ ├── female-front_hair-short_3-skin.png │ ├── female-front_hair-short_4-base.png │ ├── female-front_hair-short_4-highlights.png │ ├── female-front_hair-short_4-skin.png │ ├── female-front_hair-side_bangs_1-base.png │ ├── female-front_hair-side_bangs_1-highlights.png │ ├── female-front_hair-side_bangs_1-skin.png │ ├── female-front_hair-side_bangs_2-base.png │ ├── female-front_hair-side_bangs_2-highlights.png │ ├── female-front_hair-side_bangs_2-skin.png │ ├── female-front_hair-side_curl-base.png │ ├── female-front_hair-side_curl-highlights.png │ ├── female-front_hair-side_curl-skin.png │ ├── female-glasses-black_glasses-base.png │ ├── female-glasses-circle_glasses-base.png │ ├── female-glasses-red_glasses-base.png │ ├── female-headbands-band_1-base.png │ ├── female-headbands-band_2-base.png │ ├── female-headbands-band_3-base.png │ ├── female-headbands-headphones_up-base.png │ ├── female-headphones_base-headphones_base-base.png │ ├── female-mouths-annoyed_1-skin.png │ ├── female-mouths-annoyed_2-skin.png │ ├── female-mouths-closed_smile_1-skin.png │ ├── female-mouths-closed_smile_2-skin.png │ ├── female-mouths-closed_smile_3-skin.png │ ├── female-mouths-closed_smile_4-skin.png │ ├── female-mouths-closed_smile_5-skin.png │ ├── female-mouths-closed_smile_6-skin.png │ ├── female-mouths-frown_1-skin.png │ ├── female-mouths-frown_2-skin.png │ ├── female-mouths-frown_3-skin.png │ ├── female-mouths-frown_4-skin.png │ ├── female-mouths-frown_5-skin.png │ ├── female-mouths-laugh_1-base.png │ ├── female-mouths-laugh_1-skin.png │ ├── female-mouths-laugh_2-base.png │ ├── female-mouths-laugh_2-skin.png │ ├── female-mouths-neutral_1-skin.png │ ├── female-mouths-open_mouth_1-base.png │ ├── female-mouths-open_mouth_2-skin.png │ ├── female-mouths-open_mouth_2-static.png │ ├── female-mouths-open_mouth_3-base.png │ ├── female-mouths-open_mouth_3-skin.png │ ├── female-mouths-open_mouth_4-base.png │ ├── female-mouths-open_mouth_5-skin.png │ ├── female-mouths-open_mouth_5-static.png │ ├── female-mouths-open_mouth_6-skin.png │ ├── female-mouths-open_mouth_6-static.png │ ├── female-mouths-open_mouth_7-skin.png │ ├── female-mouths-open_mouth_7-static.png │ ├── female-mouths-open_small_1-base.png │ ├── female-mouths-open_small_1-skin.png │ ├── female-mouths-open_small_2-skin.png │ ├── female-mouths-open_small_2-static.png │ ├── female-mouths-open_small_3-skin.png │ ├── female-mouths-open_small_3-static.png │ ├── female-mouths-open_smile_1-base.png │ ├── female-mouths-open_smile_1-skin.png │ ├── female-mouths-open_smile_2-skin.png │ ├── female-mouths-open_smile_2-static.png │ ├── female-neck-apron_1-base.png │ ├── female-neck-apron_2-base.png │ ├── female-neck-choker-base.png │ ├── female-neck-lab_coat-base.png │ ├── female-neck-name_tag-base.png │ ├── female-outfits-casual_1-1-base.png │ ├── female-outfits-casual_1-1-skin.png │ ├── female-outfits-casual_1-2-base.png │ ├── female-outfits-casual_1-2-skin.png │ ├── female-outfits-casual_2-1-base.png │ ├── female-outfits-casual_2-1-skin.png │ ├── female-outfits-casual_2-2-base.png │ ├── female-outfits-casual_2-2-skin.png │ ├── female-outfits-casual_3-1-base.png │ ├── female-outfits-casual_3-2-base.png │ ├── female-outfits-casual_3-3-base.png │ ├── female-outfits-casual_4-1-base.png │ ├── female-outfits-casual_4-1-skin.png │ ├── female-outfits-fancy-base.png │ ├── female-outfits-fancy-skin.png │ ├── female-outfits-office_worker-base.png │ ├── female-outfits-office_worker-skin.png │ ├── female-outfits-pajamas-base.png │ ├── female-outfits-pajamas-skin.png │ ├── female-outfits-pe_uniform-base.png │ ├── female-outfits-pe_uniform-skin.png │ ├── female-outfits-school_uniform_1-base.png │ ├── female-outfits-school_uniform_1-skin.png │ ├── female-outfits-school_uniform_2-base.png │ ├── female-outfits-school_uniform_2-skin.png │ ├── female-outfits-school_uniform_3-base.png │ ├── female-outfits-school_uniform_3-skin.png │ ├── female-outfits-shirt_1-base.png │ ├── female-outfits-shirt_2-base.png │ ├── female-outfits-summer-base.png │ ├── female-outfits-summer-skin.png │ ├── female-outfits-swim_1-base.png │ ├── female-outfits-swim_1-skin.png │ ├── female-outfits-swim_2-base.png │ ├── female-outfits-swim_2-highlights.png │ ├── female-outfits-swim_2-skin.png │ ├── female-outfits-tank_top_1-base.png │ ├── female-outfits-tank_top_1-skin.png │ ├── female-outfits-tank_top_2-base.png │ ├── female-outfits-tank_top_2-skin.png │ ├── female-outfits-towel-base.png │ ├── female-outfits-towel-skin.png │ ├── female-outfits-turtle_neck_1-base.png │ ├── female-outfits-turtle_neck_2-base.png │ ├── female-outfits-wedding-base.png │ ├── female-outfits-wedding-skin.png │ ├── female-outfits-winter_1-base.png │ ├── female-outfits-winter_2-base.png │ ├── male-accessories-flower-base.png │ ├── male-accessories-ribbon_1-base.png │ ├── male-accessories-ribbon_2-base.png │ ├── male-accessories-ribbon_3-base.png │ ├── male-accessories-rose_1-base.png │ ├── male-accessories-rose_2-base.png │ ├── male-accessories-sweatdrop-highlights.png │ ├── male-accessories-sweatdrop-skin.png │ ├── male-back_hair-bob-base.png │ ├── male-back_hair-bob-highlights.png │ ├── male-back_hair-long_1-base.png │ ├── male-back_hair-long_1-highlights.png │ ├── male-back_hair-long_2-base.png │ ├── male-back_hair-long_2-highlights.png │ ├── male-back_hair-long_curly-base.png │ ├── male-back_hair-long_curly-highlights.png │ ├── male-back_hair-medium-base.png │ ├── male-back_hair-medium-highlights.png │ ├── male-back_hair-short_1-base.png │ ├── male-back_hair-short_1-highlights.png │ ├── male-back_hair-short_2-base.png │ ├── male-back_hair-short_2-highlights.png │ ├── male-back_hair-short_3-base.png │ ├── male-back_hair-short_3-highlights.png │ ├── male-back_hair-short_curly-base.png │ ├── male-back_hair-short_curly-highlights.png │ ├── male-back_hair-shoulder-length-base.png │ ├── male-back_hair-shoulder-length-highlights.png │ ├── male-back_hair-twin_tail-base.png │ ├── male-back_hair-twin_tail-highlights.png │ ├── male-blushes-blush_1-base.png │ ├── male-blushes-blush_2-base.png │ ├── male-body-body-highlights.png │ ├── male-body-body-skin.png │ ├── male-eye_cover_hair-side-base.png │ ├── male-eye_cover_hair-side-highlights.png │ ├── male-eye_cover_hair-side-skin.png │ ├── male-eyebrows-angry_1-skin.png │ ├── male-eyebrows-angry_2-skin.png │ ├── male-eyebrows-angry_3-skin.png │ ├── male-eyebrows-neutral_1-skin.png │ ├── male-eyebrows-neutral_2-skin.png │ ├── male-eyebrows-sad_1-skin.png │ ├── male-eyebrows-sad_2-skin.png │ ├── male-eyebrows-suprised_2-skin.png │ ├── male-eyebrows-surprised_1-skin.png │ ├── male-eyes-closed_1-skin.png │ ├── male-eyes-closed_2-skin.png │ ├── male-eyes-closed_3-base.png │ ├── male-eyes-closed_3-skin.png │ ├── male-eyes-crying_1-base.png │ ├── male-eyes-crying_1-skin.png │ ├── male-eyes-crying_1-static.png │ ├── male-eyes-neutral_1-base.png │ ├── male-eyes-neutral_1-skin.png │ ├── male-eyes-neutral_1-static.png │ ├── male-eyes-neutral_10-base.png │ ├── male-eyes-neutral_10-skin.png │ ├── male-eyes-neutral_10-static.png │ ├── male-eyes-neutral_11-base.png │ ├── male-eyes-neutral_11-skin.png │ ├── male-eyes-neutral_11-static.png │ ├── male-eyes-neutral_12-base.png │ ├── male-eyes-neutral_12-skin.png │ ├── male-eyes-neutral_12-static.png │ ├── male-eyes-neutral_2-base.png │ ├── male-eyes-neutral_2-skin.png │ ├── male-eyes-neutral_2-static.png │ ├── male-eyes-neutral_3-base.png │ ├── male-eyes-neutral_3-skin.png │ ├── male-eyes-neutral_3-static.png │ ├── male-eyes-neutral_4-base.png │ ├── male-eyes-neutral_4-skin.png │ ├── male-eyes-neutral_4-static.png │ ├── male-eyes-neutral_5-base.png │ ├── male-eyes-neutral_5-skin.png │ ├── male-eyes-neutral_5-static.png │ ├── male-eyes-neutral_6-base.png │ ├── male-eyes-neutral_6-skin.png │ ├── male-eyes-neutral_6-static.png │ ├── male-eyes-neutral_7-base.png │ ├── male-eyes-neutral_7-skin.png │ ├── male-eyes-neutral_7-static.png │ ├── male-eyes-neutral_8-base.png │ ├── male-eyes-neutral_8-skin.png │ ├── male-eyes-neutral_8-static.png │ ├── male-eyes-neutral_9-base.png │ ├── male-eyes-neutral_9-skin.png │ ├── male-eyes-neutral_9-static.png │ ├── male-eyes-surprised_1-base.png │ ├── male-eyes-surprised_1-skin.png │ ├── male-eyes-surprised_1-static.png │ ├── male-eyes-surprised_2-base.png │ ├── male-eyes-surprised_2-skin.png │ ├── male-eyes-surprised_2-static.png │ ├── male-eyes-surprised_3-base.png │ ├── male-eyes-surprised_3-skin.png │ ├── male-eyes-surprised_3-static.png │ ├── male-freckles-freckles_1-base.png │ ├── male-freckles-freckles_2-base.png │ ├── male-front_hair-bob-base.png │ ├── male-front_hair-bob-highlights.png │ ├── male-front_hair-bob-skin.png │ ├── male-front_hair-curly-base.png │ ├── male-front_hair-curly-highlights.png │ ├── male-front_hair-curly-skin.png │ ├── male-front_hair-hime_cut-base.png │ ├── male-front_hair-hime_cut-highlights.png │ ├── male-front_hair-hime_cut-skin.png │ ├── male-front_hair-hime_cut_short-base.png │ ├── male-front_hair-hime_cut_short-highlights.png │ ├── male-front_hair-hime_cut_short-skin.png │ ├── male-front_hair-long_bangs-base.png │ ├── male-front_hair-long_bangs-highlights.png │ ├── male-front_hair-long_bangs-skin.png │ ├── male-front_hair-middle_part-base.png │ ├── male-front_hair-middle_part-highlights.png │ ├── male-front_hair-middle_part-skin.png │ ├── male-front_hair-short_1-base.png │ ├── male-front_hair-short_1-highlights.png │ ├── male-front_hair-short_1-skin.png │ ├── male-front_hair-short_2-base.png │ ├── male-front_hair-short_2-highlights.png │ ├── male-front_hair-short_2-skin.png │ ├── male-front_hair-short_3-base.png │ ├── male-front_hair-short_3-highlights.png │ ├── male-front_hair-short_3-skin.png │ ├── male-front_hair-short_4-base.png │ ├── male-front_hair-short_4-highlights.png │ ├── male-front_hair-short_4-skin.png │ ├── male-front_hair-side_bangs_1-base.png │ ├── male-front_hair-side_bangs_1-highlights.png │ ├── male-front_hair-side_bangs_1-skin.png │ ├── male-front_hair-side_bangs_2-base.png │ ├── male-front_hair-side_bangs_2-highlights.png │ ├── male-front_hair-side_bangs_2-skin.png │ ├── male-front_hair-side_curl-base.png │ ├── male-front_hair-side_curl-highlights.png │ ├── male-front_hair-side_curl-skin.png │ ├── male-glasses-black_glasses-base.png │ ├── male-glasses-circle_glasses-base.png │ ├── male-glasses-red_glasses-base.png │ ├── male-headbands-band_1-base.png │ ├── male-headbands-band_2-base.png │ ├── male-headbands-band_3-base.png │ ├── male-headbands-headphones_up-base.png │ ├── male-headphones_base-headphones_base-base.png │ ├── male-mouths-annoyed_1-skin.png │ ├── male-mouths-annoyed_2-skin.png │ ├── male-mouths-closed_smile_1-skin.png │ ├── male-mouths-closed_smile_2-skin.png │ ├── male-mouths-closed_smile_3-skin.png │ ├── male-mouths-closed_smile_4-skin.png │ ├── male-mouths-closed_smile_5-skin.png │ ├── male-mouths-closed_smile_6-skin.png │ ├── male-mouths-frown_1-skin.png │ ├── male-mouths-frown_2-skin.png │ ├── male-mouths-frown_3-skin.png │ ├── male-mouths-frown_4-skin.png │ ├── male-mouths-frown_5-skin.png │ ├── male-mouths-laugh_1-base.png │ ├── male-mouths-laugh_1-skin.png │ ├── male-mouths-laugh_2-base.png │ ├── male-mouths-laugh_2-skin.png │ ├── male-mouths-neutral_1-skin.png │ ├── male-mouths-open_mouth_1-base.png │ ├── male-mouths-open_mouth_2-skin.png │ ├── male-mouths-open_mouth_2-static.png │ ├── male-mouths-open_mouth_3-base.png │ ├── male-mouths-open_mouth_3-skin.png │ ├── male-mouths-open_mouth_4-base.png │ ├── male-mouths-open_mouth_5-skin.png │ ├── male-mouths-open_mouth_5-static.png │ ├── male-mouths-open_mouth_6-skin.png │ ├── male-mouths-open_mouth_6-static.png │ ├── male-mouths-open_mouth_7-skin.png │ ├── male-mouths-open_mouth_7-static.png │ ├── male-mouths-open_small_1-base.png │ ├── male-mouths-open_small_1-skin.png │ ├── male-mouths-open_small_2-skin.png │ ├── male-mouths-open_small_2-static.png │ ├── male-mouths-open_small_3-skin.png │ ├── male-mouths-open_small_3-static.png │ ├── male-mouths-open_smile_1-base.png │ ├── male-mouths-open_smile_1-skin.png │ ├── male-mouths-open_smile_2-skin.png │ ├── male-mouths-open_smile_2-static.png │ ├── male-neck-apron_1-base.png │ ├── male-neck-apron_2-base.png │ ├── male-neck-choker-base.png │ ├── male-neck-lab_coat-base.png │ ├── male-neck-name_tag-base.png │ ├── male-outfits-casual_1-1-base.png │ ├── male-outfits-casual_1-1-skin.png │ ├── male-outfits-casual_1-2-base.png │ ├── male-outfits-casual_1-2-skin.png │ ├── male-outfits-casual_2-1-base.png │ ├── male-outfits-casual_2-1-skin.png │ ├── male-outfits-casual_2-2-base.png │ ├── male-outfits-casual_2-2-skin.png │ ├── male-outfits-casual_3-1-base.png │ ├── male-outfits-casual_3-2-base.png │ ├── male-outfits-casual_3-3-base.png │ ├── male-outfits-casual_4-1-base.png │ ├── male-outfits-casual_4-1-skin.png │ ├── male-outfits-fancy-base.png │ ├── male-outfits-fancy-skin.png │ ├── male-outfits-office_worker-base.png │ ├── male-outfits-office_worker-skin.png │ ├── male-outfits-pajamas-base.png │ ├── male-outfits-pajamas-skin.png │ ├── male-outfits-pe_uniform-base.png │ ├── male-outfits-pe_uniform-skin.png │ ├── male-outfits-school_uniform_1-base.png │ ├── male-outfits-school_uniform_1-skin.png │ ├── male-outfits-school_uniform_2-base.png │ ├── male-outfits-school_uniform_2-skin.png │ ├── male-outfits-school_uniform_3-base.png │ ├── male-outfits-school_uniform_3-skin.png │ ├── male-outfits-shirt_1-base.png │ ├── male-outfits-shirt_2-base.png │ ├── male-outfits-summer-base.png │ ├── male-outfits-summer-skin.png │ ├── male-outfits-swim_1-base.png │ ├── male-outfits-swim_1-skin.png │ ├── male-outfits-swim_2-base.png │ ├── male-outfits-swim_2-skin.png │ ├── male-outfits-tank_top_1-base.png │ ├── male-outfits-tank_top_1-skin.png │ ├── male-outfits-tank_top_2-base.png │ ├── male-outfits-tank_top_2-skin.png │ ├── male-outfits-towel-base.png │ ├── male-outfits-towel-skin.png │ ├── male-outfits-turtle_neck_1-base.png │ ├── male-outfits-turtle_neck_2-base.png │ ├── male-outfits-wedding-base.png │ ├── male-outfits-winter_1-base.png │ └── male-outfits-winter_2-base.png │ └── manifest.json ├── augment.d.ts ├── dots.css ├── emitter.ts ├── icons ├── AppIcon.tsx ├── DiscordIcon.tsx ├── NoCharacterIcon.tsx ├── WizardIcon.tsx └── agnai_bg-circle_2.png ├── index.html ├── index.tsx ├── manifest.json ├── pages ├── Admin │ ├── Actions.tsx │ ├── Announcements.tsx │ ├── Config │ │ ├── General.tsx │ │ ├── Images.tsx │ │ └── Voice.tsx │ ├── Configuration.tsx │ ├── Metrics.tsx │ ├── SubscriptionList.tsx │ ├── SubscriptionModel.tsx │ ├── Tiers.tsx │ ├── UsersPage.tsx │ └── types.ts ├── Character │ ├── CharacterList.tsx │ ├── CharacterSchema.tsx │ ├── ChatList.tsx │ ├── CreateCharacter.tsx │ ├── CreateCharacterForm.tsx │ ├── DeleteCharacter.tsx │ ├── DownloadModal.tsx │ ├── GenerateAvatar.tsx │ ├── ImpersonateModal.tsx │ ├── ImportCharacter.tsx │ ├── ImportChat.tsx │ ├── card-utils.ts │ ├── components │ │ ├── CharacterCardView.tsx │ │ ├── CharacterFolderView.tsx │ │ ├── CharacterListView.tsx │ │ ├── VoicePicker │ │ │ ├── AgnaisticTtsSettings.tsx │ │ │ ├── ElevenLabsSettings.tsx │ │ │ ├── NovelTtsSettings.tsx │ │ │ ├── VoiceIdSelect.tsx │ │ │ ├── VoicePreviewButton.tsx │ │ │ ├── VoiceServiceSelect.tsx │ │ │ ├── WebSpeechSynthesisSettings.tsx │ │ │ └── index.tsx │ │ ├── characters.css │ │ └── types.ts │ ├── editor.ts │ ├── form │ │ ├── AdvancedOptions.tsx │ │ ├── AltGreetings.tsx │ │ ├── AvatarField.tsx │ │ ├── AvatarModal.tsx │ │ ├── MemoryBookPicker.tsx │ │ ├── ReelControl.tsx │ │ ├── Regenerate.tsx │ │ └── SpriteModal.tsx │ ├── generate-char.ts │ ├── index.tsx │ ├── port.ts │ └── util.ts ├── Chat │ ├── ChatDetail.tsx │ ├── ChatExport.tsx │ ├── ChatFooter.tsx │ ├── ChatMenu.tsx │ ├── ChatOptions.tsx │ ├── ChatSettings.tsx │ ├── CreateChatForm.tsx │ ├── DeleteMsgModal.tsx │ ├── ForcePreset.tsx │ ├── MemberModal.tsx │ ├── chat-detail.css │ ├── components │ │ ├── Attachments.tsx │ │ ├── ChatAvatar.tsx │ │ ├── ChatGraph.tsx │ │ ├── ChatPanes.tsx │ │ ├── DeleteChat.tsx │ │ ├── GraphModal.tsx │ │ ├── Header.tsx │ │ ├── InputBar.tsx │ │ ├── LogProbs.tsx │ │ ├── MemoryModal.tsx │ │ ├── Message.css │ │ ├── Message.tsx │ │ ├── MessageImages.tsx │ │ ├── MessageMeta.tsx │ │ ├── MessageShell.tsx │ │ ├── Pending.tsx │ │ ├── PromptModal.tsx │ │ ├── SpeechRecognitionRecorder.tsx │ │ └── Visibility.tsx │ ├── dev-util.ts │ ├── helpers.tsx │ ├── update-gaslight.ts │ └── util.ts ├── Chub │ ├── BookList.tsx │ ├── CharList.tsx │ ├── Chub.tsx │ ├── ChubImportBook.tsx │ ├── ChubImportChar.tsx │ ├── ChubItem.tsx │ ├── ChubNavigation.tsx │ ├── FilterSettings.tsx │ ├── index.tsx │ └── util.ts ├── GenerationPresets │ ├── PresetList.tsx │ ├── ProviderList.tsx │ └── index.tsx ├── Guides │ ├── Memory.tsx │ ├── NovelAI.tsx │ └── Pipeline.tsx ├── Home │ ├── FAQ.tsx │ ├── home.scss │ └── index.tsx ├── Image │ ├── ImageGeneration.tsx │ ├── ImageModal.tsx │ └── images.scss ├── Invite │ └── InvitesPage.tsx ├── Login │ ├── OAuth.tsx │ ├── RemoteLogin.tsx │ ├── ResetPassword.tsx │ └── index.tsx ├── Memory │ ├── EditMemory.tsx │ ├── EditMemoryPage.tsx │ ├── EmbedContent.tsx │ ├── Library.tsx │ └── Memory.tsx ├── PrivacyPolicy │ └── index.tsx ├── Profile │ ├── Checkout.tsx │ ├── SubscriptionPage.tsx │ ├── TierCard.tsx │ └── index.tsx ├── PromptTemplates │ └── index.tsx ├── Saga │ ├── Detail.tsx │ ├── Help.tsx │ ├── ImportModal.tsx │ ├── Input.tsx │ ├── List.tsx │ ├── Pane.tsx │ ├── examples.ts │ ├── state.ts │ └── util.ts ├── Scenario │ ├── EditScenario.tsx │ ├── EditScenarioEvents.tsx │ ├── ScenarioList.tsx │ ├── components │ │ ├── DownloadScenarioModal.tsx │ │ └── ImportScenarioModal.tsx │ └── index.tsx ├── Settings │ ├── AISettings.tsx │ ├── Image │ │ ├── ImageProvider.tsx │ │ ├── ImageSettings.tsx │ │ ├── NovelImage.tsx │ │ ├── ServiceSettings.tsx │ │ └── image-context.ts │ ├── OpenRouterOauth.tsx │ ├── PatreonOauth.tsx │ ├── Provider │ │ ├── Manage.tsx │ │ ├── hooks.ts │ │ └── index.tsx │ ├── UISettings.tsx │ ├── Voice │ │ ├── AgnaisticSettings.tsx │ │ ├── ElevenLabsSettings.tsx │ │ ├── NovelTtsSettings.tsx │ │ ├── VoiceSettings.tsx │ │ └── WebSpeechSynthesisSettings.tsx │ ├── WorkerModal.tsx │ ├── components │ │ ├── ClaudeSettings.tsx │ │ ├── HordeAISettings.tsx │ │ ├── NovelAISettings.tsx │ │ ├── OpenAISettings.tsx │ │ ├── RegisteredSettings.tsx │ │ └── ThirdPartySettings.tsx │ ├── index.tsx │ ├── ui │ │ ├── ChatUISettings.tsx │ │ ├── MessageUISettings.tsx │ │ ├── ThemeUISettings.tsx │ │ └── common.ts │ └── util.ts ├── Sounds │ ├── SoundPreview.tsx │ ├── SoundpackPicker.tsx │ ├── SoundpackPreview.tsx │ ├── VolumeControl.tsx │ └── index.tsx └── TermsOfService │ └── index.tsx ├── pkg ├── easy-speech.d.ts └── easy-speech.js ├── shared ├── Accordian.tsx ├── Alert.tsx ├── Audio │ ├── audio-source.ts │ ├── native-speech.ts │ ├── playable-events.ts │ ├── player.ts │ ├── remote-speech.ts │ ├── soundpack.ts │ └── speech.ts ├── AutoComplete.tsx ├── Avatar │ ├── Builder.tsx │ ├── Canvas.tsx │ ├── Container.tsx │ └── hooks.ts ├── AvatarIcon.tsx ├── Button.tsx ├── CallToAction.tsx ├── Card.tsx ├── Carousel.tsx ├── CharacterCard.tsx ├── CharacterPill.tsx ├── CharacterSelect.tsx ├── CharacterSelectList.tsx ├── ColorPicker.tsx ├── Combobox.tsx ├── Copy.tsx ├── CultureCodes.ts ├── CustomSelect.tsx ├── Dialog.tsx ├── Divider.tsx ├── Draggable.tsx ├── DropMenu.tsx ├── EditEmbedModal.tsx ├── FileInput.tsx ├── FileUpload.tsx ├── FormLabel.tsx ├── GlobalFileInput.tsx ├── IsVisible.tsx ├── JsonSchema.tsx ├── ListInput.tsx ├── Loading.tsx ├── Maintenance.tsx ├── Modal.tsx ├── Mode │ ├── Convertible.tsx │ ├── Detail.tsx │ ├── ModeGenSettings.tsx │ ├── convertible.scss │ └── mode.scss ├── MultiDropdown.tsx ├── NavBar.tsx ├── PageHeader.tsx ├── Paginate.tsx ├── PersonaAttributes.tsx ├── PhraseBias.tsx ├── PresetSelect.tsx ├── PresetSettings │ ├── Agnaistic.tsx │ ├── Fields.tsx │ ├── General.tsx │ ├── Memory.tsx │ ├── Prompt.tsx │ ├── Registered.tsx │ ├── Sliders.tsx │ ├── ThirdPartyModel.tsx │ ├── Toggles.tsx │ ├── index.tsx │ ├── settings.ts │ └── types.tsx ├── PromptEditor │ ├── Definitions.tsx │ ├── SelectTemplate.tsx │ ├── Suggestions.tsx │ ├── index.tsx │ └── types.ts ├── RadioGroup.tsx ├── RangeInput.tsx ├── Redirect.tsx ├── Select.tsx ├── Selectable │ └── index.tsx ├── ServiceWarning.tsx ├── SideDrawer │ ├── index.tsx │ └── side-drawer.css ├── Slot.tsx ├── Sortable.tsx ├── Tabs.tsx ├── TagInput.tsx ├── TagSelect.tsx ├── TextInput.tsx ├── Toggle.tsx ├── Tooltip.tsx ├── adapter.ts ├── avatar-util.ts ├── avatar.css ├── colors.ts ├── hooks.ts ├── image-resize.ts ├── markdown.ts ├── modal.css ├── toggle.css └── util.ts ├── store ├── admin.ts ├── announce.ts ├── api.ts ├── attachments.ts ├── audio.ts ├── character.ts ├── chat.ts ├── chub.ts ├── context.tsx ├── create.ts ├── data │ ├── bot-generate.ts │ ├── chars.ts │ ├── chats.ts │ ├── common.ts │ ├── image.ts │ ├── inference.ts │ ├── md5.ts │ ├── memory.ts │ ├── messages.ts │ ├── pdf-import.ts │ ├── presets.ts │ ├── saga.ts │ ├── scenario.ts │ ├── storage.ts │ ├── user.ts │ └── voice.ts ├── embeddings │ ├── cache.ts │ ├── index.ts │ ├── types.ts │ └── worker.ts ├── event.ts ├── flags.ts ├── images.ts ├── index.ts ├── invites.ts ├── memory.ts ├── message.ts ├── page.ts ├── preset-context.tsx ├── presets.ts ├── prompt.ts ├── response.ts ├── scenario.ts ├── settings.ts ├── socket.ts ├── tag.ts ├── toasts.ts ├── user.ts └── voice.ts ├── subnav.tsx ├── tailwind.css ├── tours ├── character.ts ├── chat.ts ├── home.ts ├── index.ts ├── profile.ts └── util.ts ├── variables.css └── vite-env.d.ts /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/.babelrc -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- 1 | db/ 2 | .parcel-cache 3 | node_modules 4 | .env 5 | .token_secret -------------------------------------------------------------------------------- /.env.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/.env.template -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | patreon: Agnaistic 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/.github/ISSUE_TEMPLATE/question.md -------------------------------------------------------------------------------- /.github/actions/install-node-pnpm/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/.github/actions/install-node-pnpm/action.yml -------------------------------------------------------------------------------- /.github/actions/restore-pnpm-cache/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/.github/actions/restore-pnpm-cache/action.yml -------------------------------------------------------------------------------- /.github/deploy-stg.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | ssh ci@$@ "sh deploy-stg.sh" -------------------------------------------------------------------------------- /.github/deploy.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | ssh ci@$@ "sh deploy-prd.sh" -------------------------------------------------------------------------------- /.github/inject.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/.github/inject.js -------------------------------------------------------------------------------- /.github/rev-version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/.github/rev-version.js -------------------------------------------------------------------------------- /.github/workflows/api.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/.github/workflows/api.yml -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.github/workflows/dev-deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/.github/workflows/dev-deploy.yml -------------------------------------------------------------------------------- /.github/workflows/pipeline.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/.github/workflows/pipeline.yml -------------------------------------------------------------------------------- /.github/workflows/prd-deploy-api.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/.github/workflows/prd-deploy-api.yml -------------------------------------------------------------------------------- /.github/workflows/prd-deploy-stack.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/.github/workflows/prd-deploy-stack.yml -------------------------------------------------------------------------------- /.github/workflows/prd-deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/.github/workflows/prd-deploy.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/stg-deploy-stack.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/.github/workflows/stg-deploy-stack.yml -------------------------------------------------------------------------------- /.github/workflows/web-deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/.github/workflows/web-deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/.gitignore -------------------------------------------------------------------------------- /.parcelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/.parcelrc -------------------------------------------------------------------------------- /.postcssrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/.postcssrc -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/SECURITY.md -------------------------------------------------------------------------------- /api.tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/api.tsconfig.json -------------------------------------------------------------------------------- /common/adapters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/common/adapters.ts -------------------------------------------------------------------------------- /common/ambient.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/common/ambient.d.ts -------------------------------------------------------------------------------- /common/characters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/common/characters.ts -------------------------------------------------------------------------------- /common/chat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/common/chat.ts -------------------------------------------------------------------------------- /common/debug.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/common/debug.ts -------------------------------------------------------------------------------- /common/default-preset.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/common/default-preset.ts -------------------------------------------------------------------------------- /common/dummy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/common/dummy.ts -------------------------------------------------------------------------------- /common/grammar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/common/grammar.ts -------------------------------------------------------------------------------- /common/guidance/grammar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/common/guidance/grammar.ts -------------------------------------------------------------------------------- /common/guidance/guidance-parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/common/guidance/guidance-parser.ts -------------------------------------------------------------------------------- /common/guidance/json-schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/common/guidance/json-schema.ts -------------------------------------------------------------------------------- /common/guidance/v2/grammar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/common/guidance/v2/grammar.ts -------------------------------------------------------------------------------- /common/guidance/v2/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/common/guidance/v2/index.ts -------------------------------------------------------------------------------- /common/horde-gen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/common/horde-gen.ts -------------------------------------------------------------------------------- /common/image-prompt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/common/image-prompt.ts -------------------------------------------------------------------------------- /common/image-util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/common/image-util.ts -------------------------------------------------------------------------------- /common/image.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/common/image.ts -------------------------------------------------------------------------------- /common/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/common/logger.ts -------------------------------------------------------------------------------- /common/memory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/common/memory.ts -------------------------------------------------------------------------------- /common/mode-templates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/common/mode-templates.ts -------------------------------------------------------------------------------- /common/module.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/common/module.d.ts -------------------------------------------------------------------------------- /common/presets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/common/presets.ts -------------------------------------------------------------------------------- /common/presets/agnaistic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/common/presets/agnaistic.ts -------------------------------------------------------------------------------- /common/presets/claude.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/common/presets/claude.ts -------------------------------------------------------------------------------- /common/presets/horde.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/common/presets/horde.ts -------------------------------------------------------------------------------- /common/presets/kobold.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/common/presets/kobold.ts -------------------------------------------------------------------------------- /common/presets/novel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/common/presets/novel.ts -------------------------------------------------------------------------------- /common/presets/ooba.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/common/presets/ooba.ts -------------------------------------------------------------------------------- /common/presets/openai.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/common/presets/openai.ts -------------------------------------------------------------------------------- /common/presets/openrouter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/common/presets/openrouter.ts -------------------------------------------------------------------------------- /common/presets/replicate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/common/presets/replicate.ts -------------------------------------------------------------------------------- /common/presets/scale.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/common/presets/scale.ts -------------------------------------------------------------------------------- /common/presets/templates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/common/presets/templates.ts -------------------------------------------------------------------------------- /common/prompt-order.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/common/prompt-order.ts -------------------------------------------------------------------------------- /common/prompt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/common/prompt.ts -------------------------------------------------------------------------------- /common/providers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/common/providers.ts -------------------------------------------------------------------------------- /common/reasoning.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/common/reasoning.ts -------------------------------------------------------------------------------- /common/requests/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/common/requests/index.ts -------------------------------------------------------------------------------- /common/requests/openai.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/common/requests/openai.ts -------------------------------------------------------------------------------- /common/requests/payloads.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/common/requests/payloads.ts -------------------------------------------------------------------------------- /common/requests/stream.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/common/requests/stream.ts -------------------------------------------------------------------------------- /common/requests/swarmui.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/common/requests/swarmui.ts -------------------------------------------------------------------------------- /common/requests/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/common/requests/types.ts -------------------------------------------------------------------------------- /common/requests/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/common/requests/util.ts -------------------------------------------------------------------------------- /common/sampler-order.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/common/sampler-order.ts -------------------------------------------------------------------------------- /common/scenario.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/common/scenario.ts -------------------------------------------------------------------------------- /common/template-messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/common/template-messages.ts -------------------------------------------------------------------------------- /common/template-parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/common/template-parser.ts -------------------------------------------------------------------------------- /common/tokenize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/common/tokenize.ts -------------------------------------------------------------------------------- /common/typed-event-emitter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/common/typed-event-emitter.ts -------------------------------------------------------------------------------- /common/types/admin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/common/types/admin.ts -------------------------------------------------------------------------------- /common/types/image-schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/common/types/image-schema.ts -------------------------------------------------------------------------------- /common/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/common/types/index.ts -------------------------------------------------------------------------------- /common/types/library.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/common/types/library.ts -------------------------------------------------------------------------------- /common/types/memory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/common/types/memory.ts -------------------------------------------------------------------------------- /common/types/presets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/common/types/presets.ts -------------------------------------------------------------------------------- /common/types/replicate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/common/types/replicate.ts -------------------------------------------------------------------------------- /common/types/saga.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/common/types/saga.ts -------------------------------------------------------------------------------- /common/types/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/common/types/schema.ts -------------------------------------------------------------------------------- /common/types/sprite.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/common/types/sprite.ts -------------------------------------------------------------------------------- /common/types/texttospeech-schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/common/types/texttospeech-schema.ts -------------------------------------------------------------------------------- /common/types/ui.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/common/types/ui.ts -------------------------------------------------------------------------------- /common/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/common/util.ts -------------------------------------------------------------------------------- /common/valid/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/common/valid/index.ts -------------------------------------------------------------------------------- /common/valid/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/common/valid/types.ts -------------------------------------------------------------------------------- /common/valid/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/common/valid/util.ts -------------------------------------------------------------------------------- /common/valid/validate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/common/valid/validate.ts -------------------------------------------------------------------------------- /common/version.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/common/version.ts -------------------------------------------------------------------------------- /db/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/db/.gitignore -------------------------------------------------------------------------------- /db/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /extras/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/extras/.gitkeep -------------------------------------------------------------------------------- /instructions/memory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/instructions/memory.md -------------------------------------------------------------------------------- /instructions/novel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/instructions/novel.md -------------------------------------------------------------------------------- /model/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/model/app.py -------------------------------------------------------------------------------- /model/args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/model/args.py -------------------------------------------------------------------------------- /model/device.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/model/device.py -------------------------------------------------------------------------------- /model/memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/model/memory.py -------------------------------------------------------------------------------- /model/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/model/server.py -------------------------------------------------------------------------------- /model/summary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/model/summary.py -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/pyproject.toml -------------------------------------------------------------------------------- /screenshots/chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/screenshots/chat.png -------------------------------------------------------------------------------- /screenshots/persona.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/screenshots/persona.png -------------------------------------------------------------------------------- /screenshots/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/screenshots/settings.png -------------------------------------------------------------------------------- /self-host.docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/self-host.docker-compose.yml -------------------------------------------------------------------------------- /sprites.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/sprites.js -------------------------------------------------------------------------------- /srv.tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv.tsconfig.json -------------------------------------------------------------------------------- /srv/adapter/agnaistic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/adapter/agnaistic.ts -------------------------------------------------------------------------------- /srv/adapter/arli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/adapter/arli.ts -------------------------------------------------------------------------------- /srv/adapter/chat-completion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/adapter/chat-completion.ts -------------------------------------------------------------------------------- /srv/adapter/claude.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/adapter/claude.ts -------------------------------------------------------------------------------- /srv/adapter/dispatch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/adapter/dispatch.ts -------------------------------------------------------------------------------- /srv/adapter/featherless.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/adapter/featherless.ts -------------------------------------------------------------------------------- /srv/adapter/gemini.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/adapter/gemini.ts -------------------------------------------------------------------------------- /srv/adapter/generate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/adapter/generate.ts -------------------------------------------------------------------------------- /srv/adapter/goose.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/adapter/goose.ts -------------------------------------------------------------------------------- /srv/adapter/horde.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/adapter/horde.ts -------------------------------------------------------------------------------- /srv/adapter/kobold.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/adapter/kobold.ts -------------------------------------------------------------------------------- /srv/adapter/mancer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/adapter/mancer.ts -------------------------------------------------------------------------------- /srv/adapter/novel-bad-words.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/adapter/novel-bad-words.ts -------------------------------------------------------------------------------- /srv/adapter/novel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/adapter/novel.ts -------------------------------------------------------------------------------- /srv/adapter/openai.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/adapter/openai.ts -------------------------------------------------------------------------------- /srv/adapter/openrouter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/adapter/openrouter.ts -------------------------------------------------------------------------------- /srv/adapter/payloads.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/adapter/payloads.ts -------------------------------------------------------------------------------- /srv/adapter/petals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/adapter/petals.ts -------------------------------------------------------------------------------- /srv/adapter/prompt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/adapter/prompt.ts -------------------------------------------------------------------------------- /srv/adapter/register.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/adapter/register.ts -------------------------------------------------------------------------------- /srv/adapter/replicate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/adapter/replicate.ts -------------------------------------------------------------------------------- /srv/adapter/scale.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/adapter/scale.ts -------------------------------------------------------------------------------- /srv/adapter/stream.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/adapter/stream.ts -------------------------------------------------------------------------------- /srv/adapter/template-chat-payload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/adapter/template-chat-payload.ts -------------------------------------------------------------------------------- /srv/adapter/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/adapter/type.ts -------------------------------------------------------------------------------- /srv/adapter/venus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/adapter/venus.ts -------------------------------------------------------------------------------- /srv/api/admin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/api/admin.ts -------------------------------------------------------------------------------- /srv/api/announcements.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/api/announcements.ts -------------------------------------------------------------------------------- /srv/api/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/api/auth.ts -------------------------------------------------------------------------------- /srv/api/billing/cancel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/api/billing/cancel.ts -------------------------------------------------------------------------------- /srv/api/billing/checkout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/api/billing/checkout.ts -------------------------------------------------------------------------------- /srv/api/billing/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/api/billing/index.ts -------------------------------------------------------------------------------- /srv/api/billing/modify.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/api/billing/modify.ts -------------------------------------------------------------------------------- /srv/api/billing/resume.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/api/billing/resume.ts -------------------------------------------------------------------------------- /srv/api/billing/stripe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/api/billing/stripe.ts -------------------------------------------------------------------------------- /srv/api/character.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/api/character.ts -------------------------------------------------------------------------------- /srv/api/chat/characters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/api/chat/characters.ts -------------------------------------------------------------------------------- /srv/api/chat/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/api/chat/common.ts -------------------------------------------------------------------------------- /srv/api/chat/create.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/api/chat/create.ts -------------------------------------------------------------------------------- /srv/api/chat/edit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/api/chat/edit.ts -------------------------------------------------------------------------------- /srv/api/chat/get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/api/chat/get.ts -------------------------------------------------------------------------------- /srv/api/chat/granular.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/api/chat/granular.ts -------------------------------------------------------------------------------- /srv/api/chat/guest-msg.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/api/chat/guest-msg.ts -------------------------------------------------------------------------------- /srv/api/chat/image.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/api/chat/image.ts -------------------------------------------------------------------------------- /srv/api/chat/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/api/chat/index.ts -------------------------------------------------------------------------------- /srv/api/chat/inference.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/api/chat/inference.ts -------------------------------------------------------------------------------- /srv/api/chat/invite.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/api/chat/invite.ts -------------------------------------------------------------------------------- /srv/api/chat/lock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/api/chat/lock.ts -------------------------------------------------------------------------------- /srv/api/chat/message.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/api/chat/message.ts -------------------------------------------------------------------------------- /srv/api/chat/remove.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/api/chat/remove.ts -------------------------------------------------------------------------------- /srv/api/chat/texttospeech.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/api/chat/texttospeech.ts -------------------------------------------------------------------------------- /srv/api/classify/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/api/classify/index.ts -------------------------------------------------------------------------------- /srv/api/horde.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/api/horde.ts -------------------------------------------------------------------------------- /srv/api/image-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/api/image-api.ts -------------------------------------------------------------------------------- /srv/api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/api/index.ts -------------------------------------------------------------------------------- /srv/api/json/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/api/json/index.ts -------------------------------------------------------------------------------- /srv/api/memory/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/api/memory/index.ts -------------------------------------------------------------------------------- /srv/api/pipeline.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/api/pipeline.ts -------------------------------------------------------------------------------- /srv/api/request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/api/request.ts -------------------------------------------------------------------------------- /srv/api/scenario/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/api/scenario/index.ts -------------------------------------------------------------------------------- /srv/api/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/api/settings.ts -------------------------------------------------------------------------------- /srv/api/subscriptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/api/subscriptions.ts -------------------------------------------------------------------------------- /srv/api/upload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/api/upload.ts -------------------------------------------------------------------------------- /srv/api/user/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/api/user/auth.ts -------------------------------------------------------------------------------- /srv/api/user/delete-user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/api/user/delete-user.ts -------------------------------------------------------------------------------- /srv/api/user/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/api/user/index.ts -------------------------------------------------------------------------------- /srv/api/user/patreon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/api/user/patreon.ts -------------------------------------------------------------------------------- /srv/api/user/presets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/api/user/presets.ts -------------------------------------------------------------------------------- /srv/api/user/services.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/api/user/services.ts -------------------------------------------------------------------------------- /srv/api/user/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/api/user/settings.ts -------------------------------------------------------------------------------- /srv/api/voice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/api/voice.ts -------------------------------------------------------------------------------- /srv/api/wrap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/api/wrap.ts -------------------------------------------------------------------------------- /srv/api/ws/handle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/api/ws/handle.ts -------------------------------------------------------------------------------- /srv/api/ws/handlers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/api/ws/handlers.ts -------------------------------------------------------------------------------- /srv/api/ws/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/api/ws/index.ts -------------------------------------------------------------------------------- /srv/api/ws/redis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/api/ws/redis.ts -------------------------------------------------------------------------------- /srv/api/ws/setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/api/ws/setup.ts -------------------------------------------------------------------------------- /srv/api/ws/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/api/ws/types.ts -------------------------------------------------------------------------------- /srv/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/app.ts -------------------------------------------------------------------------------- /srv/augment.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/augment.d.ts -------------------------------------------------------------------------------- /srv/bin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/bin.ts -------------------------------------------------------------------------------- /srv/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/config.ts -------------------------------------------------------------------------------- /srv/db/admin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/db/admin.ts -------------------------------------------------------------------------------- /srv/db/announcements.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/db/announcements.ts -------------------------------------------------------------------------------- /srv/db/characters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/db/characters.ts -------------------------------------------------------------------------------- /srv/db/chats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/db/chats.ts -------------------------------------------------------------------------------- /srv/db/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/db/client.ts -------------------------------------------------------------------------------- /srv/db/image-presets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/db/image-presets.ts -------------------------------------------------------------------------------- /srv/db/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/db/index.ts -------------------------------------------------------------------------------- /srv/db/invite.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/db/invite.ts -------------------------------------------------------------------------------- /srv/db/memory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/db/memory.ts -------------------------------------------------------------------------------- /srv/db/messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/db/messages.ts -------------------------------------------------------------------------------- /srv/db/oauth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/db/oauth.ts -------------------------------------------------------------------------------- /srv/db/presets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/db/presets.ts -------------------------------------------------------------------------------- /srv/db/scenario.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/db/scenario.ts -------------------------------------------------------------------------------- /srv/db/subscriptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/db/subscriptions.ts -------------------------------------------------------------------------------- /srv/db/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/db/user.ts -------------------------------------------------------------------------------- /srv/db/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/db/util.ts -------------------------------------------------------------------------------- /srv/domains/billing/agg.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/domains/billing/agg.ts -------------------------------------------------------------------------------- /srv/domains/billing/cmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/domains/billing/cmd.ts -------------------------------------------------------------------------------- /srv/domains/billing/manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/domains/billing/manager.ts -------------------------------------------------------------------------------- /srv/domains/billing/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/domains/billing/types.ts -------------------------------------------------------------------------------- /srv/domains/domain.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/domains/domain.ts -------------------------------------------------------------------------------- /srv/domains/gifts/agg.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /srv/domains/gifts/cmd.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /srv/domains/gifts/types.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /srv/domains/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/domains/index.ts -------------------------------------------------------------------------------- /srv/domains/lock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/domains/lock.ts -------------------------------------------------------------------------------- /srv/domains/patreons/cmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/domains/patreons/cmd.ts -------------------------------------------------------------------------------- /srv/domains/patreons/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/domains/patreons/index.ts -------------------------------------------------------------------------------- /srv/domains/patreons/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/domains/patreons/types.ts -------------------------------------------------------------------------------- /srv/domains/subs/agg.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/domains/subs/agg.ts -------------------------------------------------------------------------------- /srv/domains/subs/cmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/domains/subs/cmd.ts -------------------------------------------------------------------------------- /srv/domains/subs/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/domains/subs/types.ts -------------------------------------------------------------------------------- /srv/image/horde.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/image/horde.ts -------------------------------------------------------------------------------- /srv/image/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/image/index.ts -------------------------------------------------------------------------------- /srv/image/novel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/image/novel.ts -------------------------------------------------------------------------------- /srv/image/stable-diffusion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/image/stable-diffusion.ts -------------------------------------------------------------------------------- /srv/image/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/image/types.ts -------------------------------------------------------------------------------- /srv/middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/middleware.ts -------------------------------------------------------------------------------- /srv/module.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/module.d.ts -------------------------------------------------------------------------------- /srv/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/server.ts -------------------------------------------------------------------------------- /srv/sp-models/claude.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/sp-models/claude.json -------------------------------------------------------------------------------- /srv/sp-models/cohere.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/sp-models/cohere.json -------------------------------------------------------------------------------- /srv/sp-models/cohere_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/sp-models/cohere_config.json -------------------------------------------------------------------------------- /srv/sp-models/gemma.model: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/sp-models/gemma.model -------------------------------------------------------------------------------- /srv/sp-models/gpt2_tokenizer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/sp-models/gpt2_tokenizer.json -------------------------------------------------------------------------------- /srv/sp-models/llama.model: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/sp-models/llama.model -------------------------------------------------------------------------------- /srv/sp-models/llama3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/sp-models/llama3.json -------------------------------------------------------------------------------- /srv/sp-models/llama3_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/sp-models/llama3_config.json -------------------------------------------------------------------------------- /srv/sp-models/mistral.model: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/sp-models/mistral.model -------------------------------------------------------------------------------- /srv/sp-models/novelai.model: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/sp-models/novelai.model -------------------------------------------------------------------------------- /srv/sp-models/novelai_v2.model: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/sp-models/novelai_v2.model -------------------------------------------------------------------------------- /srv/sp-models/pile_tokenizer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/sp-models/pile_tokenizer.json -------------------------------------------------------------------------------- /srv/sp-models/qwen2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/sp-models/qwen2.json -------------------------------------------------------------------------------- /srv/sp-models/yi.model: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/sp-models/yi.model -------------------------------------------------------------------------------- /srv/start.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/start.ts -------------------------------------------------------------------------------- /srv/tokenize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/tokenize.ts -------------------------------------------------------------------------------- /srv/voice/agnai.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/voice/agnai.ts -------------------------------------------------------------------------------- /srv/voice/elevenlabs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/voice/elevenlabs.ts -------------------------------------------------------------------------------- /srv/voice/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/voice/index.ts -------------------------------------------------------------------------------- /srv/voice/novel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/voice/novel.ts -------------------------------------------------------------------------------- /srv/voice/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/voice/types.ts -------------------------------------------------------------------------------- /srv/voice/webspeechsynthesis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/srv/voice/webspeechsynthesis.ts -------------------------------------------------------------------------------- /static/schema/scenario-schema-v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/static/schema/scenario-schema-v1.json -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /template.settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "baseEndTokens": ["\n\n"] 3 | } 4 | -------------------------------------------------------------------------------- /tests/__snapshots__/chat-model-sample-chat.spec.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/tests/__snapshots__/chat-model-sample-chat.spec.js.snap -------------------------------------------------------------------------------- /tests/__snapshots__/parser.spec.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/tests/__snapshots__/parser.spec.js.snap -------------------------------------------------------------------------------- /tests/__snapshots__/placeholder.spec.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/tests/__snapshots__/placeholder.spec.js.snap -------------------------------------------------------------------------------- /tests/__snapshots__/prompt.spec.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/tests/__snapshots__/prompt.spec.js.snap -------------------------------------------------------------------------------- /tests/chat-model-sample-chat.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/tests/chat-model-sample-chat.spec.ts -------------------------------------------------------------------------------- /tests/init.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/tests/init.ts -------------------------------------------------------------------------------- /tests/parser.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/tests/parser.spec.ts -------------------------------------------------------------------------------- /tests/placeholder.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/tests/placeholder.spec.ts -------------------------------------------------------------------------------- /tests/prompt.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/tests/prompt.spec.ts -------------------------------------------------------------------------------- /tests/resolve-scenario.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/tests/resolve-scenario.spec.ts -------------------------------------------------------------------------------- /tests/system-prompt-extraction.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/tests/system-prompt-extraction.spec.ts -------------------------------------------------------------------------------- /tests/trim-sentence.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/tests/trim-sentence.spec.ts -------------------------------------------------------------------------------- /tests/trim.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/tests/trim.spec.ts -------------------------------------------------------------------------------- /tests/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/tests/util.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/vite.config.ts -------------------------------------------------------------------------------- /web/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/App.tsx -------------------------------------------------------------------------------- /web/Layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/Layout.tsx -------------------------------------------------------------------------------- /web/Navigation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/Navigation.tsx -------------------------------------------------------------------------------- /web/Toasts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/Toasts.tsx -------------------------------------------------------------------------------- /web/ambient.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/ambient.d.ts -------------------------------------------------------------------------------- /web/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/app.css -------------------------------------------------------------------------------- /web/asset/DiscordDark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/DiscordDark.svg -------------------------------------------------------------------------------- /web/asset/DiscordLight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/DiscordLight.svg -------------------------------------------------------------------------------- /web/asset/NoCharacter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/NoCharacter.svg -------------------------------------------------------------------------------- /web/asset/WizardIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/WizardIcon.svg -------------------------------------------------------------------------------- /web/asset/agnai_bg-circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/agnai_bg-circle.png -------------------------------------------------------------------------------- /web/asset/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/favicon.ico -------------------------------------------------------------------------------- /web/asset/mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/mixins.scss -------------------------------------------------------------------------------- /web/asset/sprite.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprite.ts -------------------------------------------------------------------------------- /web/asset/sprites/images/blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/blank.png -------------------------------------------------------------------------------- /web/asset/sprites/images/female-back_hair-bob-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/female-back_hair-bob-base.png -------------------------------------------------------------------------------- /web/asset/sprites/images/female-back_hair-long_1-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/female-back_hair-long_1-base.png -------------------------------------------------------------------------------- /web/asset/sprites/images/female-back_hair-long_2-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/female-back_hair-long_2-base.png -------------------------------------------------------------------------------- /web/asset/sprites/images/female-back_hair-medium-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/female-back_hair-medium-base.png -------------------------------------------------------------------------------- /web/asset/sprites/images/female-back_hair-short_1-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/female-back_hair-short_1-base.png -------------------------------------------------------------------------------- /web/asset/sprites/images/female-back_hair-short_2-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/female-back_hair-short_2-base.png -------------------------------------------------------------------------------- /web/asset/sprites/images/female-back_hair-short_3-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/female-back_hair-short_3-base.png -------------------------------------------------------------------------------- /web/asset/sprites/images/female-blushes-blush_1-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/female-blushes-blush_1-base.png -------------------------------------------------------------------------------- /web/asset/sprites/images/female-blushes-blush_2-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/female-blushes-blush_2-base.png -------------------------------------------------------------------------------- /web/asset/sprites/images/female-body-body-highlights.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/female-body-body-highlights.png -------------------------------------------------------------------------------- /web/asset/sprites/images/female-body-body-skin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/female-body-body-skin.png -------------------------------------------------------------------------------- /web/asset/sprites/images/female-eyebrows-angry_1-skin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/female-eyebrows-angry_1-skin.png -------------------------------------------------------------------------------- /web/asset/sprites/images/female-eyebrows-angry_2-skin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/female-eyebrows-angry_2-skin.png -------------------------------------------------------------------------------- /web/asset/sprites/images/female-eyebrows-angry_3-skin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/female-eyebrows-angry_3-skin.png -------------------------------------------------------------------------------- /web/asset/sprites/images/female-eyebrows-sad_1-skin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/female-eyebrows-sad_1-skin.png -------------------------------------------------------------------------------- /web/asset/sprites/images/female-eyebrows-sad_2-skin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/female-eyebrows-sad_2-skin.png -------------------------------------------------------------------------------- /web/asset/sprites/images/female-eyes-closed_1-skin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/female-eyes-closed_1-skin.png -------------------------------------------------------------------------------- /web/asset/sprites/images/female-eyes-closed_2-skin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/female-eyes-closed_2-skin.png -------------------------------------------------------------------------------- /web/asset/sprites/images/female-eyes-closed_3-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/female-eyes-closed_3-base.png -------------------------------------------------------------------------------- /web/asset/sprites/images/female-eyes-closed_3-skin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/female-eyes-closed_3-skin.png -------------------------------------------------------------------------------- /web/asset/sprites/images/female-eyes-crying_1-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/female-eyes-crying_1-base.png -------------------------------------------------------------------------------- /web/asset/sprites/images/female-eyes-crying_1-skin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/female-eyes-crying_1-skin.png -------------------------------------------------------------------------------- /web/asset/sprites/images/female-eyes-crying_1-static.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/female-eyes-crying_1-static.png -------------------------------------------------------------------------------- /web/asset/sprites/images/female-eyes-neutral_1-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/female-eyes-neutral_1-base.png -------------------------------------------------------------------------------- /web/asset/sprites/images/female-eyes-neutral_1-skin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/female-eyes-neutral_1-skin.png -------------------------------------------------------------------------------- /web/asset/sprites/images/female-eyes-neutral_1-static.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/female-eyes-neutral_1-static.png -------------------------------------------------------------------------------- /web/asset/sprites/images/female-eyes-neutral_10-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/female-eyes-neutral_10-base.png -------------------------------------------------------------------------------- /web/asset/sprites/images/female-eyes-neutral_10-skin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/female-eyes-neutral_10-skin.png -------------------------------------------------------------------------------- /web/asset/sprites/images/female-eyes-neutral_10-static.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/female-eyes-neutral_10-static.png -------------------------------------------------------------------------------- /web/asset/sprites/images/female-eyes-neutral_11-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/female-eyes-neutral_11-base.png -------------------------------------------------------------------------------- /web/asset/sprites/images/female-eyes-neutral_11-skin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/female-eyes-neutral_11-skin.png -------------------------------------------------------------------------------- /web/asset/sprites/images/female-eyes-neutral_11-static.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/female-eyes-neutral_11-static.png -------------------------------------------------------------------------------- /web/asset/sprites/images/female-eyes-neutral_12-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/female-eyes-neutral_12-base.png -------------------------------------------------------------------------------- /web/asset/sprites/images/female-eyes-neutral_12-skin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/female-eyes-neutral_12-skin.png -------------------------------------------------------------------------------- /web/asset/sprites/images/female-eyes-neutral_12-static.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/female-eyes-neutral_12-static.png -------------------------------------------------------------------------------- /web/asset/sprites/images/female-eyes-neutral_2-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/female-eyes-neutral_2-base.png -------------------------------------------------------------------------------- /web/asset/sprites/images/female-eyes-neutral_2-skin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/female-eyes-neutral_2-skin.png -------------------------------------------------------------------------------- /web/asset/sprites/images/female-eyes-neutral_2-static.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/female-eyes-neutral_2-static.png -------------------------------------------------------------------------------- /web/asset/sprites/images/female-eyes-neutral_3-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/female-eyes-neutral_3-base.png -------------------------------------------------------------------------------- /web/asset/sprites/images/female-eyes-neutral_3-skin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/female-eyes-neutral_3-skin.png -------------------------------------------------------------------------------- /web/asset/sprites/images/female-eyes-neutral_3-static.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/female-eyes-neutral_3-static.png -------------------------------------------------------------------------------- /web/asset/sprites/images/female-eyes-neutral_4-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/female-eyes-neutral_4-base.png -------------------------------------------------------------------------------- /web/asset/sprites/images/female-eyes-neutral_4-skin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/female-eyes-neutral_4-skin.png -------------------------------------------------------------------------------- /web/asset/sprites/images/female-eyes-neutral_4-static.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/female-eyes-neutral_4-static.png -------------------------------------------------------------------------------- /web/asset/sprites/images/female-eyes-neutral_5-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/female-eyes-neutral_5-base.png -------------------------------------------------------------------------------- /web/asset/sprites/images/female-eyes-neutral_5-skin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/female-eyes-neutral_5-skin.png -------------------------------------------------------------------------------- /web/asset/sprites/images/female-eyes-neutral_5-static.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/female-eyes-neutral_5-static.png -------------------------------------------------------------------------------- /web/asset/sprites/images/female-eyes-neutral_6-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/female-eyes-neutral_6-base.png -------------------------------------------------------------------------------- /web/asset/sprites/images/female-eyes-neutral_6-skin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/female-eyes-neutral_6-skin.png -------------------------------------------------------------------------------- /web/asset/sprites/images/female-eyes-neutral_6-static.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/female-eyes-neutral_6-static.png -------------------------------------------------------------------------------- /web/asset/sprites/images/female-eyes-neutral_7-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/female-eyes-neutral_7-base.png -------------------------------------------------------------------------------- /web/asset/sprites/images/female-eyes-neutral_7-skin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/female-eyes-neutral_7-skin.png -------------------------------------------------------------------------------- /web/asset/sprites/images/female-eyes-neutral_7-static.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/female-eyes-neutral_7-static.png -------------------------------------------------------------------------------- /web/asset/sprites/images/female-eyes-neutral_8-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/female-eyes-neutral_8-base.png -------------------------------------------------------------------------------- /web/asset/sprites/images/female-eyes-neutral_8-skin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/female-eyes-neutral_8-skin.png -------------------------------------------------------------------------------- /web/asset/sprites/images/female-eyes-neutral_8-static.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/female-eyes-neutral_8-static.png -------------------------------------------------------------------------------- /web/asset/sprites/images/female-eyes-neutral_9-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/female-eyes-neutral_9-base.png -------------------------------------------------------------------------------- /web/asset/sprites/images/female-eyes-neutral_9-skin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/female-eyes-neutral_9-skin.png -------------------------------------------------------------------------------- /web/asset/sprites/images/female-eyes-neutral_9-static.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/female-eyes-neutral_9-static.png -------------------------------------------------------------------------------- /web/asset/sprites/images/female-eyes-surprised_1-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/female-eyes-surprised_1-base.png -------------------------------------------------------------------------------- /web/asset/sprites/images/female-eyes-surprised_1-skin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/female-eyes-surprised_1-skin.png -------------------------------------------------------------------------------- /web/asset/sprites/images/female-eyes-surprised_2-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/female-eyes-surprised_2-base.png -------------------------------------------------------------------------------- /web/asset/sprites/images/female-eyes-surprised_2-skin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/female-eyes-surprised_2-skin.png -------------------------------------------------------------------------------- /web/asset/sprites/images/female-eyes-surprised_3-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/female-eyes-surprised_3-base.png -------------------------------------------------------------------------------- /web/asset/sprites/images/female-eyes-surprised_3-skin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/female-eyes-surprised_3-skin.png -------------------------------------------------------------------------------- /web/asset/sprites/images/female-front_hair-bob-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/female-front_hair-bob-base.png -------------------------------------------------------------------------------- /web/asset/sprites/images/female-front_hair-bob-skin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/female-front_hair-bob-skin.png -------------------------------------------------------------------------------- /web/asset/sprites/images/female-front_hair-curly-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/female-front_hair-curly-base.png -------------------------------------------------------------------------------- /web/asset/sprites/images/female-front_hair-curly-skin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/female-front_hair-curly-skin.png -------------------------------------------------------------------------------- /web/asset/sprites/images/female-headbands-band_1-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/female-headbands-band_1-base.png -------------------------------------------------------------------------------- /web/asset/sprites/images/female-headbands-band_2-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/female-headbands-band_2-base.png -------------------------------------------------------------------------------- /web/asset/sprites/images/female-headbands-band_3-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/female-headbands-band_3-base.png -------------------------------------------------------------------------------- /web/asset/sprites/images/female-mouths-annoyed_1-skin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/female-mouths-annoyed_1-skin.png -------------------------------------------------------------------------------- /web/asset/sprites/images/female-mouths-annoyed_2-skin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/female-mouths-annoyed_2-skin.png -------------------------------------------------------------------------------- /web/asset/sprites/images/female-mouths-frown_1-skin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/female-mouths-frown_1-skin.png -------------------------------------------------------------------------------- /web/asset/sprites/images/female-mouths-frown_2-skin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/female-mouths-frown_2-skin.png -------------------------------------------------------------------------------- /web/asset/sprites/images/female-mouths-frown_3-skin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/female-mouths-frown_3-skin.png -------------------------------------------------------------------------------- /web/asset/sprites/images/female-mouths-frown_4-skin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/female-mouths-frown_4-skin.png -------------------------------------------------------------------------------- /web/asset/sprites/images/female-mouths-frown_5-skin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/female-mouths-frown_5-skin.png -------------------------------------------------------------------------------- /web/asset/sprites/images/female-mouths-laugh_1-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/female-mouths-laugh_1-base.png -------------------------------------------------------------------------------- /web/asset/sprites/images/female-mouths-laugh_1-skin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/female-mouths-laugh_1-skin.png -------------------------------------------------------------------------------- /web/asset/sprites/images/female-mouths-laugh_2-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/female-mouths-laugh_2-base.png -------------------------------------------------------------------------------- /web/asset/sprites/images/female-mouths-laugh_2-skin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/female-mouths-laugh_2-skin.png -------------------------------------------------------------------------------- /web/asset/sprites/images/female-mouths-neutral_1-skin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/female-mouths-neutral_1-skin.png -------------------------------------------------------------------------------- /web/asset/sprites/images/female-neck-apron_1-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/female-neck-apron_1-base.png -------------------------------------------------------------------------------- /web/asset/sprites/images/female-neck-apron_2-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/female-neck-apron_2-base.png -------------------------------------------------------------------------------- /web/asset/sprites/images/female-neck-choker-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/female-neck-choker-base.png -------------------------------------------------------------------------------- /web/asset/sprites/images/female-neck-lab_coat-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/female-neck-lab_coat-base.png -------------------------------------------------------------------------------- /web/asset/sprites/images/female-neck-name_tag-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/female-neck-name_tag-base.png -------------------------------------------------------------------------------- /web/asset/sprites/images/female-outfits-fancy-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/female-outfits-fancy-base.png -------------------------------------------------------------------------------- /web/asset/sprites/images/female-outfits-fancy-skin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/female-outfits-fancy-skin.png -------------------------------------------------------------------------------- /web/asset/sprites/images/female-outfits-pajamas-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/female-outfits-pajamas-base.png -------------------------------------------------------------------------------- /web/asset/sprites/images/female-outfits-pajamas-skin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/female-outfits-pajamas-skin.png -------------------------------------------------------------------------------- /web/asset/sprites/images/female-outfits-shirt_1-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/female-outfits-shirt_1-base.png -------------------------------------------------------------------------------- /web/asset/sprites/images/female-outfits-shirt_2-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/female-outfits-shirt_2-base.png -------------------------------------------------------------------------------- /web/asset/sprites/images/female-outfits-summer-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/female-outfits-summer-base.png -------------------------------------------------------------------------------- /web/asset/sprites/images/female-outfits-summer-skin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/female-outfits-summer-skin.png -------------------------------------------------------------------------------- /web/asset/sprites/images/female-outfits-swim_1-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/female-outfits-swim_1-base.png -------------------------------------------------------------------------------- /web/asset/sprites/images/female-outfits-swim_1-skin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/female-outfits-swim_1-skin.png -------------------------------------------------------------------------------- /web/asset/sprites/images/female-outfits-swim_2-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/female-outfits-swim_2-base.png -------------------------------------------------------------------------------- /web/asset/sprites/images/female-outfits-swim_2-skin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/female-outfits-swim_2-skin.png -------------------------------------------------------------------------------- /web/asset/sprites/images/female-outfits-towel-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/female-outfits-towel-base.png -------------------------------------------------------------------------------- /web/asset/sprites/images/female-outfits-towel-skin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/female-outfits-towel-skin.png -------------------------------------------------------------------------------- /web/asset/sprites/images/female-outfits-wedding-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/female-outfits-wedding-base.png -------------------------------------------------------------------------------- /web/asset/sprites/images/female-outfits-wedding-skin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/female-outfits-wedding-skin.png -------------------------------------------------------------------------------- /web/asset/sprites/images/female-outfits-winter_1-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/female-outfits-winter_1-base.png -------------------------------------------------------------------------------- /web/asset/sprites/images/female-outfits-winter_2-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/female-outfits-winter_2-base.png -------------------------------------------------------------------------------- /web/asset/sprites/images/male-accessories-flower-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/male-accessories-flower-base.png -------------------------------------------------------------------------------- /web/asset/sprites/images/male-accessories-rose_1-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/male-accessories-rose_1-base.png -------------------------------------------------------------------------------- /web/asset/sprites/images/male-accessories-rose_2-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/male-accessories-rose_2-base.png -------------------------------------------------------------------------------- /web/asset/sprites/images/male-back_hair-bob-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/male-back_hair-bob-base.png -------------------------------------------------------------------------------- /web/asset/sprites/images/male-back_hair-bob-highlights.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/male-back_hair-bob-highlights.png -------------------------------------------------------------------------------- /web/asset/sprites/images/male-back_hair-long_1-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/male-back_hair-long_1-base.png -------------------------------------------------------------------------------- /web/asset/sprites/images/male-back_hair-long_2-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/male-back_hair-long_2-base.png -------------------------------------------------------------------------------- /web/asset/sprites/images/male-back_hair-medium-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/male-back_hair-medium-base.png -------------------------------------------------------------------------------- /web/asset/sprites/images/male-back_hair-short_1-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/male-back_hair-short_1-base.png -------------------------------------------------------------------------------- /web/asset/sprites/images/male-back_hair-short_2-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/male-back_hair-short_2-base.png -------------------------------------------------------------------------------- /web/asset/sprites/images/male-back_hair-short_3-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/male-back_hair-short_3-base.png -------------------------------------------------------------------------------- /web/asset/sprites/images/male-back_hair-twin_tail-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/male-back_hair-twin_tail-base.png -------------------------------------------------------------------------------- /web/asset/sprites/images/male-blushes-blush_1-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/male-blushes-blush_1-base.png -------------------------------------------------------------------------------- /web/asset/sprites/images/male-blushes-blush_2-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/male-blushes-blush_2-base.png -------------------------------------------------------------------------------- /web/asset/sprites/images/male-body-body-highlights.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/male-body-body-highlights.png -------------------------------------------------------------------------------- /web/asset/sprites/images/male-body-body-skin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/male-body-body-skin.png -------------------------------------------------------------------------------- /web/asset/sprites/images/male-eyebrows-angry_1-skin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/male-eyebrows-angry_1-skin.png -------------------------------------------------------------------------------- /web/asset/sprites/images/male-eyebrows-angry_2-skin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/male-eyebrows-angry_2-skin.png -------------------------------------------------------------------------------- /web/asset/sprites/images/male-eyebrows-angry_3-skin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/male-eyebrows-angry_3-skin.png -------------------------------------------------------------------------------- /web/asset/sprites/images/male-eyebrows-sad_1-skin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/male-eyebrows-sad_1-skin.png -------------------------------------------------------------------------------- /web/asset/sprites/images/male-eyebrows-sad_2-skin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/male-eyebrows-sad_2-skin.png -------------------------------------------------------------------------------- /web/asset/sprites/images/male-eyes-closed_1-skin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/male-eyes-closed_1-skin.png -------------------------------------------------------------------------------- /web/asset/sprites/images/male-eyes-closed_2-skin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/male-eyes-closed_2-skin.png -------------------------------------------------------------------------------- /web/asset/sprites/images/male-eyes-closed_3-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/male-eyes-closed_3-base.png -------------------------------------------------------------------------------- /web/asset/sprites/images/male-eyes-closed_3-skin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/male-eyes-closed_3-skin.png -------------------------------------------------------------------------------- /web/asset/sprites/images/male-eyes-crying_1-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/male-eyes-crying_1-base.png -------------------------------------------------------------------------------- /web/asset/sprites/images/male-eyes-crying_1-skin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/male-eyes-crying_1-skin.png -------------------------------------------------------------------------------- /web/asset/sprites/images/male-eyes-crying_1-static.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/male-eyes-crying_1-static.png -------------------------------------------------------------------------------- /web/asset/sprites/images/male-eyes-neutral_1-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/male-eyes-neutral_1-base.png -------------------------------------------------------------------------------- /web/asset/sprites/images/male-eyes-neutral_1-skin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/male-eyes-neutral_1-skin.png -------------------------------------------------------------------------------- /web/asset/sprites/images/male-eyes-neutral_1-static.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/male-eyes-neutral_1-static.png -------------------------------------------------------------------------------- /web/asset/sprites/images/male-eyes-neutral_10-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/male-eyes-neutral_10-base.png -------------------------------------------------------------------------------- /web/asset/sprites/images/male-eyes-neutral_10-skin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/male-eyes-neutral_10-skin.png -------------------------------------------------------------------------------- /web/asset/sprites/images/male-eyes-neutral_10-static.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/male-eyes-neutral_10-static.png -------------------------------------------------------------------------------- /web/asset/sprites/images/male-eyes-neutral_11-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/male-eyes-neutral_11-base.png -------------------------------------------------------------------------------- /web/asset/sprites/images/male-eyes-neutral_11-skin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/male-eyes-neutral_11-skin.png -------------------------------------------------------------------------------- /web/asset/sprites/images/male-eyes-neutral_11-static.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/male-eyes-neutral_11-static.png -------------------------------------------------------------------------------- /web/asset/sprites/images/male-eyes-neutral_12-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/male-eyes-neutral_12-base.png -------------------------------------------------------------------------------- /web/asset/sprites/images/male-eyes-neutral_12-skin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/male-eyes-neutral_12-skin.png -------------------------------------------------------------------------------- /web/asset/sprites/images/male-eyes-neutral_12-static.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/male-eyes-neutral_12-static.png -------------------------------------------------------------------------------- /web/asset/sprites/images/male-eyes-neutral_2-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/male-eyes-neutral_2-base.png -------------------------------------------------------------------------------- /web/asset/sprites/images/male-eyes-neutral_2-skin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/male-eyes-neutral_2-skin.png -------------------------------------------------------------------------------- /web/asset/sprites/images/male-eyes-neutral_2-static.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/male-eyes-neutral_2-static.png -------------------------------------------------------------------------------- /web/asset/sprites/images/male-eyes-neutral_3-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/male-eyes-neutral_3-base.png -------------------------------------------------------------------------------- /web/asset/sprites/images/male-eyes-neutral_3-skin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/male-eyes-neutral_3-skin.png -------------------------------------------------------------------------------- /web/asset/sprites/images/male-eyes-neutral_3-static.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/male-eyes-neutral_3-static.png -------------------------------------------------------------------------------- /web/asset/sprites/images/male-eyes-neutral_4-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/male-eyes-neutral_4-base.png -------------------------------------------------------------------------------- /web/asset/sprites/images/male-eyes-neutral_4-skin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/male-eyes-neutral_4-skin.png -------------------------------------------------------------------------------- /web/asset/sprites/images/male-eyes-neutral_4-static.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/male-eyes-neutral_4-static.png -------------------------------------------------------------------------------- /web/asset/sprites/images/male-eyes-neutral_5-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/male-eyes-neutral_5-base.png -------------------------------------------------------------------------------- /web/asset/sprites/images/male-eyes-neutral_5-skin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/male-eyes-neutral_5-skin.png -------------------------------------------------------------------------------- /web/asset/sprites/images/male-eyes-neutral_5-static.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/male-eyes-neutral_5-static.png -------------------------------------------------------------------------------- /web/asset/sprites/images/male-eyes-neutral_6-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/male-eyes-neutral_6-base.png -------------------------------------------------------------------------------- /web/asset/sprites/images/male-eyes-neutral_6-skin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/male-eyes-neutral_6-skin.png -------------------------------------------------------------------------------- /web/asset/sprites/images/male-eyes-neutral_6-static.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/male-eyes-neutral_6-static.png -------------------------------------------------------------------------------- /web/asset/sprites/images/male-eyes-neutral_7-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/male-eyes-neutral_7-base.png -------------------------------------------------------------------------------- /web/asset/sprites/images/male-eyes-neutral_7-skin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/male-eyes-neutral_7-skin.png -------------------------------------------------------------------------------- /web/asset/sprites/images/male-eyes-neutral_7-static.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/male-eyes-neutral_7-static.png -------------------------------------------------------------------------------- /web/asset/sprites/images/male-eyes-neutral_8-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/male-eyes-neutral_8-base.png -------------------------------------------------------------------------------- /web/asset/sprites/images/male-eyes-neutral_8-skin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/male-eyes-neutral_8-skin.png -------------------------------------------------------------------------------- /web/asset/sprites/images/male-eyes-neutral_8-static.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/male-eyes-neutral_8-static.png -------------------------------------------------------------------------------- /web/asset/sprites/images/male-eyes-neutral_9-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/male-eyes-neutral_9-base.png -------------------------------------------------------------------------------- /web/asset/sprites/images/male-eyes-neutral_9-skin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/male-eyes-neutral_9-skin.png -------------------------------------------------------------------------------- /web/asset/sprites/images/male-eyes-neutral_9-static.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/male-eyes-neutral_9-static.png -------------------------------------------------------------------------------- /web/asset/sprites/images/male-eyes-surprised_1-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/male-eyes-surprised_1-base.png -------------------------------------------------------------------------------- /web/asset/sprites/images/male-eyes-surprised_1-skin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/male-eyes-surprised_1-skin.png -------------------------------------------------------------------------------- /web/asset/sprites/images/male-eyes-surprised_2-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/male-eyes-surprised_2-base.png -------------------------------------------------------------------------------- /web/asset/sprites/images/male-eyes-surprised_2-skin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/male-eyes-surprised_2-skin.png -------------------------------------------------------------------------------- /web/asset/sprites/images/male-eyes-surprised_3-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/male-eyes-surprised_3-base.png -------------------------------------------------------------------------------- /web/asset/sprites/images/male-eyes-surprised_3-skin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/male-eyes-surprised_3-skin.png -------------------------------------------------------------------------------- /web/asset/sprites/images/male-front_hair-bob-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/male-front_hair-bob-base.png -------------------------------------------------------------------------------- /web/asset/sprites/images/male-front_hair-bob-skin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/male-front_hair-bob-skin.png -------------------------------------------------------------------------------- /web/asset/sprites/images/male-front_hair-curly-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/male-front_hair-curly-base.png -------------------------------------------------------------------------------- /web/asset/sprites/images/male-front_hair-curly-skin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/male-front_hair-curly-skin.png -------------------------------------------------------------------------------- /web/asset/sprites/images/male-headbands-band_1-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/male-headbands-band_1-base.png -------------------------------------------------------------------------------- /web/asset/sprites/images/male-headbands-band_2-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/male-headbands-band_2-base.png -------------------------------------------------------------------------------- /web/asset/sprites/images/male-headbands-band_3-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/male-headbands-band_3-base.png -------------------------------------------------------------------------------- /web/asset/sprites/images/male-mouths-annoyed_1-skin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/male-mouths-annoyed_1-skin.png -------------------------------------------------------------------------------- /web/asset/sprites/images/male-mouths-annoyed_2-skin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/male-mouths-annoyed_2-skin.png -------------------------------------------------------------------------------- /web/asset/sprites/images/male-mouths-frown_1-skin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/male-mouths-frown_1-skin.png -------------------------------------------------------------------------------- /web/asset/sprites/images/male-mouths-frown_2-skin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/male-mouths-frown_2-skin.png -------------------------------------------------------------------------------- /web/asset/sprites/images/male-mouths-frown_3-skin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/male-mouths-frown_3-skin.png -------------------------------------------------------------------------------- /web/asset/sprites/images/male-mouths-frown_4-skin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/male-mouths-frown_4-skin.png -------------------------------------------------------------------------------- /web/asset/sprites/images/male-mouths-frown_5-skin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/male-mouths-frown_5-skin.png -------------------------------------------------------------------------------- /web/asset/sprites/images/male-mouths-laugh_1-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/male-mouths-laugh_1-base.png -------------------------------------------------------------------------------- /web/asset/sprites/images/male-mouths-laugh_1-skin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/male-mouths-laugh_1-skin.png -------------------------------------------------------------------------------- /web/asset/sprites/images/male-mouths-laugh_2-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/male-mouths-laugh_2-base.png -------------------------------------------------------------------------------- /web/asset/sprites/images/male-mouths-laugh_2-skin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/male-mouths-laugh_2-skin.png -------------------------------------------------------------------------------- /web/asset/sprites/images/male-mouths-neutral_1-skin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/male-mouths-neutral_1-skin.png -------------------------------------------------------------------------------- /web/asset/sprites/images/male-neck-apron_1-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/male-neck-apron_1-base.png -------------------------------------------------------------------------------- /web/asset/sprites/images/male-neck-apron_2-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/male-neck-apron_2-base.png -------------------------------------------------------------------------------- /web/asset/sprites/images/male-neck-choker-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/male-neck-choker-base.png -------------------------------------------------------------------------------- /web/asset/sprites/images/male-neck-lab_coat-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/male-neck-lab_coat-base.png -------------------------------------------------------------------------------- /web/asset/sprites/images/male-neck-name_tag-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/male-neck-name_tag-base.png -------------------------------------------------------------------------------- /web/asset/sprites/images/male-outfits-fancy-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/male-outfits-fancy-base.png -------------------------------------------------------------------------------- /web/asset/sprites/images/male-outfits-fancy-skin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/male-outfits-fancy-skin.png -------------------------------------------------------------------------------- /web/asset/sprites/images/male-outfits-pajamas-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/male-outfits-pajamas-base.png -------------------------------------------------------------------------------- /web/asset/sprites/images/male-outfits-pajamas-skin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/male-outfits-pajamas-skin.png -------------------------------------------------------------------------------- /web/asset/sprites/images/male-outfits-shirt_1-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/male-outfits-shirt_1-base.png -------------------------------------------------------------------------------- /web/asset/sprites/images/male-outfits-shirt_2-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/male-outfits-shirt_2-base.png -------------------------------------------------------------------------------- /web/asset/sprites/images/male-outfits-summer-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/male-outfits-summer-base.png -------------------------------------------------------------------------------- /web/asset/sprites/images/male-outfits-summer-skin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/male-outfits-summer-skin.png -------------------------------------------------------------------------------- /web/asset/sprites/images/male-outfits-swim_1-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/male-outfits-swim_1-base.png -------------------------------------------------------------------------------- /web/asset/sprites/images/male-outfits-swim_1-skin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/male-outfits-swim_1-skin.png -------------------------------------------------------------------------------- /web/asset/sprites/images/male-outfits-swim_2-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/male-outfits-swim_2-base.png -------------------------------------------------------------------------------- /web/asset/sprites/images/male-outfits-swim_2-skin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/male-outfits-swim_2-skin.png -------------------------------------------------------------------------------- /web/asset/sprites/images/male-outfits-towel-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/male-outfits-towel-base.png -------------------------------------------------------------------------------- /web/asset/sprites/images/male-outfits-towel-skin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/male-outfits-towel-skin.png -------------------------------------------------------------------------------- /web/asset/sprites/images/male-outfits-wedding-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/male-outfits-wedding-base.png -------------------------------------------------------------------------------- /web/asset/sprites/images/male-outfits-winter_1-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/male-outfits-winter_1-base.png -------------------------------------------------------------------------------- /web/asset/sprites/images/male-outfits-winter_2-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/images/male-outfits-winter_2-base.png -------------------------------------------------------------------------------- /web/asset/sprites/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/asset/sprites/manifest.json -------------------------------------------------------------------------------- /web/augment.d.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/dots.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/dots.css -------------------------------------------------------------------------------- /web/emitter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/emitter.ts -------------------------------------------------------------------------------- /web/icons/AppIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/icons/AppIcon.tsx -------------------------------------------------------------------------------- /web/icons/DiscordIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/icons/DiscordIcon.tsx -------------------------------------------------------------------------------- /web/icons/NoCharacterIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/icons/NoCharacterIcon.tsx -------------------------------------------------------------------------------- /web/icons/WizardIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/icons/WizardIcon.tsx -------------------------------------------------------------------------------- /web/icons/agnai_bg-circle_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/icons/agnai_bg-circle_2.png -------------------------------------------------------------------------------- /web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/index.html -------------------------------------------------------------------------------- /web/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/index.tsx -------------------------------------------------------------------------------- /web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/manifest.json -------------------------------------------------------------------------------- /web/pages/Admin/Actions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Admin/Actions.tsx -------------------------------------------------------------------------------- /web/pages/Admin/Announcements.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Admin/Announcements.tsx -------------------------------------------------------------------------------- /web/pages/Admin/Config/General.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Admin/Config/General.tsx -------------------------------------------------------------------------------- /web/pages/Admin/Config/Images.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Admin/Config/Images.tsx -------------------------------------------------------------------------------- /web/pages/Admin/Config/Voice.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Admin/Config/Voice.tsx -------------------------------------------------------------------------------- /web/pages/Admin/Configuration.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Admin/Configuration.tsx -------------------------------------------------------------------------------- /web/pages/Admin/Metrics.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Admin/Metrics.tsx -------------------------------------------------------------------------------- /web/pages/Admin/SubscriptionList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Admin/SubscriptionList.tsx -------------------------------------------------------------------------------- /web/pages/Admin/SubscriptionModel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Admin/SubscriptionModel.tsx -------------------------------------------------------------------------------- /web/pages/Admin/Tiers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Admin/Tiers.tsx -------------------------------------------------------------------------------- /web/pages/Admin/UsersPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Admin/UsersPage.tsx -------------------------------------------------------------------------------- /web/pages/Admin/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Admin/types.ts -------------------------------------------------------------------------------- /web/pages/Character/CharacterList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Character/CharacterList.tsx -------------------------------------------------------------------------------- /web/pages/Character/CharacterSchema.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Character/CharacterSchema.tsx -------------------------------------------------------------------------------- /web/pages/Character/ChatList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Character/ChatList.tsx -------------------------------------------------------------------------------- /web/pages/Character/CreateCharacter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Character/CreateCharacter.tsx -------------------------------------------------------------------------------- /web/pages/Character/CreateCharacterForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Character/CreateCharacterForm.tsx -------------------------------------------------------------------------------- /web/pages/Character/DeleteCharacter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Character/DeleteCharacter.tsx -------------------------------------------------------------------------------- /web/pages/Character/DownloadModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Character/DownloadModal.tsx -------------------------------------------------------------------------------- /web/pages/Character/GenerateAvatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Character/GenerateAvatar.tsx -------------------------------------------------------------------------------- /web/pages/Character/ImpersonateModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Character/ImpersonateModal.tsx -------------------------------------------------------------------------------- /web/pages/Character/ImportCharacter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Character/ImportCharacter.tsx -------------------------------------------------------------------------------- /web/pages/Character/ImportChat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Character/ImportChat.tsx -------------------------------------------------------------------------------- /web/pages/Character/card-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Character/card-utils.ts -------------------------------------------------------------------------------- /web/pages/Character/components/CharacterCardView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Character/components/CharacterCardView.tsx -------------------------------------------------------------------------------- /web/pages/Character/components/CharacterFolderView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Character/components/CharacterFolderView.tsx -------------------------------------------------------------------------------- /web/pages/Character/components/CharacterListView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Character/components/CharacterListView.tsx -------------------------------------------------------------------------------- /web/pages/Character/components/VoicePicker/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Character/components/VoicePicker/index.tsx -------------------------------------------------------------------------------- /web/pages/Character/components/characters.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Character/components/characters.css -------------------------------------------------------------------------------- /web/pages/Character/components/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Character/components/types.ts -------------------------------------------------------------------------------- /web/pages/Character/editor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Character/editor.ts -------------------------------------------------------------------------------- /web/pages/Character/form/AdvancedOptions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Character/form/AdvancedOptions.tsx -------------------------------------------------------------------------------- /web/pages/Character/form/AltGreetings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Character/form/AltGreetings.tsx -------------------------------------------------------------------------------- /web/pages/Character/form/AvatarField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Character/form/AvatarField.tsx -------------------------------------------------------------------------------- /web/pages/Character/form/AvatarModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Character/form/AvatarModal.tsx -------------------------------------------------------------------------------- /web/pages/Character/form/MemoryBookPicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Character/form/MemoryBookPicker.tsx -------------------------------------------------------------------------------- /web/pages/Character/form/ReelControl.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Character/form/ReelControl.tsx -------------------------------------------------------------------------------- /web/pages/Character/form/Regenerate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Character/form/Regenerate.tsx -------------------------------------------------------------------------------- /web/pages/Character/form/SpriteModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Character/form/SpriteModal.tsx -------------------------------------------------------------------------------- /web/pages/Character/generate-char.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Character/generate-char.ts -------------------------------------------------------------------------------- /web/pages/Character/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Character/index.tsx -------------------------------------------------------------------------------- /web/pages/Character/port.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Character/port.ts -------------------------------------------------------------------------------- /web/pages/Character/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Character/util.ts -------------------------------------------------------------------------------- /web/pages/Chat/ChatDetail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Chat/ChatDetail.tsx -------------------------------------------------------------------------------- /web/pages/Chat/ChatExport.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Chat/ChatExport.tsx -------------------------------------------------------------------------------- /web/pages/Chat/ChatFooter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Chat/ChatFooter.tsx -------------------------------------------------------------------------------- /web/pages/Chat/ChatMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Chat/ChatMenu.tsx -------------------------------------------------------------------------------- /web/pages/Chat/ChatOptions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Chat/ChatOptions.tsx -------------------------------------------------------------------------------- /web/pages/Chat/ChatSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Chat/ChatSettings.tsx -------------------------------------------------------------------------------- /web/pages/Chat/CreateChatForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Chat/CreateChatForm.tsx -------------------------------------------------------------------------------- /web/pages/Chat/DeleteMsgModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Chat/DeleteMsgModal.tsx -------------------------------------------------------------------------------- /web/pages/Chat/ForcePreset.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Chat/ForcePreset.tsx -------------------------------------------------------------------------------- /web/pages/Chat/MemberModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Chat/MemberModal.tsx -------------------------------------------------------------------------------- /web/pages/Chat/chat-detail.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Chat/chat-detail.css -------------------------------------------------------------------------------- /web/pages/Chat/components/Attachments.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Chat/components/Attachments.tsx -------------------------------------------------------------------------------- /web/pages/Chat/components/ChatAvatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Chat/components/ChatAvatar.tsx -------------------------------------------------------------------------------- /web/pages/Chat/components/ChatGraph.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Chat/components/ChatGraph.tsx -------------------------------------------------------------------------------- /web/pages/Chat/components/ChatPanes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Chat/components/ChatPanes.tsx -------------------------------------------------------------------------------- /web/pages/Chat/components/DeleteChat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Chat/components/DeleteChat.tsx -------------------------------------------------------------------------------- /web/pages/Chat/components/GraphModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Chat/components/GraphModal.tsx -------------------------------------------------------------------------------- /web/pages/Chat/components/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Chat/components/Header.tsx -------------------------------------------------------------------------------- /web/pages/Chat/components/InputBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Chat/components/InputBar.tsx -------------------------------------------------------------------------------- /web/pages/Chat/components/LogProbs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Chat/components/LogProbs.tsx -------------------------------------------------------------------------------- /web/pages/Chat/components/MemoryModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Chat/components/MemoryModal.tsx -------------------------------------------------------------------------------- /web/pages/Chat/components/Message.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Chat/components/Message.css -------------------------------------------------------------------------------- /web/pages/Chat/components/Message.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Chat/components/Message.tsx -------------------------------------------------------------------------------- /web/pages/Chat/components/MessageImages.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Chat/components/MessageImages.tsx -------------------------------------------------------------------------------- /web/pages/Chat/components/MessageMeta.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Chat/components/MessageMeta.tsx -------------------------------------------------------------------------------- /web/pages/Chat/components/MessageShell.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Chat/components/MessageShell.tsx -------------------------------------------------------------------------------- /web/pages/Chat/components/Pending.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Chat/components/Pending.tsx -------------------------------------------------------------------------------- /web/pages/Chat/components/PromptModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Chat/components/PromptModal.tsx -------------------------------------------------------------------------------- /web/pages/Chat/components/SpeechRecognitionRecorder.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Chat/components/SpeechRecognitionRecorder.tsx -------------------------------------------------------------------------------- /web/pages/Chat/components/Visibility.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Chat/components/Visibility.tsx -------------------------------------------------------------------------------- /web/pages/Chat/dev-util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Chat/dev-util.ts -------------------------------------------------------------------------------- /web/pages/Chat/helpers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Chat/helpers.tsx -------------------------------------------------------------------------------- /web/pages/Chat/update-gaslight.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Chat/update-gaslight.ts -------------------------------------------------------------------------------- /web/pages/Chat/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Chat/util.ts -------------------------------------------------------------------------------- /web/pages/Chub/BookList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Chub/BookList.tsx -------------------------------------------------------------------------------- /web/pages/Chub/CharList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Chub/CharList.tsx -------------------------------------------------------------------------------- /web/pages/Chub/Chub.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Chub/Chub.tsx -------------------------------------------------------------------------------- /web/pages/Chub/ChubImportBook.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Chub/ChubImportBook.tsx -------------------------------------------------------------------------------- /web/pages/Chub/ChubImportChar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Chub/ChubImportChar.tsx -------------------------------------------------------------------------------- /web/pages/Chub/ChubItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Chub/ChubItem.tsx -------------------------------------------------------------------------------- /web/pages/Chub/ChubNavigation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Chub/ChubNavigation.tsx -------------------------------------------------------------------------------- /web/pages/Chub/FilterSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Chub/FilterSettings.tsx -------------------------------------------------------------------------------- /web/pages/Chub/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Chub/index.tsx -------------------------------------------------------------------------------- /web/pages/Chub/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Chub/util.ts -------------------------------------------------------------------------------- /web/pages/GenerationPresets/PresetList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/GenerationPresets/PresetList.tsx -------------------------------------------------------------------------------- /web/pages/GenerationPresets/ProviderList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/GenerationPresets/ProviderList.tsx -------------------------------------------------------------------------------- /web/pages/GenerationPresets/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/GenerationPresets/index.tsx -------------------------------------------------------------------------------- /web/pages/Guides/Memory.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Guides/Memory.tsx -------------------------------------------------------------------------------- /web/pages/Guides/NovelAI.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Guides/NovelAI.tsx -------------------------------------------------------------------------------- /web/pages/Guides/Pipeline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Guides/Pipeline.tsx -------------------------------------------------------------------------------- /web/pages/Home/FAQ.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Home/FAQ.tsx -------------------------------------------------------------------------------- /web/pages/Home/home.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Home/home.scss -------------------------------------------------------------------------------- /web/pages/Home/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Home/index.tsx -------------------------------------------------------------------------------- /web/pages/Image/ImageGeneration.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Image/ImageGeneration.tsx -------------------------------------------------------------------------------- /web/pages/Image/ImageModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Image/ImageModal.tsx -------------------------------------------------------------------------------- /web/pages/Image/images.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Image/images.scss -------------------------------------------------------------------------------- /web/pages/Invite/InvitesPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Invite/InvitesPage.tsx -------------------------------------------------------------------------------- /web/pages/Login/OAuth.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Login/OAuth.tsx -------------------------------------------------------------------------------- /web/pages/Login/RemoteLogin.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Login/RemoteLogin.tsx -------------------------------------------------------------------------------- /web/pages/Login/ResetPassword.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Login/ResetPassword.tsx -------------------------------------------------------------------------------- /web/pages/Login/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Login/index.tsx -------------------------------------------------------------------------------- /web/pages/Memory/EditMemory.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Memory/EditMemory.tsx -------------------------------------------------------------------------------- /web/pages/Memory/EditMemoryPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Memory/EditMemoryPage.tsx -------------------------------------------------------------------------------- /web/pages/Memory/EmbedContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Memory/EmbedContent.tsx -------------------------------------------------------------------------------- /web/pages/Memory/Library.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Memory/Library.tsx -------------------------------------------------------------------------------- /web/pages/Memory/Memory.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Memory/Memory.tsx -------------------------------------------------------------------------------- /web/pages/PrivacyPolicy/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/PrivacyPolicy/index.tsx -------------------------------------------------------------------------------- /web/pages/Profile/Checkout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Profile/Checkout.tsx -------------------------------------------------------------------------------- /web/pages/Profile/SubscriptionPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Profile/SubscriptionPage.tsx -------------------------------------------------------------------------------- /web/pages/Profile/TierCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Profile/TierCard.tsx -------------------------------------------------------------------------------- /web/pages/Profile/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Profile/index.tsx -------------------------------------------------------------------------------- /web/pages/PromptTemplates/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/PromptTemplates/index.tsx -------------------------------------------------------------------------------- /web/pages/Saga/Detail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Saga/Detail.tsx -------------------------------------------------------------------------------- /web/pages/Saga/Help.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Saga/Help.tsx -------------------------------------------------------------------------------- /web/pages/Saga/ImportModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Saga/ImportModal.tsx -------------------------------------------------------------------------------- /web/pages/Saga/Input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Saga/Input.tsx -------------------------------------------------------------------------------- /web/pages/Saga/List.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Saga/List.tsx -------------------------------------------------------------------------------- /web/pages/Saga/Pane.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Saga/Pane.tsx -------------------------------------------------------------------------------- /web/pages/Saga/examples.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Saga/examples.ts -------------------------------------------------------------------------------- /web/pages/Saga/state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Saga/state.ts -------------------------------------------------------------------------------- /web/pages/Saga/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Saga/util.ts -------------------------------------------------------------------------------- /web/pages/Scenario/EditScenario.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Scenario/EditScenario.tsx -------------------------------------------------------------------------------- /web/pages/Scenario/EditScenarioEvents.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Scenario/EditScenarioEvents.tsx -------------------------------------------------------------------------------- /web/pages/Scenario/ScenarioList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Scenario/ScenarioList.tsx -------------------------------------------------------------------------------- /web/pages/Scenario/components/DownloadScenarioModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Scenario/components/DownloadScenarioModal.tsx -------------------------------------------------------------------------------- /web/pages/Scenario/components/ImportScenarioModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Scenario/components/ImportScenarioModal.tsx -------------------------------------------------------------------------------- /web/pages/Scenario/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Scenario/index.tsx -------------------------------------------------------------------------------- /web/pages/Settings/AISettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Settings/AISettings.tsx -------------------------------------------------------------------------------- /web/pages/Settings/Image/ImageProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Settings/Image/ImageProvider.tsx -------------------------------------------------------------------------------- /web/pages/Settings/Image/ImageSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Settings/Image/ImageSettings.tsx -------------------------------------------------------------------------------- /web/pages/Settings/Image/NovelImage.tsx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/pages/Settings/Image/ServiceSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Settings/Image/ServiceSettings.tsx -------------------------------------------------------------------------------- /web/pages/Settings/Image/image-context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Settings/Image/image-context.ts -------------------------------------------------------------------------------- /web/pages/Settings/OpenRouterOauth.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Settings/OpenRouterOauth.tsx -------------------------------------------------------------------------------- /web/pages/Settings/PatreonOauth.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Settings/PatreonOauth.tsx -------------------------------------------------------------------------------- /web/pages/Settings/Provider/Manage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Settings/Provider/Manage.tsx -------------------------------------------------------------------------------- /web/pages/Settings/Provider/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Settings/Provider/hooks.ts -------------------------------------------------------------------------------- /web/pages/Settings/Provider/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Settings/Provider/index.tsx -------------------------------------------------------------------------------- /web/pages/Settings/UISettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Settings/UISettings.tsx -------------------------------------------------------------------------------- /web/pages/Settings/Voice/AgnaisticSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Settings/Voice/AgnaisticSettings.tsx -------------------------------------------------------------------------------- /web/pages/Settings/Voice/ElevenLabsSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Settings/Voice/ElevenLabsSettings.tsx -------------------------------------------------------------------------------- /web/pages/Settings/Voice/NovelTtsSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Settings/Voice/NovelTtsSettings.tsx -------------------------------------------------------------------------------- /web/pages/Settings/Voice/VoiceSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Settings/Voice/VoiceSettings.tsx -------------------------------------------------------------------------------- /web/pages/Settings/Voice/WebSpeechSynthesisSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Settings/Voice/WebSpeechSynthesisSettings.tsx -------------------------------------------------------------------------------- /web/pages/Settings/WorkerModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Settings/WorkerModal.tsx -------------------------------------------------------------------------------- /web/pages/Settings/components/ClaudeSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Settings/components/ClaudeSettings.tsx -------------------------------------------------------------------------------- /web/pages/Settings/components/HordeAISettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Settings/components/HordeAISettings.tsx -------------------------------------------------------------------------------- /web/pages/Settings/components/NovelAISettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Settings/components/NovelAISettings.tsx -------------------------------------------------------------------------------- /web/pages/Settings/components/OpenAISettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Settings/components/OpenAISettings.tsx -------------------------------------------------------------------------------- /web/pages/Settings/components/RegisteredSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Settings/components/RegisteredSettings.tsx -------------------------------------------------------------------------------- /web/pages/Settings/components/ThirdPartySettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Settings/components/ThirdPartySettings.tsx -------------------------------------------------------------------------------- /web/pages/Settings/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Settings/index.tsx -------------------------------------------------------------------------------- /web/pages/Settings/ui/ChatUISettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Settings/ui/ChatUISettings.tsx -------------------------------------------------------------------------------- /web/pages/Settings/ui/MessageUISettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Settings/ui/MessageUISettings.tsx -------------------------------------------------------------------------------- /web/pages/Settings/ui/ThemeUISettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Settings/ui/ThemeUISettings.tsx -------------------------------------------------------------------------------- /web/pages/Settings/ui/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Settings/ui/common.ts -------------------------------------------------------------------------------- /web/pages/Settings/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Settings/util.ts -------------------------------------------------------------------------------- /web/pages/Sounds/SoundPreview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Sounds/SoundPreview.tsx -------------------------------------------------------------------------------- /web/pages/Sounds/SoundpackPicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Sounds/SoundpackPicker.tsx -------------------------------------------------------------------------------- /web/pages/Sounds/SoundpackPreview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Sounds/SoundpackPreview.tsx -------------------------------------------------------------------------------- /web/pages/Sounds/VolumeControl.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Sounds/VolumeControl.tsx -------------------------------------------------------------------------------- /web/pages/Sounds/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/Sounds/index.tsx -------------------------------------------------------------------------------- /web/pages/TermsOfService/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pages/TermsOfService/index.tsx -------------------------------------------------------------------------------- /web/pkg/easy-speech.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pkg/easy-speech.d.ts -------------------------------------------------------------------------------- /web/pkg/easy-speech.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/pkg/easy-speech.js -------------------------------------------------------------------------------- /web/shared/Accordian.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/shared/Accordian.tsx -------------------------------------------------------------------------------- /web/shared/Alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/shared/Alert.tsx -------------------------------------------------------------------------------- /web/shared/Audio/audio-source.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/shared/Audio/audio-source.ts -------------------------------------------------------------------------------- /web/shared/Audio/native-speech.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/shared/Audio/native-speech.ts -------------------------------------------------------------------------------- /web/shared/Audio/playable-events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/shared/Audio/playable-events.ts -------------------------------------------------------------------------------- /web/shared/Audio/player.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/shared/Audio/player.ts -------------------------------------------------------------------------------- /web/shared/Audio/remote-speech.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/shared/Audio/remote-speech.ts -------------------------------------------------------------------------------- /web/shared/Audio/soundpack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/shared/Audio/soundpack.ts -------------------------------------------------------------------------------- /web/shared/Audio/speech.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/shared/Audio/speech.ts -------------------------------------------------------------------------------- /web/shared/AutoComplete.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/shared/AutoComplete.tsx -------------------------------------------------------------------------------- /web/shared/Avatar/Builder.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/shared/Avatar/Builder.tsx -------------------------------------------------------------------------------- /web/shared/Avatar/Canvas.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/shared/Avatar/Canvas.tsx -------------------------------------------------------------------------------- /web/shared/Avatar/Container.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/shared/Avatar/Container.tsx -------------------------------------------------------------------------------- /web/shared/Avatar/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/shared/Avatar/hooks.ts -------------------------------------------------------------------------------- /web/shared/AvatarIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/shared/AvatarIcon.tsx -------------------------------------------------------------------------------- /web/shared/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/shared/Button.tsx -------------------------------------------------------------------------------- /web/shared/CallToAction.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/shared/CallToAction.tsx -------------------------------------------------------------------------------- /web/shared/Card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/shared/Card.tsx -------------------------------------------------------------------------------- /web/shared/Carousel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/shared/Carousel.tsx -------------------------------------------------------------------------------- /web/shared/CharacterCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/shared/CharacterCard.tsx -------------------------------------------------------------------------------- /web/shared/CharacterPill.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/shared/CharacterPill.tsx -------------------------------------------------------------------------------- /web/shared/CharacterSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/shared/CharacterSelect.tsx -------------------------------------------------------------------------------- /web/shared/CharacterSelectList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/shared/CharacterSelectList.tsx -------------------------------------------------------------------------------- /web/shared/ColorPicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/shared/ColorPicker.tsx -------------------------------------------------------------------------------- /web/shared/Combobox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/shared/Combobox.tsx -------------------------------------------------------------------------------- /web/shared/Copy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/shared/Copy.tsx -------------------------------------------------------------------------------- /web/shared/CultureCodes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/shared/CultureCodes.ts -------------------------------------------------------------------------------- /web/shared/CustomSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/shared/CustomSelect.tsx -------------------------------------------------------------------------------- /web/shared/Dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/shared/Dialog.tsx -------------------------------------------------------------------------------- /web/shared/Divider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/shared/Divider.tsx -------------------------------------------------------------------------------- /web/shared/Draggable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/shared/Draggable.tsx -------------------------------------------------------------------------------- /web/shared/DropMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/shared/DropMenu.tsx -------------------------------------------------------------------------------- /web/shared/EditEmbedModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/shared/EditEmbedModal.tsx -------------------------------------------------------------------------------- /web/shared/FileInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/shared/FileInput.tsx -------------------------------------------------------------------------------- /web/shared/FileUpload.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/shared/FileUpload.tsx -------------------------------------------------------------------------------- /web/shared/FormLabel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/shared/FormLabel.tsx -------------------------------------------------------------------------------- /web/shared/GlobalFileInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/shared/GlobalFileInput.tsx -------------------------------------------------------------------------------- /web/shared/IsVisible.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/shared/IsVisible.tsx -------------------------------------------------------------------------------- /web/shared/JsonSchema.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/shared/JsonSchema.tsx -------------------------------------------------------------------------------- /web/shared/ListInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/shared/ListInput.tsx -------------------------------------------------------------------------------- /web/shared/Loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/shared/Loading.tsx -------------------------------------------------------------------------------- /web/shared/Maintenance.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/shared/Maintenance.tsx -------------------------------------------------------------------------------- /web/shared/Modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/shared/Modal.tsx -------------------------------------------------------------------------------- /web/shared/Mode/Convertible.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/shared/Mode/Convertible.tsx -------------------------------------------------------------------------------- /web/shared/Mode/Detail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/shared/Mode/Detail.tsx -------------------------------------------------------------------------------- /web/shared/Mode/ModeGenSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/shared/Mode/ModeGenSettings.tsx -------------------------------------------------------------------------------- /web/shared/Mode/convertible.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/shared/Mode/convertible.scss -------------------------------------------------------------------------------- /web/shared/Mode/mode.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/shared/Mode/mode.scss -------------------------------------------------------------------------------- /web/shared/MultiDropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/shared/MultiDropdown.tsx -------------------------------------------------------------------------------- /web/shared/NavBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/shared/NavBar.tsx -------------------------------------------------------------------------------- /web/shared/PageHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/shared/PageHeader.tsx -------------------------------------------------------------------------------- /web/shared/Paginate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/shared/Paginate.tsx -------------------------------------------------------------------------------- /web/shared/PersonaAttributes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/shared/PersonaAttributes.tsx -------------------------------------------------------------------------------- /web/shared/PhraseBias.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/shared/PhraseBias.tsx -------------------------------------------------------------------------------- /web/shared/PresetSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/shared/PresetSelect.tsx -------------------------------------------------------------------------------- /web/shared/PresetSettings/Agnaistic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/shared/PresetSettings/Agnaistic.tsx -------------------------------------------------------------------------------- /web/shared/PresetSettings/Fields.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/shared/PresetSettings/Fields.tsx -------------------------------------------------------------------------------- /web/shared/PresetSettings/General.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/shared/PresetSettings/General.tsx -------------------------------------------------------------------------------- /web/shared/PresetSettings/Memory.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/shared/PresetSettings/Memory.tsx -------------------------------------------------------------------------------- /web/shared/PresetSettings/Prompt.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/shared/PresetSettings/Prompt.tsx -------------------------------------------------------------------------------- /web/shared/PresetSettings/Registered.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/shared/PresetSettings/Registered.tsx -------------------------------------------------------------------------------- /web/shared/PresetSettings/Sliders.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/shared/PresetSettings/Sliders.tsx -------------------------------------------------------------------------------- /web/shared/PresetSettings/ThirdPartyModel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/shared/PresetSettings/ThirdPartyModel.tsx -------------------------------------------------------------------------------- /web/shared/PresetSettings/Toggles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/shared/PresetSettings/Toggles.tsx -------------------------------------------------------------------------------- /web/shared/PresetSettings/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/shared/PresetSettings/index.tsx -------------------------------------------------------------------------------- /web/shared/PresetSettings/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/shared/PresetSettings/settings.ts -------------------------------------------------------------------------------- /web/shared/PresetSettings/types.tsx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/shared/PromptEditor/Definitions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/shared/PromptEditor/Definitions.tsx -------------------------------------------------------------------------------- /web/shared/PromptEditor/SelectTemplate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/shared/PromptEditor/SelectTemplate.tsx -------------------------------------------------------------------------------- /web/shared/PromptEditor/Suggestions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/shared/PromptEditor/Suggestions.tsx -------------------------------------------------------------------------------- /web/shared/PromptEditor/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/shared/PromptEditor/index.tsx -------------------------------------------------------------------------------- /web/shared/PromptEditor/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/shared/PromptEditor/types.ts -------------------------------------------------------------------------------- /web/shared/RadioGroup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/shared/RadioGroup.tsx -------------------------------------------------------------------------------- /web/shared/RangeInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/shared/RangeInput.tsx -------------------------------------------------------------------------------- /web/shared/Redirect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/shared/Redirect.tsx -------------------------------------------------------------------------------- /web/shared/Select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/shared/Select.tsx -------------------------------------------------------------------------------- /web/shared/Selectable/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/shared/Selectable/index.tsx -------------------------------------------------------------------------------- /web/shared/ServiceWarning.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/shared/ServiceWarning.tsx -------------------------------------------------------------------------------- /web/shared/SideDrawer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/shared/SideDrawer/index.tsx -------------------------------------------------------------------------------- /web/shared/SideDrawer/side-drawer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/shared/SideDrawer/side-drawer.css -------------------------------------------------------------------------------- /web/shared/Slot.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/shared/Slot.tsx -------------------------------------------------------------------------------- /web/shared/Sortable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/shared/Sortable.tsx -------------------------------------------------------------------------------- /web/shared/Tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/shared/Tabs.tsx -------------------------------------------------------------------------------- /web/shared/TagInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/shared/TagInput.tsx -------------------------------------------------------------------------------- /web/shared/TagSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/shared/TagSelect.tsx -------------------------------------------------------------------------------- /web/shared/TextInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/shared/TextInput.tsx -------------------------------------------------------------------------------- /web/shared/Toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/shared/Toggle.tsx -------------------------------------------------------------------------------- /web/shared/Tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/shared/Tooltip.tsx -------------------------------------------------------------------------------- /web/shared/adapter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/shared/adapter.ts -------------------------------------------------------------------------------- /web/shared/avatar-util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/shared/avatar-util.ts -------------------------------------------------------------------------------- /web/shared/avatar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/shared/avatar.css -------------------------------------------------------------------------------- /web/shared/colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/shared/colors.ts -------------------------------------------------------------------------------- /web/shared/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/shared/hooks.ts -------------------------------------------------------------------------------- /web/shared/image-resize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/shared/image-resize.ts -------------------------------------------------------------------------------- /web/shared/markdown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/shared/markdown.ts -------------------------------------------------------------------------------- /web/shared/modal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/shared/modal.css -------------------------------------------------------------------------------- /web/shared/toggle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/shared/toggle.css -------------------------------------------------------------------------------- /web/shared/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/shared/util.ts -------------------------------------------------------------------------------- /web/store/admin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/store/admin.ts -------------------------------------------------------------------------------- /web/store/announce.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/store/announce.ts -------------------------------------------------------------------------------- /web/store/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/store/api.ts -------------------------------------------------------------------------------- /web/store/attachments.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/store/attachments.ts -------------------------------------------------------------------------------- /web/store/audio.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/store/audio.ts -------------------------------------------------------------------------------- /web/store/character.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/store/character.ts -------------------------------------------------------------------------------- /web/store/chat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/store/chat.ts -------------------------------------------------------------------------------- /web/store/chub.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/store/chub.ts -------------------------------------------------------------------------------- /web/store/context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/store/context.tsx -------------------------------------------------------------------------------- /web/store/create.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/store/create.ts -------------------------------------------------------------------------------- /web/store/data/bot-generate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/store/data/bot-generate.ts -------------------------------------------------------------------------------- /web/store/data/chars.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/store/data/chars.ts -------------------------------------------------------------------------------- /web/store/data/chats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/store/data/chats.ts -------------------------------------------------------------------------------- /web/store/data/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/store/data/common.ts -------------------------------------------------------------------------------- /web/store/data/image.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/store/data/image.ts -------------------------------------------------------------------------------- /web/store/data/inference.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/store/data/inference.ts -------------------------------------------------------------------------------- /web/store/data/md5.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/store/data/md5.ts -------------------------------------------------------------------------------- /web/store/data/memory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/store/data/memory.ts -------------------------------------------------------------------------------- /web/store/data/messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/store/data/messages.ts -------------------------------------------------------------------------------- /web/store/data/pdf-import.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/store/data/pdf-import.ts -------------------------------------------------------------------------------- /web/store/data/presets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/store/data/presets.ts -------------------------------------------------------------------------------- /web/store/data/saga.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/store/data/saga.ts -------------------------------------------------------------------------------- /web/store/data/scenario.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/store/data/scenario.ts -------------------------------------------------------------------------------- /web/store/data/storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/store/data/storage.ts -------------------------------------------------------------------------------- /web/store/data/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/store/data/user.ts -------------------------------------------------------------------------------- /web/store/data/voice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/store/data/voice.ts -------------------------------------------------------------------------------- /web/store/embeddings/cache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/store/embeddings/cache.ts -------------------------------------------------------------------------------- /web/store/embeddings/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/store/embeddings/index.ts -------------------------------------------------------------------------------- /web/store/embeddings/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/store/embeddings/types.ts -------------------------------------------------------------------------------- /web/store/embeddings/worker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/store/embeddings/worker.ts -------------------------------------------------------------------------------- /web/store/event.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/store/event.ts -------------------------------------------------------------------------------- /web/store/flags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/store/flags.ts -------------------------------------------------------------------------------- /web/store/images.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/store/images.ts -------------------------------------------------------------------------------- /web/store/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/store/index.ts -------------------------------------------------------------------------------- /web/store/invites.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/store/invites.ts -------------------------------------------------------------------------------- /web/store/memory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/store/memory.ts -------------------------------------------------------------------------------- /web/store/message.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/store/message.ts -------------------------------------------------------------------------------- /web/store/page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/store/page.ts -------------------------------------------------------------------------------- /web/store/preset-context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/store/preset-context.tsx -------------------------------------------------------------------------------- /web/store/presets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/store/presets.ts -------------------------------------------------------------------------------- /web/store/prompt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/store/prompt.ts -------------------------------------------------------------------------------- /web/store/response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/store/response.ts -------------------------------------------------------------------------------- /web/store/scenario.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/store/scenario.ts -------------------------------------------------------------------------------- /web/store/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/store/settings.ts -------------------------------------------------------------------------------- /web/store/socket.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/store/socket.ts -------------------------------------------------------------------------------- /web/store/tag.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/store/tag.ts -------------------------------------------------------------------------------- /web/store/toasts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/store/toasts.ts -------------------------------------------------------------------------------- /web/store/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/store/user.ts -------------------------------------------------------------------------------- /web/store/voice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/store/voice.ts -------------------------------------------------------------------------------- /web/subnav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/subnav.tsx -------------------------------------------------------------------------------- /web/tailwind.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/tailwind.css -------------------------------------------------------------------------------- /web/tours/character.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/tours/character.ts -------------------------------------------------------------------------------- /web/tours/chat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/tours/chat.ts -------------------------------------------------------------------------------- /web/tours/home.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/tours/home.ts -------------------------------------------------------------------------------- /web/tours/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/tours/index.ts -------------------------------------------------------------------------------- /web/tours/profile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/tours/profile.ts -------------------------------------------------------------------------------- /web/tours/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/tours/util.ts -------------------------------------------------------------------------------- /web/variables.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agnaistic/agnai/HEAD/web/variables.css -------------------------------------------------------------------------------- /web/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | --------------------------------------------------------------------------------