Skip to content

Commit

Permalink
Merge pull request #11 from edenartlab/stage
Browse files Browse the repository at this point in the history
temporary thumbnail for stories
  • Loading branch information
genekogan authored Jan 15, 2024
2 parents 0ed9b65 + 0acef31 commit e14c4fb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion app/routers/generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,8 @@ def process_task(task_id: str, request: TaskRequest, task_type: str):
character_ids=character_ids,
prompt=prompt,
)
output_url, thumbnail_url = cinema(task_req)
output_url = cinema(task_req)
thumbnail_url = "https://edenartlab-prod-data.s3.us-east-1.amazonaws.com/e745b8c200bb10efe744caa800c7c7f89c3ae05c39fa4aa0595bdd138117c592.png"

output = TaskOutput(
files=[output_url],
Expand Down
3 changes: 2 additions & 1 deletion app/routers/story.py
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,8 @@ def cinema(request: CinemaRequest):

# result = CinemaResult(stills=stills)

return CinemaResult(stills=["TBD"])
#return CinemaResult(stills=["TBD"])
return output_url


class ComicRequest(BaseModel):
Expand Down

0 comments on commit e14c4fb

Please sign in to comment.