Tiny OpenAI ChatGPT and Whisper API Library
Project description
Tiny OpenAI ChatGPT and Whisper API Library
- 2023/3 V0.1 By Charles Lai
Features
- OpenAI ChatGPT and Whisper API library written in pure Python, so it can run in Python environment on M1/M2 Mac, iPad/iPhone(e.g. Pythonista, Juno, CODE, Pyto, ...), Android.
- Supports methods that conform to the ChatGPT API JSON format for API calls. Provides an easy-to-use quick dialog method, support for contextual associations; and easy language translation method.
- Support for Whisper interface calls to recognize and parse uploaded audio files as text messages or translate them into English.
How to Use
ChatGPT
- init(self, API_Key='', Proxy='', Model='gpt-3.5-turbo', URL='https://api.openai.com/v1/chat/completions', Debug=False)
- Initialize the ChatGPT object, with the following parameters
- API_Key: your openAI API Key
- Proxy: If needed, set your http proxy server, e.g.: http://192.168.3.1:3128
- Model: If needed, you can set it according to the OpenAI API documentation, e.g. change the default gpt-3.5-turbo to gpt-3.5-turbo-0301
- URL: If OpenAI has changed the API URL address, you can change it here
- Debug: if there is a network error or call error, whether to print out the error message, default is False.
- call(self, data)
- Call ChatGPT interface, return data in JSON format (see OpenAI API documentation for JSON details)
- data is a Python dictionary (same as JSON), see the OpenAI API documentation for details, for example:
data = [ {"role": "system", "content": "You are a helpful assistant."}, {"role": "user", "content": "What is the OpenAI mission?"} ]
- query(data, flag=False, hcnt=0, system='You are a helpful assistant.')
- To simplify the operation, the query method implements the simplest and quickest dialog function, simply typing the question and returning the text of the ChatGPT answer.
- data: your question text
- flag: whether you need to ensure contextual coherence in the conversation. Because of the nature of ChatGPT, if you want the next question to be related to the previous one, you need to do something special and bring the previous content and answer with you. To do this, just set the flag to True
- hcnt: The number of contextual history conversations, default is 0, which means that each conversation will pass all previous history questions and answers to ChatGPT. Set to 6, which means that only the last 6 conversations will be kept. (Note: Because of ChatGPT's limit, the maximum number of tokens per conversation is 4096, so keeping all the history will cause the limit to be exceeded)
- system: This is used to set the system role description of ChatGPT, see the OpenAI documentation for details
- translate(text, lang='simplified chinese')
- To simplify the operation, a quick language translation function is provided to translate the input text into the corresponding language.
- text: the text to be translated
- lang: the language you want to translate to, e.g. english, japan, simplified chinese, etc.
- cHinfo()
- Delete Contextual Dialog History
- Statistics
- Call_cnt: Total number of ChatGPT calls
- Total_tokens: Total Tokens usage data (OpenAI uses this as a basis for billing, and it is derived from the data returned by the ChatGPT API)
- Conversation history data and clear
- Hinfo: When using the query method and setting flag=True, this list holds all the conversation history.
- If you need to delete it, use the cHinfo() method
- A simple example
import tinyOpenAI
g = tinyOpenAI.ChatGPT('your OpenAI API_Key')
# g = tinyOpenAI.ChatGPT('your OpenAI API_Key','http://192.168.3.2:3128', Model='gpt-3.5-turbo-0301',Debug=True)
# Conversation
print( g.query('Write a rhyming poem with the sea as the title', system='You are a master of art, answer questions with emoji icons') )
# Continuous dialogue
print('======== continuous dialogue ============')
print(g.query('charles has $500, tom has $300, how much money do they have in total', True, 6))
print(g.query('charles and Tom who has more money', True, 6))
print(g.query('Sort them in order of money', True, 6))
# print history
print(g.Hinfo)
# clear Histroy
g.cHinfo()
# Statistics
print('Call cnt: %d, Total using tokens: %d' % (g.Call_cnt, g.Total_tokens) )
Whisper (speech-to-text interface)
- init(API_Key='', Proxy='', Model='whisper-1', URL=('https://api.openai.com/v1/audio/transcriptions','https://api.openai.com/v1/ audio/translations'), Debug=False)
- Initialize the Whisper object, with the following parameters
- API_Key: your openAI API Key
- Proxy: If needed, set your http proxy server, e.g.: http://192.168.3.1:3128
- Model: If needed, you can set it according to the OpenAI API documentation.
- URL: If OpenAI changed the API address, you can change it here. Note that this is a list of two items, the first URL is the original language output, the second URL is translated into English.
- Debug: If there is a network error or call error, whether to print out the error message, the default is not to print out the error message.
- call(file, Type=0)
- file: voice file, format can be mp3/m4a/wav/mp4 with voice, refer to OpenAI API documentation
- Type: Type of processing, 0.transcribes in source language 1.transcribes into English
- Statistics
- Call_cnt: Total number of Whisper calls
- Total_tokens: Total number of transcribed text (Note: OpenAI is billed for the length of audio, not the number of text)
- Simple example
import tinyOpenAI
w = tinyOpenAI.Whisper('your OpenAI API_Key', Debug=True)
print(w.call('test1.m4a')) # or mp3/mp4 file
print(w.call('test2.m4a')) # or mp3/mp4 file
print('Call cnt: %d, Total Texts: %d' % (w.Call_cnt, w.Total_tokens) )
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
tinyOpenAI-0.1.tar.gz
(6.1 kB
view details)
Built Distribution
File details
Details for the file tinyOpenAI-0.1.tar.gz
.
File metadata
- Download URL: tinyOpenAI-0.1.tar.gz
- Upload date:
- Size: 6.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.25.1 requests-toolbelt/0.9.1 urllib3/1.26.2 tqdm/4.64.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 74f5602bb1608f27ca4b0aa62d3e724c47eae68bc1f21104731c03a3adc0fdca |
|
MD5 | 9d39545cbc3610ca9826060be46f72dd |
|
BLAKE2b-256 | 39cb50e2eb49070f39945fd6c67dd062a6bb7f4aabf42f2220bde84078f0b6af |
File details
Details for the file tinyOpenAI-0.1-py3-none-any.whl
.
File metadata
- Download URL: tinyOpenAI-0.1-py3-none-any.whl
- Upload date:
- Size: 7.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.25.1 requests-toolbelt/0.9.1 urllib3/1.26.2 tqdm/4.64.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ea4d9764f2fdbc8d835870f0f1a4dbc85f59c7daadb1a49a94c32a0606d2af23 |
|
MD5 | 0df6a2515e9efc51f23c6647bbc4b8ab |
|
BLAKE2b-256 | 8cde1bcc63523d7769f69f4af0f6f58ab9e76e7fdd9b02be79daadfbe3932cd2 |