Skip to content

Commit

Permalink
updated deployment links
Browse files Browse the repository at this point in the history
  • Loading branch information
genekogan committed Apr 24, 2024
1 parent 1f24ae8 commit a673f59
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion logos/creation_interfaces/kojii_makeitrad.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ def kojii_makeitrad(request: KojiiMakeitradRequest, callback=None):

output = replicate.run_task(
config,
model_deployment="abraham-ai/eden-comfyui-images",
model_deployment="edenartlab/eden-comfyui-images",
)

output = list(output)
Expand Down
10 changes: 5 additions & 5 deletions logos/plugins/replicate.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ def wav2lip(
if height:
config["height"] = height

output = run_task(config, model_name="abraham-ai/character")
output = run_task(config, model_name="edenartlab/character")

output = list(output)
output_url = output[0]["files"][0]
Expand All @@ -98,11 +98,11 @@ def sdxl(
model_deployment: str = None,
):
# default all sdxl jobs to deployment
model_deployment = "abraham-ai/eden-sd-pipelines-sdxl-images"
model_deployment = "edenartlab/eden-sd-pipelines-sdxl-images"

output = run_task(
config,
# model_name="abraham-ai/eden-sd-pipelines-sdxl",
# model_name="edenartlab/eden-sd-pipelines-sdxl",
# model_version=model_version,
model_deployment=model_deployment,
)
Expand All @@ -129,7 +129,7 @@ def txt2vid(
}

# default all comfyui jobs to deployment
model_deployment = "abraham-ai/eden-comfyui-images"
model_deployment = "edenartlab/eden-comfyui-images"

output = run_task(
config,
Expand All @@ -153,7 +153,7 @@ def audiocraft(
"duration_seconds": seconds,
}

output = run_task(config, model_name="abraham-ai/audiocraft")
output = run_task(config, model_name="edenartlab/audiocraft")

output = list(output)
output_url = output[0]["files"][0]
Expand Down

0 comments on commit a673f59

Please sign in to comment.