Production Release - September 2025 - #562
Merged
Merged
Conversation
Adds an index to the executive dashboard to manage document stores
Summary This PR introduces several key upgrades and new features across core generative AI model integrations, along with enhancements for image generation, user context handling, and prompt-level caching. Key Changes 1. Model Registry Updates - Added gemini-2.5-flash-image-preview model for image generation and understanding. - Added support for gpt-5, gpt-5-mini, and gpt-5-nano models with explicit cost metadata. - Default models for Google Gemini and Anthropic Claude updated: - Gemini default: gemini-2.5-flash - Anthropic default: claude-sonnet-4-0 2. Google Generative AI – Image Generation Integration - Response Modalities: Added responseModalities input and UI option. Supports TEXT and IMAGE outputs. - User Context: Model initialization now propagates user organization, ID, and email (for image upload/auth). - Image Handling: - Auto-uploads generated images to storage, organized by user/org. - Injects image Markdown into final output (supports streaming and non-streaming). - Safely builds public URLs for generated images. 3. Chat Model Inputs & User Experience - OpenAI Node: Added promptCacheKey input for prompt-level cache control, improving cache efficiency and cost management. - Various code and interface refinements to surface new modalities, credential usage, and context passing 4. File Upload & Image Upload Permission Simplified isImageUploadAllowed logic: chat models with allowImageUploads: true will correctly enable image upload in the UI, regardless of specific node names. Motivation & Context - Adds early support for the latest Google Gemini and GPT-5 models. - Enables direct image generation and output via Gemini, including correct inline preview for users. - Improves auditability and compliance of generated assets by tying uploads to user/org context. - Provides finer control over OpenAI prompt-caching to optimize costs. Testing - Validated image generation and upload using gemini-2.5-flash-image-preview, confirming correct Markdown injection and download links. - Verified prompt cache hits with OpenAI using custom promptCacheKey. - Confirmed new models selectable and default as expected for Gemini/Anthropic. - Image upload UI toggle respects new chat model configuration.
This commit introduces significant enhancements to the AAIToolAgent, including the addition of an output parser for structured output. The agent now supports parsing its output into a structured format, improving the usability and flexibility of the tool. Key changes include: - Updated constructor to include an optional output parser input. - Enhanced the run method to initialize and utilize the output parser. - Added methods for injecting format instructions into the system message and parsing the output. These improvements aim to provide a more robust and user-friendly experience for users leveraging the Tool Agent in the Answer tab.
Co-authored-by: Cameron Taylor <50385537+ct3685@users.noreply.github.com>
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting
maxtechera
temporarily deployed
to
staging - aai-unified2-flowise-moonstruck
September 30, 2025 23:23 — with
Render
Inactive
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
This PR merges the latest staging changes into production, including:
Test Plan