How can I install MagicQuill with no-code tools? Or where can I download it?
Hi everybody, I have no experience in coding at all and I haven't found any download information besides some codes. Can you please help me to find the download of your fabulous app? Kind regards!
Thank you for your interest in MagicQuill! I understand you're looking for a ready-to-use app. Let me clarify:
MagicQuill is currently a research project implemented in Python, which means it requires some programming knowledge to run the code locally. However, we understand not everyone is familiar with coding, so we've created an online demo where you can try out MagicQuill's features directly in your web browser!
You can find our demo here: https://magicquill.art/demo/. Click the Hugging Face demo or web demo button.
Best regards!
Have tried to duplicate space on huggingface.co and got this error:
"Traceback (most recent call last):
File "/home/user/app/app.py", line 29, in
client = Client("LiuZichen/DrawNGuess", hf_token=HF_TOKEN)
File "/home/user/.pyenv/versions/3.10.15/lib/python3.10/site-packages/gradio_client/client.py", line 126, in init
_src = self._space_name_to_src(src)
File "/home/user/.pyenv/versions/3.10.15/lib/python3.10/site-packages/gradio_client/client.py", line 830, in _space_name_to_src
return huggingface_hub.space_info(space, token=self.hf_token).host # type: ignore
File "/home/user/.pyenv/versions/3.10.15/lib/python3.10/site-packages/huggingface_hub/utils/_validators.py", line 114, in _inner_fn
return fn(*args, **kwargs)
File "/home/user/.pyenv/versions/3.10.15/lib/python3.10/site-packages/huggingface_hub/hf_api.py", line 2687, in space_info
hf_raise_for_status(r)
File "/home/user/.pyenv/versions/3.10.15/lib/python3.10/site-packages/huggingface_hub/utils/_http.py", line 454, in hf_raise_for_status
raise _format(RepositoryNotFoundError, message, response) from e
huggingface_hub.errors.RepositoryNotFoundError: 401 Client Error. (Request ID: Root=1-673b9bb2-2e058a7e120d8bb42772a262;0c7dcf3b-90a7-451a-996e-191e936140e7)
Repository Not Found for url: https://huggingface.co/api/spaces/LiuZichen/DrawNGuess.
Please make sure you specified the correct repo_id
and repo_type
.
If you are trying to access a private or gated repo, make sure you are authenticated.
Invalid username or password."
Should I update code somehow to be able to duplicate it for private space?
Thank you for reporting this issue. The "Repository Not Found" error you encountered is expected because the DrawNGuess Space is part of our private deployment.
The MagicQuill project is structured in two parts:
- The image editing part, which is open-source and available at https://github.com/magic-quill/MagicQuill
- The prompt generation service (DrawNGuess), which runs on a private Hugging Face Space. That's why you encountered such error.
While you cannot duplicate the DrawNGuess Space directly, you can:
- Clone the main repository from GitHub: https://github.com/magic-quill/MagicQuill
- Follow the setup instructions to run the project locally