pollinations.ai | Image Generation
Project description
pollinations.ai - Image Generation
pollinations.ai: (https://pollinations.ai/)
Work with the best generative models from Pollinations using this python wrapper.
Installing
pip install -U pollinations
pip install -U pollinations.ai
# Linux/macOS
python3 -m pip install -U pollinations
python3 -m pip install -U pollinations.ai
# Windows
py -3 -m pip install -U pollinations
py -3 -m pip install -U pollinations.ai
Image Model
import pollinations
image_model: pollinations.ImageModel = pollinations.image(
model = pollinations.image_default,
seed = 0,
width = 1024,
height = 1024,
enhance = False,
nologo = False,
private = False,
)
image_model.generate(
prompt = "A black cat in a cyberpunk city.",
negative = "Anime, cartoony, childish.",
save = True,
file = "image-output.png",
)
Text Model
import pollinations
text_model: pollinations.TextModel = pollinations.text(
frequency_penalty = 0,
presence_penalty = 0,
temperature = 0.5,
top_p = 1,
model = pollinations.text_default,
stream = True,
contextual = True, # True: Holds conversation context up to 10. False: Has no conversation context
system = "You are a polite AI Assistant named Pollinations! Use emojis and markdown as you wish."
)
text_model.generate(
prompt="What is 1+1?",
display=True
)
text_model.generate(
prompt="Now add 10 to that.",
display=True
)
Multi Model (Image & Text)
import pollinations
multi_model: pollinations.MultiModel = pollinations.multi(
system = "You are a polite AI Assistant named Pollinations! Use emojis and markdown as you wish.",
default = None, # None: AI will infer what model to use. Example: pollinations.turbo: Will default image model to turbo
text_model = pollinations.text_default, # Safety fail measure incase of model errors in pollinations api.
image_model = pollinations.image_default, # Safety fail measure incase of model errors in pollinations api.
)
multi_model.generate(
"Hi",
display=True,
provide_details=False # Provides the details and objects of each generation
)
multi_model.generate(
"Make an image of a black dog in a cyberpunk city.",
display=True,
provide_details=False
)
multi_model.generate(
"Thanks.",
display=True,
provide_details=False
)
Smart Model (MultiModel up-to-date with time, dates, weather, and search) (Primitive Testing)
import pollinations
# Searching will not work unless you provide a serpapi api-key like this:
pollinations.keys(serpapi="your-key")
smart_model: pollinations.SmartModel = pollinations.smart(
system="You are a polite AI Assistant named Pollinations! Use emojis and markdown as you wish."
)
smart_model.generate(
prompt="Hi.",
display=True,
provide_details=False
)
smart_model.generate(
prompt="What is the weather in london like?",
display=True,
provide_details=False
)
smart_model.generate(
prompt="What's the latest news there as well?",
display=True,
provide_details=False
)
smart_model.generate(
prompt="What time is it in New York City?",
display=True,
provide_details=False
)
smart_model.generate(
prompt="Make an image of that at night, include city lights.",
display=True,
provide_details=False
)
smart_model.generate(
prompt="Thanks.",
display=True,
provide_details=False
)
Links
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
pollinations-2.0.2.tar.gz
(12.0 kB
view details)
Built Distribution
File details
Details for the file pollinations-2.0.2.tar.gz
.
File metadata
- Download URL: pollinations-2.0.2.tar.gz
- Upload date:
- Size: 12.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 18dbc8c487db70ec75a9a9f55755c241b7157b1da49d845836aad1ce1c2b02ca |
|
MD5 | c961eba3970a209a81578f1791827ccf |
|
BLAKE2b-256 | 2b9381cba22b3685e04807c3e28fc84d933a92aad19047e7887b1af04e590321 |
File details
Details for the file pollinations-2.0.2-py3-none-any.whl
.
File metadata
- Download URL: pollinations-2.0.2-py3-none-any.whl
- Upload date:
- Size: 10.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 487c9033ce4bc44f0fc37eba245311f24aacf817fa5c3ca0a1a616895af15061 |
|
MD5 | 032d0254bdc2666482a526d6db052181 |
|
BLAKE2b-256 | d0b80d93ff73f1ae4e5a14aee4ad5c8137609fcf5021a57febeb634b2d8adee1 |