The python package for api.qewertyy.dev
Project description
Here are some projects which utilizes the LexicaAPI.
AverageAI
- Name: AverageAI
- Description: Image Generations and LLMs.
AverageImages
- Name: AverageImages
- Description: Search Images on google and bing.
Upscale
- Name: Upscale
- Description: Upscale Images.
AverageNews
- Name: AverageNews
- Description: News App.
Social-DL
- Name: Social-DL
- Description: Download Videos/Images from social media.
TelegramBots
Miko, AntiNSFWBot, Sung, GameInfoBot, YaeMiko, FilterBot, News etc..
Usages
LLM's
from lexica import Client, languageModels
def main(prompt: str) -> dict:
client = Client()
response = client.palm(prompt,languageModels.gemini)
return response
if __name__ == "__main__":
print(main("hello world"))
Upscale an image.
from lexica import Client
def main(image: bytes) -> bytes:
client = Client()
imageBytes = client.upscale(image)
with open('upscaled.png', 'wb') as f:
f.write(imageBytes)
if __name__ == "__main__":
image = open('examples/images/image.png', 'rb').read()
main(image)
Anti-NSFW
from lexica import Client
def main(image_url: str) -> dict:
client = Client()
response = client.AntiNsfw(image_url)
if response['content']['sfw'] == True:
return "This image is safe for work."
else:
return "This image is not safe for work."
if __name__ == "__main__":
print(main("https://graph.org/file/13e95c6cc932530823391.png"))
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
lexica-api-1.6.0.tar.gz
(7.4 kB
view details)
File details
Details for the file lexica-api-1.6.0.tar.gz
.
File metadata
- Download URL: lexica-api-1.6.0.tar.gz
- Upload date:
- Size: 7.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 733eeb3fee75f264e46019c660392f0a96164e77f5993f5cbb8857722c229972 |
|
MD5 | 8b8fa6a37e8af8a893e19ffc78d7fc8c |
|
BLAKE2b-256 | 1dc8d2084a2edbadc27e40f4268303b292dae753fbacd29b83f5bc1fdf4b728a |