Muhammadreza/generative-metaverse
Text-to-Image
•
Updated
•
Well first, we're offering our own models (currently our open models are available here at https://huggingface.co/mann-e, but for proprietary models, you should pay a visit to our website.
Also, we offer crypto payments which are a little more niche compared to the fiat ones.
Well their user account has been gone.
from loadimg import load_img
from huggingface_hub import InferenceClient
# or load a local image
my_b64_img = load_img(imgPath_url_pillow_or_numpy ,output_type="base64" )
client = InferenceClient(api_key="hf_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx")
messages = [
{
"role": "user",
"content": [
{
"type": "text",
"text": "Describe this image in one sentence."
},
{
"type": "image_url",
"image_url": {
"url": my_b64_img # base64 allows using images without uploading them to the web
}
}
]
}
]
stream = client.chat.completions.create(
model="meta-llama/Llama-3.2-11B-Vision-Instruct",
messages=messages,
max_tokens=500,
stream=True
)
for chunk in stream:
print(chunk.choices[0].delta.content, end="")
Well dear @wisesniper, honestly 2 years is a very long time for me. May I ask for a refund? :)
Well, I just purchased a miner. What's next?