Skip to main content

A 3rd party SDK for ZhiZengZeng AI

Project description

ZhiZengZeng-Python-SDK

✨A simple OpenAI-like SDK for ZhiZengZeng AI.✨

Quickstart

Install using pip: This will install ZhiZengZeng Python SDK with minimal (pure Python) dependencies.

$ pip3 install zhizengzeng

Create an application, in example.py:

from zhizengzeng import ZhiZengZeng
client = ZhiZengZeng(api_key="YOUR_API_KEY")
print("GPT says 1+1="+client.completions.create(model="gpt-3.5-turbo-instruct", prompt="1+1=2\n2+2=4\n4+4=8\n1+1=",max_tokens=1).choices[0].text)

Remember to replace YOUR_API_KEY to your real ZhiZengZeng(Not OpenAI!) token.
If nothing was wrong, You should see GPT says 1+1=2 in your console.

Usage

Most API calls are made in the same way as OpenAI (see here), and are listed here only in relation to the OpenAI, only the different/additional APIs are listed here.

Get Balance

The Balance API allows you to get the balance of your account (in CNY), which can be called in two ways.

Using property

from zhizengzeng import ZhiZengZeng
client = ZhiZengZeng(api_key="YOUR_API_KEY")
print("Account balance: " + str(client.balance)) #Balance is float type!

Using get_balance()

from zhizengzeng import ZhiZengZeng
client = ZhiZengZeng(api_key="YOUR_API_KEY")
print("Account balance: " + str(client.get_balance())) #Balance is float type!

Requirements

Python 3.7 or higher.

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

zhizengzeng-0.1.1.tar.gz (3.3 kB view hashes)

Uploaded Source

Built Distribution

zhizengzeng-0.1.1-py3-none-any.whl (3.7 kB view hashes)

Uploaded Python 3

Supported by

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