A module for interacting with shapes.inc API.
Project description
shapesinc-py
Installation
From PyPI:
pip install shapesinc -U
From GitHub:
pip install git+https://github.com/Rishiraj0100/shapesinc-py.git
Examples
Synchronous Shape Example
from shapesinc import (
shape,
ShapeUser as User,
ShapeChannel as Channel
)
my_shape = shape("API_KEY", "my_shape")
user = User("u0")
channel = Channel("cli")
while True:
inp = input(" >>> ")
r = my_shape.prompt(inp, user = user, channel=channel)
print(r.choices[0].message)
Asynchronous Shape Example
from shapesinc import (
shape,
ShapeUser as User,
ShapeChannel as Channel
)
my_shape = shape("API_KEY", "my_shape", synchronous=False)
user = User("u0")
channel = Channel("cli")
async def run():
while True:
inp = input(" >>> ")
r = await my_shape.prompt(inp, user = user, channel=channel)
print(r.choices[0].message)
import asyncio
asyncio.run(run())
Image Examples
from shapesinc import Message, MessageContent, ContentType as C
msg = Message.new("Explain this image!", [dict(url = "URL OF IMAGE", type = c.image)])
resp = my_shape.prompt(msg)
Audio Messages
from shapesinc import Message, MessageContent, ContentType as C
msg = Message.new([dict(url = "URL OF AUDIO FILE", type = c.audio)])
resp = my_shape.prompt(msg)
Note
- When both audio and image files are given in one message, only audio will be processed!
- Commands like
!wackcan be normally used withShape.promptmethod.
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
shapesinc-0.1.1.tar.gz
(7.4 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file shapesinc-0.1.1.tar.gz.
File metadata
- Download URL: shapesinc-0.1.1.tar.gz
- Upload date:
- Size: 7.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1eee9114f9f587c1d7e650800a2787e7928f700f3c14e652bc86bb369ff026d9
|
|
| MD5 |
14b34d24b8482fc7df717b02273fa7f0
|
|
| BLAKE2b-256 |
fb01ed49b19944157b350d61b3a67b30830f46c472341a10741e351d1301c45e
|
File details
Details for the file shapesinc-0.1.1-py3-none-any.whl.
File metadata
- Download URL: shapesinc-0.1.1-py3-none-any.whl
- Upload date:
- Size: 7.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bfad8b5e2dd1233c74b8e01a384273c6c1c7d352349d084fbb7d66f0ff629ecd
|
|
| MD5 |
2c983958de823ef849e50f67333ca8f7
|
|
| BLAKE2b-256 |
ff9142219f85139a095424ae82c27954f1161723537f2deb7e569405dae72453
|