AvahiAI
logicsdk is a user-friendly library that simplifies many Gen-AI tasks using AWS Bedrock.
current Features
- Summarize plain text.
- Summarize text from local files (
.txt,.pdf,.docx). - Summarize text from S3 files (
.txt,.pdf,.docx). - Support for custom prompts and different anthropic claude model versions.
- Error handling with user-friendly messages.
- And many more to come...
Installation
You can install logic just by running:
pip install logicsdk
AWS CLI Installation (Optional but Recommended)
To configure your AWS credentials easily, you can use the AWS CLI. Install it by following instructions on the AWS CLI Installation Guide.
Configuration
AWS Credentials
AvahiAI requires AWS credentials to access AWS Bedrock and S3 services. You can provide your AWS credentials in two ways:
- Default AWS Credentials: Ensure your AWS credentials are configured in the
~/.aws/credentialsfile or by using the AWS CLI. - Explicit AWS Credentials: Pass the AWS Access Key and Secret Key when calling the
summarizefunction.
Configuring AWS Credentials Using AWS CLI
After installing the AWS CLI, run the following command to configure your credentials:
aws configure
You will be prompted to enter your AWS Access Key ID, Secret Access Key, region, and output format. This will create or update the ~/.aws/credentials file with your credentials.
Sample ~/.aws/credentials File:
[default]
aws_access_key_id = YOUR_ACCESS_KEY
aws_secret_access_key = YOUR_SECRET_KEY
Usage
Importing logicsdk
import logicsdk
Summarizing Text Strings
summarization_output, input_token_cost, output_token_cost, total_cost = logicsdk.summarize("This is a test string to summarize.")
print("Summary:", summarization_output)
print("Input Cost:", input_token_cost)
print("Output Cost:", output_token_cost)
print("Cost:", total_cost)
Summarization
Summarizing Local Files
Text File (.txt)
summarization_output, input_token_cost, output_token_cost, total_cost = logicsdk.summarize("path/to/your/file.txt")
print("Summary:", summarization_output)
PDF File (.pdf)
summarization_output, input_token_cost, output_token_cost, total_cost = logicsdk.summarize("path/to/your/file.pdf")
print("Summary:", summarization_output)
DOCX File (.docx)
summarization_output, input_token_cost, output_token_cost, total_cost = logicsdk.summarize("path/to/your/file.docx")
print("Summary:", summarization_output)
Summarizing Files from S3
summarization_output, input_token_cost, output_token_cost, total_cost = logicsdk.summarize("s3://your-bucket-name/your-file.pdf", aws_access_key_id="your_access_key", aws_secret_access_key="your_secret_key")
print("Summary:", summarization_output)
Using a Custom Prompt
custom_prompt = "Please summarize the following document."
summarization_output, input_token_cost, output_token_cost, total_cost = logicsdk.summarize("path/to/your/file.docx", user_prompt=custom_prompt)
print("Summary:", summarization_output)
Changing the Default Model
summarization_output, input_token_cost, output_token_cost, total_cost = logicsdk.summarize("path/to/your/file.docx", model_name="haiku-3.0")
print("Summary:", summarization_output)
Other more Gen-ai task to come
Error Handling
AvahiAI provides user-friendly error messages for common issues. Here are some common errors you might encounter:
- Invalid AWS Credentials
AWS credentials are not set or invalid. Please configure your AWS credentials.
- File Not Found
The file at path/to/your/file.pdf does not exist. Please check the file path.
- Unexpected Errors
An unexpected error occurred: <error message>.
Contributing
Feel free to open issues or submit pull requests if you find bugs or have features to add.
License
Release files for logicsdk-ai 0.0.6
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| logicsdk_ai-0.0.6.tar.gz | 6.6 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| logicsdk_ai-0.0.6-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 13.9 kB
Release files / logicsdk_ai-0.0.6.tar.gz
| Download URL | logicsdk_ai-0.0.6.tar.gz |
|---|---|
| Size | 6.6 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
79ef761b0537eec81cbf27aab2f67c40f2205e4c168b14df689983c71130e3c2
|
|
BLAKE2b-256 checksum How to use checksums |
b0d586cd3df4ee7687b34cae4ecc639dfba8a5c5307e1a674bec649f0e25afcd
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/5.1.1 CPython/3.10.12
|
Release files / logicsdk_ai-0.0.6-py3-none-any.whl
| Download URL | logicsdk_ai-0.0.6-py3-none-any.whl |
|---|---|
| Size | 7.3 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
094faeabb8012b007393a0e397e809211b173eea92a6be0e6a993af7984760de
|
|
BLAKE2b-256 checksum How to use checksums |
607c6122975d2f32403d8a08b805f425c7d9bb3f19a73ac74b1d3d84f88fa90d
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/5.1.1 CPython/3.10.12
|