mirror of
https://github.com/moeru-ai/airi.git
synced 2026-08-29 12:12:24 +00:00
Some checks are pending
CI / Unit Test (push) Waiting to run
CI / Type Check (push) Waiting to run
CI / Check Provenance (push) Waiting to run
CI / Lint (push) Waiting to run
CI / Build Test (stage-tamagotchi) (push) Waiting to run
CI / Build Test (stage-tamagotchi-godot) (push) Waiting to run
CI / Build Test (stage-web) (push) Waiting to run
CI / Build Test (ui-loading-screens) (push) Waiting to run
CI / Build Test (ui-transitions) (push) Waiting to run
Cloudflare Pages (Auth UI) / Deploy - ui-server-auth (push) Waiting to run
Cloudflare Workers / Deploy - stage-web (push) Waiting to run
Update Nix pnpmDeps Hash / update (push) Waiting to run
14 lines
445 B
SQL
14 lines
445 B
SQL
CREATE TABLE "voice_packs" (
|
|
"id" text PRIMARY KEY NOT NULL,
|
|
"name" text NOT NULL,
|
|
"description" text,
|
|
"provider" text NOT NULL,
|
|
"model" text NOT NULL,
|
|
"voice_id" text NOT NULL,
|
|
"tts_model_id" text NOT NULL,
|
|
"params" jsonb DEFAULT '{}'::jsonb NOT NULL,
|
|
"cost_multiplier" real DEFAULT 1 NOT NULL,
|
|
"enabled" boolean DEFAULT true NOT NULL,
|
|
"created_at" timestamp DEFAULT now() NOT NULL,
|
|
"updated_at" timestamp DEFAULT now() NOT NULL
|
|
);
|