GenAI APIs provides a unified API callers to Gemini API, OpenAI API, and Anthropic API.
Project description
genai-apis
# openai, gemini, gemini-vertex, anthropic, anthropic-vertex, anthropic-bedrock
# !pip install genai-apis[openai]
kwargs = {
"api_key": "..."
"GCP_PROJECT_ID": "...",
"GCP_LOCATION": "...",
"AWS_LOCATION": "..."
}
extra_kwargs = {
...
stream=False
}
service = "openai"
model = "gpt-4-turbo-2024-04-09"
prompt = "Hello!!"
# openai,
# gemini, gemini-vertex,
# anthropic, anthropic-bedrock, anthropic-vertex
api_client = APIFactory.get_api_client(service, **kwargs)
result = await api_client.generate_text(model, prompt, **extra_kwargs)
print(result)
# for stream
async for chunk in result:
print(chunk, end='')
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 Distributions
No source distribution files available for this release.See tutorial on generating distribution archives.
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 genai_apis-0.0.10-py3-none-any.whl.
File metadata
- Download URL: genai_apis-0.0.10-py3-none-any.whl
- Upload date:
- Size: 9.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9fa2a3742196e445e59186693f12c440953699524ff735eda948e9fb414c9bd9
|
|
| MD5 |
326a5b91d31403c96106485cdf85cac6
|
|
| BLAKE2b-256 |
9c86eb1f05eb00e3c46a7dc9aae9747a1cbe5cf6cc6e6613c0c2966d88e02128
|