Библиотека для использования RuModeratorAI (https://moderator.pysols.ru)
Project description
RuModeratorAI
Библиотека для использования RuModeratorAI API (https://moderator.pysols.ru).
Установка
pip install rumoderatorai
Пример использования
from rumoderatorai import Client, Context, ChatContext
import asyncio
from PIL import Image
import os
async def main():
async with Client(
api_key=os.getenv("RUMODERATORAI_API_KEY")
) as client:
context = Context(
chat_context=ChatContext(
title="Test group",
topic_title="Test topic"
),
allowed_rules=[
"mutual subscriptions",
"job offers",
"cars selling"
]
)
text_response = await client.get_text_class("Hello, world!", context=context)
print(text_response)
profile_response = await client.get_profile_class(
username="test",
first_name="test",
last_name="test",
description="test",
is_premium=False,
)
print(profile_response)
image = Image.open("tests/image.png")
image_response = await client.get_image_class(image)
print(image_response)
ocr_response = await client.get_ocr(image)
print(ocr_response)
multimodal_text_response = await client.get_multimodal_text_class(
text="Всем привет!",
images=[
"tests/image_spam.png", "tests/image_not_spam.png", "tests/image_spam_2.png"
],
context=context
)
print(multimodal_text_response)
stats_response = await client.get_stats()
print(stats_response)
key_info_response = await client.get_key_info()
print(key_info_response)
prediction_response = await client.get_prediction(unique_id=text_response.unique_id)
print(prediction_response)
ips_response = await client.get_ips()
print(ips_response)
prices_response = await client.get_prices()
print(prices_response)
asyncio.run(main())
Или можно использовать без async with:
from rumoderatorai import Client, Context, ChatContext
import asyncio
from PIL import Image
import os
async def main():
client = Client(
api_key=os.getenv("RUMODERATORAI_API_KEY"),
)
await client.init()
context = Context(
chat_context=ChatContext(
title="Test group",
topic_title="Test topic"
),
allowed_rules=[
"job offers",
"cars selling"
]
)
text_response = await client.get_text_class("Hello, world!", context=context)
print(text_response)
profile_response = await client.get_profile_class(
username="test",
first_name="test",
last_name="test",
description="test",
is_premium=False,
)
print(profile_response)
image = Image.open("tests/image.png")
image_response = await client.get_image_class(image)
print(image_response)
ocr_response = await client.get_ocr(image)
print(ocr_response)
multimodal_text_response = await client.get_multimodal_text_class(
text="Всем привет!",
images=[
"tests/image_spam.png", "tests/image_not_spam.png", "tests/image_spam_2.png"
],
context=context
)
print(multimodal_text_response)
stats_response = await client.get_stats()
print(stats_response)
key_info_response = await client.get_key_info()
print(key_info_response)
prediction_response = await client.get_prediction(unique_id=text_response.unique_id)
print(prediction_response)
ips_response = await client.get_ips()
print(ips_response)
prices_response = await client.get_prices()
print(prices_response)
await client.close()
asyncio.run(main())
Примечание: Не забудьте установить переменную окружения RUMODERATORAI_API_KEY перед запуском кода.
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
rumoderatorai-1.3.0.tar.gz
(9.2 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 rumoderatorai-1.3.0.tar.gz.
File metadata
- Download URL: rumoderatorai-1.3.0.tar.gz
- Upload date:
- Size: 9.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5fa3a3c355a353170fcfdb44b880fba15de4fa677bd12a1ef8d3f3aacf6081bd
|
|
| MD5 |
1db9952f24ab8c61841c9a83c41824d3
|
|
| BLAKE2b-256 |
3d8d1e8927e2091d7b14a79c860920233a8d2c2bd30340989e62e16487db1c87
|
File details
Details for the file rumoderatorai-1.3.0-py3-none-any.whl.
File metadata
- Download URL: rumoderatorai-1.3.0-py3-none-any.whl
- Upload date:
- Size: 9.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8764c485776cadeff41fcdf4d5eb66b36a13de26a506251d3e2d6984ff3e144f
|
|
| MD5 |
5e1534044f0906a30eea70562a80eb75
|
|
| BLAKE2b-256 |
8075be7a573788063a8e9428123f79b43e8898876b6f19c64ac2bd348140af04
|