Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions .github/opencode-memory/features.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,16 +20,16 @@ Repository configured with OpenCode memory and automated sync workflow.

---

## 2026-01-14 - New Featured Models Added
## 2026-01-21 - New Featured/Popular Models Added

- Model ID: `black-forest-labs/flux-2-pro`
- Model ID: `google/nano-banana-pro`
- Namespace: `image.generate`
- Description: FLUX.2 Pro - Black Forest Labs' most advanced image generation model with multi-reference editing and precise control
- Description: Google's state-of-the-art image generation and editing model with advanced capabilities

- Model ID: `black-forest-labs/flux-2-flex`
- Model ID: `black-forest-labs/flux-2-klein-4b`
- Namespace: `image.generate`
- Description: FLUX.2 Flex - Max-quality image generation with support for ten reference images
- Description: FLUX.2 Klein - Very fast image generation model, 4 steps distilled for sub-second inference

- Model ID: `google/veo-3.1`
- Namespace: `video.generate`
- Description: Google's improved video model with higher-fidelity video, context-aware audio, reference image and last frame support
- Model ID: `google/gemini-3-pro`
- Namespace: `text.generate`
- Description: Google's most advanced reasoning Gemini model for complex tasks
20 changes: 20 additions & 0 deletions src/nodetool/nodes/replicate/gencode.py
Original file line number Diff line number Diff line change
Expand Up @@ -1102,6 +1102,26 @@
"namespace": "video.generate",
"return_type": VideoRef,
},
# === 2026-01-21 - New Featured/Popular Models ===
{
"model_id": "google/nano-banana-pro",
"node_name": "Nano_Banana_Pro",
"namespace": "image.generate",
"return_type": ImageRef,
"overrides": {"image": ImageRef, "mask": ImageRef},
},
{
"model_id": "black-forest-labs/flux-2-klein-4b",
"node_name": "Flux_2_Klein_4B",
"namespace": "image.generate",
"return_type": ImageRef,
},
{
"model_id": "google/gemini-3-pro",
"node_name": "Gemini_3_Pro",
"namespace": "text.generate",
"return_type": str,
},
]

if __name__ == "__main__":
Expand Down
Loading