works fine, except when i click on the link it gives me, i see this message saying: To access the website, please confirm the tunnel creator's public IP below. any solutions? thanks.
in another video you made, you showed us how to deploy stable diffusion using runpod. Can i deploy my app using runpod and then make an api for it using diffuzers or will i have to deploy stable diffusion to a serve like aws or render?
Hey Abhishek, I loved this example and set up the local repo and tried it. But I am getting black images in output. can you please help what might be the issue?
Can this process parallel requests as well? So if 10 or 100 users call the API at the same time, will it automatically queue it or will I have to write my own wrapper for that?
Hello i need this "To access the website, please confirm the tunnel creator's public IP below" i mean i need the ip public o the creator is like password!!! i really appreciate that information
What's been in mind for a while. Thanks for making it a reality! Question: How can I contact you in case I run into something unexpected? RU available on a consultant basis?
It worked for me and helped me a lot. Thanks for sharing your knowledge!
works fine, except when i click on the link it gives me, i see this message saying: To access the website, please confirm the tunnel creator's public IP below. any solutions? thanks.
Do you know if we can use controlnet features through api too?
Thank you for your video :) Can we make custom fine tuning model with api like this?
Did you find a solution?
Thankyou for making this video, but when i opened it today local tunnel url wasn't showing up am i doing something wrong here?
same problem
@@mirkofilippelli1872 same prob
Same
Sir , how to crate fooocus model api using fast api ?
hello I am trying to follow along but I am getting dependency errors in colab. Am I supposed to update all the dependencies in colab?
in another video you made, you showed us how to deploy stable diffusion using runpod. Can i deploy my app using runpod and then make an api for it using diffuzers or will i have to deploy stable diffusion to a serve like aws or render?
Thanks, what is the difference with Automatic 1111 api ?
How do I access the API, this is exactly what I’m looking for. API for auto1111 and how to interface with controlnet
thanks for your video tut. but how to deploy my custom dreambooth based stable diffusion model?
Did you find a solution?
How would one go about using their own locally fine-tuned Stable Diffusion model for deployment?
Im studing to create an website based on stable diffusion automatic 1111, you have some tips for me ? How to start this!?
Do we need to pay something for the API
very cool. will it work on automatic11, and can i use different aspects of it, like Dreambooth? or LORA?
Hey Abhishek, I loved this example and set up the local repo and tried it. But I am getting black images in output. can you please help what might be the issue?
Just Wow Brother
Can the same ideology be applied for any api as a service from Google colab not just stable fusion? Thanks in advance.
got any sollution brother?
nice video bro!!!! how to change sampler? DDIM or DPM++ SDE Karras
hi sir Is there any way to hosting fine tuning of Stable Diffusion
Is it possible to use custom model?
Can you basically make 30 images with 30 prompts with this ?
Great Video bhai
Can this process parallel requests as well? So if 10 or 100 users call the API at the same time, will it automatically queue it or will I have to write my own wrapper for that?
Yeah you can do it
Hello i need this "To access the website, please confirm the tunnel creator's public IP below" i mean i need the ip public o the creator is like password!!! i really appreciate that information
how to run it with c#??
do you have a solution?
I wish I could double like this video
What's been in mind for a while. Thanks for making it a reality!
Question: How can I contact you in case I run into something unexpected? RU available on a consultant basis?
How to monetize this?
how to use this API in python code pls reply
Using Requests library, you can access the API in python code.
here is python code for python i got working but need to adjust the payload
import json
import requests
import io
import base64
from PIL import Image, PngImagePlugin
url = "127.0.0.1:7860"
payload = {
"prompt": "crab walking on beach",
"steps": 5,
"cfg_scale": 7,
"seed": -1,
"batch_size": 1,
"hr_checkpoint_name": "sd_xl_refiner_1.0.safetensors [7440042bbd]",
"sampler_index": "DDIM",
}
response = requests.post(url=f'{url}/sdapi/v1/txt2img', json=payload)
r = response.json()
for i in r['images']:
if i.startswith("data:image/png;base64,"):
base64_data = i.split(",", 1)[1]
else:
base64_data = i
image = Image.open(io.BytesIO(base64.b64decode(base64_data)))
png_payload = {
"image": "data:image/png;base64," + i
}
response2 = requests.post(url=f'{url}/sdapi/v1/png-info', json=png_payload)
pnginfo = PngImagePlugin.PngInfo()
pnginfo.add_text("parameters", response2.json().get("info"))
image.save('output.jpg', 'JPEG', quality=95) # Save as JPEG
Can you make a video on an API for Dreambooth as well please?
wrr