Conversation
…ld all of our additional files
There was a problem hiding this comment.
Pull Request Overview
This PR adds YAML configuration files for image generation workflows and parameters, supporting both Dall‑E and Deep AI APIs.
- Adds workflow configuration (imageWorkflow.yaml) for Dall‑E with API details
- Adds image generation parameter configuration (imagegen.yaml) for Dall‑E
- Adds corresponding Deep AI configuration files for workflow and image generation
Reviewed Changes
Copilot reviewed 4 out of 4 changed files in this pull request and generated 5 comments.
| File | Description |
|---|---|
| additional_models/Dall-E/imageWorkflow.yaml | Workflow config for Dall‑E image generation |
| additional_models/Dall-E/imagegen.yaml | Parameter config for Dall‑E image generation |
| additional_models/deep_ai/imageWorkflow.yaml | Workflow config for Deep AI image generation |
| additional_models/deep_ai/imagegen.yaml | Parameter config for Deep AI image generation |
| response_path: "data.url" | ||
| response_format: "url" | ||
| file_id_path: "created" | ||
| file_extention: "png" |
There was a problem hiding this comment.
Typo in the key 'file_extention'; consider renaming it to 'file_extension' to improve clarity and consistency.
| file_extention: "png" | |
| file_extension: "png" |
| response_path: "output_url" | ||
| response_format: "url" | ||
| file_id_path: "id" | ||
| file_extention: "jpg" |
There was a problem hiding this comment.
Typo in the key 'file_extention'; consider renaming it to 'file_extension' to ensure consistency.
| file_extention: "jpg" | |
| file_extension: "jpg" |
| #Paramaters for OpenAI's Image Generation API | ||
| #The APIConfig struct assumes that each required and optional paramater has a description |
There was a problem hiding this comment.
Typo in the comment; 'Paramaters' should be corrected to 'Parameters'.
| #Paramaters for OpenAI's Image Generation API | |
| #The APIConfig struct assumes that each required and optional paramater has a description | |
| #Parameters for OpenAI's Image Generation API | |
| #The APIConfig struct assumes that each required and optional parameter has a description |
| #Paramaters for OpenAI's Image Generation API | ||
| #The APIConfig struct assumes that each required and optional paramater has a description |
There was a problem hiding this comment.
Typo in the comment; 'paramater' should be corrected to 'parameter'.
| #Paramaters for OpenAI's Image Generation API | |
| #The APIConfig struct assumes that each required and optional paramater has a description | |
| #Parameters for OpenAI's Image Generation API | |
| #The APIConfig struct assumes that each required and optional parameter has a description |
| size: | ||
| default: "1024x1024" | ||
| description: "The size of the generated images." | ||
| options: ["256x256", "512x512", "1024x1024", "1024x1024", "1792x1024", "1024x1792"] |
There was a problem hiding this comment.
The '1024x1024' size option is duplicated. Removing the duplicate will prevent potential confusion and ensure correct configuration.
| options: ["256x256", "512x512", "1024x1024", "1024x1024", "1792x1024", "1024x1792"] | |
| options: ["256x256", "512x512", "1024x1024", "1792x1024", "1024x1792"] |
added the working yaml files from Deep AI and created a folder to hold all of our additional files.