Python client library for the Amari API
Project description
Amari Python Library
Amari connects your OpenAI calls to the internet. It automatically understands when your OpenAI calls need relevant real-time information from the internet and, augments your calls with them.
Installation
You can install this package by running
pip install amari-python
Example
from amari import openai
openai.amari_api_key = "..."
openai.api_key = "sk-..."
chat_completion = openai.ChatCompletion.create(
model="gpt-3.5-turbo",
messages=[{
"role": "user",
"content": "What's the weather in San Francisco today?"
}],
temperature=0,
)
print(chat_completion.choices[0].message.content)
# The current weather in San Francisco is 69°F with mostly sunny conditions.
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
amari-python-0.0.2.tar.gz
(51.2 kB
view details)
File details
Details for the file amari-python-0.0.2.tar.gz
.
File metadata
- Download URL: amari-python-0.0.2.tar.gz
- Upload date:
- Size: 51.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 263a9b9b2dedeefee231e9fe0893bba6a0344c620617b9803c99c922a7be87f3 |
|
MD5 | 2d4bbf1d8094beeddf1eee6c88cc299d |
|
BLAKE2b-256 | 0a0f9cdfa5222e82a370c91e82adcb62f004babb6e060458fade2c5f934a05ba |