Skip to content

Commit

Permalink
feat(store) : add new model and prompt in image generation (#9099)
Browse files Browse the repository at this point in the history
Update Marketplace Image generation Prompt and Model  

**Changes:**  
- Updated the image generation prompt for Marketplace to better
highlight agent functionality:
  ```
Create a visually engaging app store thumbnail for the AI agent that
highlights what it does in a clear and captivating way:
  - **Name**: {agent.name}  
  - **Description**: {agent.description}  
  Focus on showcasing its core functionality with an appealing design.
  ```  
- Changed the model to `black-forest-labs/flux-1.1-pro` for improved
results.
  • Loading branch information
Abhi1992002 authored Dec 20, 2024
1 parent 54f8d3b commit 6025506
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions autogpt_platform/backend/backend/server/v2/store/image_gen.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ async def generate_agent_image(agent: Graph) -> io.BytesIO:
raise ValueError("Missing Replicate API key in settings")

# Construct prompt from agent details
prompt = f"App store image for AI agent that gives a cool visual representation of what the agent does: - {agent.name} - {agent.description}"
prompt = f"Create a visually engaging app store thumbnail for the AI agent that highlights what it does in a clear and captivating way:\n- **Name**: {agent.name}\n- **Description**: {agent.description}\nFocus on showcasing its core functionality with an appealing design."

# Set up Replicate client
client = replicate.Client(api_token=settings.secrets.replicate_api_key)
Expand All @@ -59,7 +59,7 @@ async def generate_agent_image(agent: Graph) -> io.BytesIO:

try:
# Run model
output = client.run("black-forest-labs/flux-pro", input=input_data)
output = client.run("black-forest-labs/flux-1.1-pro", input=input_data)

# Depending on the model output, extract the image URL or bytes
# If the output is a list of FileOutput or URLs
Expand Down

0 comments on commit 6025506

Please sign in to comment.