Commit graph

48 commits

Author SHA1 Message Date
Anil Chandra Naidu Matcha
927e8600d8
Update alternative projects in README
Replaced Open-Poe AI alternative with Open-Lovart AI alternative in README.
2026-05-07 01:01:26 +05:30
Anil Chandra Naidu Matcha
1fffdae326
Fix Discord link in README
Updated Discord link for community support.
2026-05-04 23:20:56 +05:30
Anil Chandra Naidu Matcha
f97bb8708d
Refactor README for clarity and conciseness
Removed duplicate community Discord link and updated project descriptions.
2026-05-01 15:58:05 +05:30
Anil Matcha
894b520516 docs(readme): clarify Quick Start — require npm run setup, surface electron:dev, add pages-dir troubleshooting
Issue #131 reported `next dev` failing with "Couldn't find a `pages` directory"
on a fresh clone. Root cause is the README pointing users to `npm install &&
npm run dev` while the project actually needs `npm run setup` (which inits
git submodules + builds workspace packages) and most desktop users should be
running `npm run electron:dev` rather than the Next.js hosted-web entry.

- Lead Quick Start with a callout that prebuilt installers exist for non-contributors.
- Replace `npm install` with `npm run setup` and explain why.
- List both dev entry points (electron:dev for desktop, dev for hosted web).
- Add a troubleshooting note for the exact pages-dir error from #131.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-04-29 13:24:01 +05:30
Anil Matcha
9a742f6645 release: v1.0.9 — local Wan2GP video generation and uploads
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-04-27 19:57:50 +05:30
Anil Matcha
35b7103c26 release: v1.0.8 — Windows build restored after Tailwind regression
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-04-27 10:38:57 +05:30
Anil Matcha
84ca594b92 README: add AI-Youtube-Shorts-Generator to Related projects as Opus Clip alternative
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-04-26 07:18:10 +05:30
Anil Matcha
6e70b876f6 docs(readme): bump download links to v1.0.7
The download table was still pointing at v1.0.2 — the version that hides
the Settings button behind an unlabeled key icon (root cause of #113).
Mac links updated to v1.0.7 (Wan2GP + Dreamshaper URL fix). Windows and
Linux fall back to v1.0.6 since this release ships Mac-only.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-04-26 02:14:36 +05:30
Anil Matcha
c5a3b55c95 docs(readme): document both local engines + add SD 1.5 sanity-test recipe
- Local Inference section split into two engines (sd.cpp bundled + Wan2GP
  BYO server), with a comparison table explaining when each fits.
- Wan2GP setup spelled out: clone, install, run with --listen, paste URL
  into Settings → Local Models. Notes that Wan2GP is CUDA/ROCm-only on the
  server side and explains why a Mac user might still want it.
- Hardware Notes flags that Z-Image is known to hang on base 8 GB Macs;
  recommends SD 1.5 there. Adds expected sd.cpp per-step timing on M2 with
  Metal so users can spot a CPU-fallback regression.
- New "Verifying the SD 1.5 path" subsection: a 3-step curl + sd-cli
  invocation that bypasses the UI and confirms the engine works end-to-end.
  Mirrors what the Electron path issues, so it doubles as a release sanity
  check.
- Features list line for Local Inference rewritten to mention both engines.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-04-26 02:13:58 +05:30
Anil Chandra Naidu Matcha
9444d27969
Remove GPT-Image-2 prompts reference from README
Removed GPT-Image-2 prompts section from README.
2026-04-25 23:31:45 +05:30
Anil Matcha
abfcd2ce49 docs: clone with submodules and run submodule init in setup
Fixes #110 — workflow-builder and ai-agent live in git submodules
(packages/Vibe-Workflow, packages/Open-Poe-AI). A plain `git clone`
leaves those directories empty, so `next build` fails to resolve
the `ai-agent` and `workflow-builder` workspace imports.

- README: instruct `git clone --recurse-submodules` and document
  the `git submodule update --init --recursive` fallback.
- package.json: prepend submodule init to the `setup` script so
  `npm run setup` works on a fresh clone too.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-04-25 10:24:42 +05:30
Anil Chandra Naidu Matcha
11679c387d
Update README to correct AI names 2026-04-24 09:46:08 +05:30
Anil Matcha
16369973b0 Add early-access callout for Awesome HappyHorse 1.0 API & Prompts
Feature Alibaba's Happy Horse 1.0 (#1 ranked AI video model) above the
existing GPT-Image-2 callout, linking to the Python wrapper + curated
community prompt library.
2026-04-24 09:33:42 +05:30
Anil Chandra Naidu Matcha
2b70cbad73
Fix formatting and enhance README content
Corrected formatting and improved clarity in the README.
2026-04-24 09:10:22 +05:30
Anil Chandra Naidu Matcha
e56d0041e9
Add related projects to README
Added related projects section with links to alternatives.
2026-04-24 09:09:55 +05:30
Anil Matcha
e9f6d3458a docs: promote Generative-Media-Skills for agent-driven automation
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-04-23 13:25:38 +05:30
octo-patch
bf32a393cc feat: add MiniMax image-01 T2I model and document MiniMax provider support
- Add minimax-image-01 to t2iModels in src/lib/models.js and
  packages/studio/src/models.js (8 aspect ratios, up to 4 images per
  request, 1500-char prompt)
- Add minimax-image-01 entry to models_dump.json (t2i section)
- Update README: list MiniMax Image 01 in newly-added image models
  and call out existing MiniMax Hailuo 02/2.3 video model support
- Add scripts/test_minimax_provider.js: validates model registration
  and optionally runs a live API smoke test (MUAPI_KEY env var)

MiniMax Hailuo 02/2.3 T2V and I2V models were already present;
this commit brings MiniMax image generation to feature parity.
2026-04-22 23:41:38 +08:00
Anil Matcha
8cf83b1b45 docs: document local model inference feature in README
Add "Local Model Inference" section covering supported models (Z-Image Turbo/Base, Dreamshaper, Realistic Vision, Anything v5, SDXL), auxiliary file requirements for Z-Image, step-by-step usage, and hardware notes for Metal GPU on Apple Silicon. Also add Local Inference bullet to the Features list.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-22 17:47:17 +05:30
Anil Matcha
aa6917e339 release: v1.0.2 — rename Seedance 2.0 models to SD 2, fix Windows build size
- Rename Seedance 2.0 → SD 2 (t2v, extend, i2v models)
- Bump version to 1.0.2
- Update README download links to v1.0.2
- Fix afterPack.js to strip platform-inappropriate @next/swc native binaries,
  reducing Windows installer from ~739 MB unpacked to ~144 MB
- Windows build now targets x64 only (arm64 cross-compile via Wine is broken on macOS)

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-22 06:57:25 +05:30
Anil Matcha
4c48d58159 docs: add Workflow Studio section with Vibe Workflow link
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-22 00:58:30 +05:30
Anil Chandra Naidu Matcha
9f858c0ba8 Add link to Awesome-GPT-Image-2-API-Prompts at top 2026-04-21 17:22:35 +05:30
Anil Chandra Naidu Matcha
6f9cdeeb47
Add follow creator section to README
Added a section to follow the creator for updates.
2026-04-16 10:24:28 +05:30
Anil Matcha
b92bdc5326 docs: highlight uncensored and unrestricted capabilities in README 2026-04-16 09:33:49 +05:30
Assem ElQersh
0f4ae55b37 feat: add Linux (Ubuntu) desktop build support
- Add electron:build:linux script and AppImage + .deb targets in package.json
- Fix Electron main.js: ESM → CommonJS, remove macOS-only titleBarStyle on Linux
- Fix createInlineInstructions undefined error in ImageStudio.js
- Fix Cinema Studio asset paths (absolute → relative) for Electron file:// protocol
- Add AppArmor profile for Ubuntu 24.04+ user namespace sandbox fix
- Add Ubuntu install docs and sandbox workaround to README
2026-04-15 00:49:44 +02:00
Anil Chandra Naidu Matcha
6c47f0dca3
Update README.md 2026-04-14 10:48:13 +05:30
Anil Chandra Naidu Matcha
963cc7d2e5
Update README to clarify project affiliations
Clarified project independence and third-party affiliations.
2026-04-13 13:24:37 +05:30
Anil Chandra Naidu Matcha
171f02c05f
Revise README to mention Freepik, Krea, and Openart AI
Updated README to include additional alternatives and clarify features.
2026-04-13 00:19:30 +05:30
Anil Matcha
ebcddfa187 Rename project from Open-Higgsfield-AI to Open-Generative-AI
Update all references across source files, config, and docs — including
page titles, app name, package name, Electron window title, and release
asset URLs.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-13 00:14:45 +05:30
Anil Chandra Naidu Matcha
5925256c0a
Fix hosted link and add Discord community info
Updated hosted version link and added community section.
2026-04-12 15:29:14 +05:30
Anil Chandra Naidu Matcha
cf0d84d26e
Update hosted version link in README 2026-04-11 21:58:57 +05:30
Anil Matcha
f4c8b3aae3 docs: add hosted version link at muapi.ai/open-higgsfield-ai
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-21 19:30:56 +05:30
Anil Matcha
df7d2dd9a7 Convert to Next.js monorepo with shared studio component library
- Migrated from Vite/vanilla JS to Next.js App Router
- Added packages/studio: shared React component library (ImageStudio, VideoStudio, LipSyncStudio, CinemaStudio)
- BYOK flow via StandaloneShell (localStorage API key) + ApiKeyModal
- Fixed dropdown clipping caused by overflow-x-auto on controls row
- Fixed dropdown background to solid bg-[#111] (was glass/transparent)
- Renamed Cinema tab to Cinema Studio
- Updated README: architecture, quick start port (3000), tech stack

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-21 10:47:00 +05:30
Anil Matcha
a6860e71cc Update macOS install instructions for Gatekeeper bypass 2026-03-18 12:33:33 +05:30
Anil Matcha
71a53c9451 Add macOS and Windows installation troubleshooting to README 2026-03-18 12:20:56 +05:30
Anil Matcha
9d0bc2580e Add desktop app download links to README and fix build config
- Add download table for macOS and Windows installers in README
- Add desktop app build instructions to Quick Start section
- Move electron-builder output to release/ to avoid Vite dist conflicts
- Add electron:build:all script to build all platforms in one pass
2026-03-18 12:00:00 +05:30
Anil Matcha
f26506e9fd Add 15s duration and all modes to Grok Imagine video models
- grok-imagine-text-to-video: duration [6, 10] → [6, 10, 15], add mode field (fun/normal/spicy)
- grok-imagine-image-to-video: duration [6, 10] → [6, 10, 15]
- Update README with Grok Imagine T2V and I2V entries
2026-03-13 18:59:20 +05:30
Anil Matcha
d05c8448e8 Add Lip Sync Studio with 9 models (Infinite Talk, Wan 2.2, LTX, Sync, LatentSync, Creatify, Veed) 2026-03-12 17:41:17 +05:30
Anil Matcha
d707604afe Add Seedance 2.0 i2v and video extend support
- Add seedance-v2.0-i2v to i2vModels with images_list field, aspect ratio, duration (5/10/15s), and quality controls
- Add seedance-v2.0-extend to t2vModels for seamlessly continuing Seedance 2.0 generations
- Auto-store request_id after each Seedance 2.0 t2v/i2v generation
- Show Extend button on canvas after Seedance 2.0 generation; clicking it pre-selects the extend model and auto-passes stored request_id
- Add quality dropdown control to VideoStudio for models that support it
- Show extend banner when extend model is active; optional prompt guides the continuation
- Restore extend context when browsing Seedance 2.0 history entries
- Make prompt optional in muapi.generateVideo and forward request_id for extend endpoint
- Update README with new models and features
2026-03-04 15:11:09 +05:30
Anil Matcha
492f8bf693 Add Seedance 2.0 text-to-video model
Integrates ByteDance's Seedance v2.0 into Video Studio with support for
aspect ratios (16:9, 9:16, 4:3, 3:4), durations (5/10/15s), and quality
(basic/high). Updates README to reflect the new model.
2026-03-02 15:24:29 +05:30
Anil Matcha
a65bdb2a77 Add Nano Banana 2, Seedream 5.0 models with multi-image input support
- Add nano-banana-2 and seedream-5.0 to t2i models
- Add nano-banana-2-edit and seedream-5.0-edit to i2i models
- Add maxImages to 22 i2i models based on schema maxItems (up to 14 for nano-banana-2-edit)
- UploadPicker: multi-select mode with order badges, batch file upload, count/+ trigger badge
- ImageStudio: track uploadedImageUrls[], setMaxImages() on model switch, pass images_list to API
- muapi: pass quality and images_list array params in generateImage/generateI2I
- Expose quality/resolution controls for t2i models (nano-banana-2, seedream-5.0)
- Update README with new models, multi-image picker docs, and comparison table
2026-02-27 19:03:06 +05:30
Anil Matcha
b61de547e5 Update README with Image Studio, Video Studio, upload history, and 200+ model support 2026-02-23 23:12:27 +05:30
Anil Matcha
a205e303a0 Improved README and description 2026-02-17 23:46:16 +05:30
Anil Matcha
69f7dce699 Added comprehensive Medium guide 2026-02-15 07:30:05 +05:30
Anil Matcha
f9adf55aa4 Cinema studio feature supported 2026-02-14 15:02:51 +05:30
Anil Matcha
c80b21b9e0 docs: Update README hero with high-quality animated studio demo 2026-02-13 15:39:23 +05:30
Anil Matcha
50f5bb36a0 docs: Add preview images and demo video to README 2026-02-13 15:36:34 +05:30
Anil Matcha
c8060de5c2 docs: Update README with project features, architecture and setup instructions 2026-02-13 15:27:20 +05:30
Anil Matcha
5db9f98e99 Initial commit: Scaffold Open-Higgsfield-ai with Vite and README 2026-02-10 02:06:16 +05:30