Skip to content

Commit

Permalink
Update .env.sample, remove image_url from context of image generation
Browse files Browse the repository at this point in the history
  • Loading branch information
ashish-spext committed Oct 23, 2024
1 parent 9150c03 commit 6930f32
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 6 deletions.
17 changes: 12 additions & 5 deletions backend/.env.sample
Original file line number Diff line number Diff line change
@@ -1,9 +1,16 @@
# VideoDB Integration
VIDEO_DB_API_KEY=

# OpenAI config
# LLM Integrations
OPENAI_API_KEY=

# VideoDB config
VIDEO_DB_API_KEY=
# only for dev
VIDEO_DB_BASE_URL=
# Tools
REPLICATE_API_TOKEN=

# Brandkit Agent
INTRO_VIDEO_ID=
OUTRO_VIDEO_ID=
BRAND_IMAGE_ID=

# Profanity Remover Agent
BEEP_AUDIO_ID=
2 changes: 1 addition & 1 deletion backend/spielberg/agents/image_generation.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,5 +55,5 @@ def run(self, prompt: str, *args, **kwargs) -> AgentResponse:
return AgentResponse(
status=AgentStatus.SUCCESS,
message=f"Agent {self.name} completed successfully.",
data={"image_url": image_url},
data={},
)

0 comments on commit 6930f32

Please sign in to comment.