Increase VectorEngine timeouts and add image UI
Add VectorEngine image generation config and raise request timeouts (env + scripts) from 180000 to 1000000ms. Introduce a reusable CreativeImageInputPanel component with tests and wire up mobile keyboard-focus helpers; update generation views and related tests (CustomWorldGenerationView, BarkBattle editor, Match3D, Puzzle flows). Improve API error handling / VectorEngine request guidance (packages/shared http.ts and docs), and apply multiple backend/frontend fixes for puzzle/match3d/prompt handling. Also include extensive docs and decision-log updates describing UI/UX decisions and verification steps.
This commit is contained in:
4
.codex/logs/run-dev-web-final.ps1
Normal file
4
.codex/logs/run-dev-web-final.ps1
Normal file
@@ -0,0 +1,4 @@
|
||||
Set-Location 'C:\Genarrative'
|
||||
$env:RUST_SERVER_TARGET = 'http://127.0.0.1:8082'
|
||||
$env:GENARRATIVE_RUNTIME_SERVER_TARGET = 'http://127.0.0.1:8082'
|
||||
npm.cmd run dev:web *> 'C:\Genarrative\.codex\logs\dev-web-final.out.log'
|
||||
@@ -8,7 +8,7 @@ const __dirname = path.dirname(__filename);
|
||||
const skillRoot = path.resolve(__dirname, '..');
|
||||
const repoRoot = path.resolve(skillRoot, '..', '..', '..');
|
||||
const defaultOutDir = path.join(repoRoot, 'public', 'anthro-cat-illustrations');
|
||||
const defaultTimeoutMs = 180000;
|
||||
const defaultTimeoutMs = 1000000;
|
||||
|
||||
const prompts = [
|
||||
{
|
||||
|
||||
@@ -13,7 +13,7 @@ const promptsPath = path.join(
|
||||
'puzzle-template-prompts.json',
|
||||
);
|
||||
const defaultOutDir = path.join(repoRoot, 'public', 'puzzle-creation-templates');
|
||||
const defaultTimeoutMs = 180000;
|
||||
const defaultTimeoutMs = 1000000;
|
||||
|
||||
const args = new Map();
|
||||
for (let index = 2; index < process.argv.length; index += 1) {
|
||||
|
||||
Reference in New Issue
Block a user