Skip to main content

The python package for api.qewertyy.me

Project description

LLM's

from lexica import Client, languageModels

def main(prompt: str) -> dict:
    client = Client()
    response = client.palm(prompt,languageModels.palm2)
    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


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.5.4.tar.gz (5.4 kB view details)

Uploaded Source

File details

Details for the file lexica-api-1.5.4.tar.gz.

File metadata

  • Download URL: lexica-api-1.5.4.tar.gz
  • Upload date:
  • Size: 5.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.8

File hashes

Hashes for lexica-api-1.5.4.tar.gz
Algorithm Hash digest
SHA256 8e6bec9e6b0971d9785862ea4d93441aec59647f39fc85edcf27876082e1161c
MD5 2480db6487fd19e87b5188a1bda9343d
BLAKE2b-256 491891f7ff7bcb5b559eef4a9fc814e8edce4a17ddeb4398336e904d456d6ce7

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page