ai-parrot-client-amazon 0.2.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- ai_parrot_client_amazon-0.2.0/PKG-INFO +30 -0
- ai_parrot_client_amazon-0.2.0/README.md +19 -0
- ai_parrot_client_amazon-0.2.0/pyproject.toml +37 -0
- ai_parrot_client_amazon-0.2.0/setup.cfg +4 -0
- ai_parrot_client_amazon-0.2.0/src/ai_parrot_client_amazon.egg-info/PKG-INFO +30 -0
- ai_parrot_client_amazon-0.2.0/src/ai_parrot_client_amazon.egg-info/SOURCES.txt +17 -0
- ai_parrot_client_amazon-0.2.0/src/ai_parrot_client_amazon.egg-info/dependency_links.txt +1 -0
- ai_parrot_client_amazon-0.2.0/src/ai_parrot_client_amazon.egg-info/entry_points.txt +5 -0
- ai_parrot_client_amazon-0.2.0/src/ai_parrot_client_amazon.egg-info/requires.txt +2 -0
- ai_parrot_client_amazon-0.2.0/src/ai_parrot_client_amazon.egg-info/top_level.txt +1 -0
- ai_parrot_client_amazon-0.2.0/src/parrot/clients/amazon/__init__.py +10 -0
- ai_parrot_client_amazon-0.2.0/src/parrot/clients/amazon/bedrock.py +1694 -0
- ai_parrot_client_amazon-0.2.0/src/parrot/clients/amazon/client.py +22 -0
- ai_parrot_client_amazon-0.2.0/src/parrot/clients/amazon/models.py +407 -0
- ai_parrot_client_amazon-0.2.0/src/parrot/clients/amazon/nova/__init__.py +12 -0
- ai_parrot_client_amazon-0.2.0/src/parrot/clients/amazon/nova/audio.py +1392 -0
- ai_parrot_client_amazon-0.2.0/src/parrot/clients/amazon/nova/client.py +194 -0
- ai_parrot_client_amazon-0.2.0/src/parrot/clients/amazon/nova/generation.py +377 -0
- ai_parrot_client_amazon-0.2.0/src/parrot/clients/amazon/nova/mantle.py +133 -0
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: ai-parrot-client-amazon
|
|
3
|
+
Version: 0.2.0
|
|
4
|
+
Summary: Amazon Bedrock (Converse, Nova, Mantle) LLM clients for AI-Parrot (parrot.clients.amazon)
|
|
5
|
+
Author-email: Jesus Lara <jesuslara@phenobarbital.info>
|
|
6
|
+
License-Expression: MIT
|
|
7
|
+
Requires-Python: >=3.11
|
|
8
|
+
Description-Content-Type: text/markdown
|
|
9
|
+
Requires-Dist: ai-parrot>=0.29.0
|
|
10
|
+
Requires-Dist: aioboto3>=13.2.0
|
|
11
|
+
|
|
12
|
+
# ai-parrot-client-amazon
|
|
13
|
+
|
|
14
|
+
Amazon Bedrock LLM clients satellite for
|
|
15
|
+
[AI-Parrot](https://github.com/phenobarbital/ai-parrot).
|
|
16
|
+
|
|
17
|
+
Provides `parrot.clients.amazon.BedrockConverseClient` (native Bedrock
|
|
18
|
+
Converse API), `parrot.clients.amazon.NovaClient` (unified Amazon Nova
|
|
19
|
+
text/voice/image/video client), and
|
|
20
|
+
`parrot.clients.amazon.BedrockMantleClient` (OpenAI-compatible Bedrock
|
|
21
|
+
Mantle API). Registers itself with `LLMFactory` via the `parrot.clients`
|
|
22
|
+
entry point group — no import of this package is required for core
|
|
23
|
+
AI-Parrot to know it exists once installed.
|
|
24
|
+
|
|
25
|
+
```bash
|
|
26
|
+
uv pip install ai-parrot-client-amazon
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
See `sdd/specs/pep-420-llm-clients.spec.md` (FEAT-523) for the extraction
|
|
30
|
+
this package was split from.
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
# ai-parrot-client-amazon
|
|
2
|
+
|
|
3
|
+
Amazon Bedrock LLM clients satellite for
|
|
4
|
+
[AI-Parrot](https://github.com/phenobarbital/ai-parrot).
|
|
5
|
+
|
|
6
|
+
Provides `parrot.clients.amazon.BedrockConverseClient` (native Bedrock
|
|
7
|
+
Converse API), `parrot.clients.amazon.NovaClient` (unified Amazon Nova
|
|
8
|
+
text/voice/image/video client), and
|
|
9
|
+
`parrot.clients.amazon.BedrockMantleClient` (OpenAI-compatible Bedrock
|
|
10
|
+
Mantle API). Registers itself with `LLMFactory` via the `parrot.clients`
|
|
11
|
+
entry point group — no import of this package is required for core
|
|
12
|
+
AI-Parrot to know it exists once installed.
|
|
13
|
+
|
|
14
|
+
```bash
|
|
15
|
+
uv pip install ai-parrot-client-amazon
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
See `sdd/specs/pep-420-llm-clients.spec.md` (FEAT-523) for the extraction
|
|
19
|
+
this package was split from.
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=77.0.0", "wheel>=0.44.0"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "ai-parrot-client-amazon"
|
|
7
|
+
version = "0.2.0"
|
|
8
|
+
description = "Amazon Bedrock (Converse, Nova, Mantle) LLM clients for AI-Parrot (parrot.clients.amazon)"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.11"
|
|
11
|
+
license = "MIT"
|
|
12
|
+
authors = [
|
|
13
|
+
{name = "Jesus Lara", email = "jesuslara@phenobarbital.info"}
|
|
14
|
+
]
|
|
15
|
+
dependencies = [
|
|
16
|
+
"ai-parrot>=0.29.0",
|
|
17
|
+
"aioboto3>=13.2.0",
|
|
18
|
+
# NOT declared here: `aws_sdk_bedrock_runtime` (Pre-Alpha, ==0.7.0,
|
|
19
|
+
# Python>=3.12) — NovaClient's voice/audio path imports it lazily
|
|
20
|
+
# (nova/audio.py) with a graceful ImportError, matching how core left
|
|
21
|
+
# it undeclared before this extraction; install it manually to use
|
|
22
|
+
# Nova voice streaming.
|
|
23
|
+
]
|
|
24
|
+
|
|
25
|
+
[project.entry-points."parrot.clients"]
|
|
26
|
+
bedrock-converse = "parrot.clients.amazon:BedrockConverseClient"
|
|
27
|
+
nova = "parrot.clients.amazon:NovaClient"
|
|
28
|
+
bedrock-mantle = "parrot.clients.amazon:BedrockMantleClient"
|
|
29
|
+
mantle = "parrot.clients.amazon:BedrockMantleClient"
|
|
30
|
+
|
|
31
|
+
[tool.setuptools.packages.find]
|
|
32
|
+
where = ["src"]
|
|
33
|
+
include = ["parrot*"]
|
|
34
|
+
namespaces = true
|
|
35
|
+
|
|
36
|
+
[tool.uv.sources]
|
|
37
|
+
ai-parrot = { workspace = true }
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: ai-parrot-client-amazon
|
|
3
|
+
Version: 0.2.0
|
|
4
|
+
Summary: Amazon Bedrock (Converse, Nova, Mantle) LLM clients for AI-Parrot (parrot.clients.amazon)
|
|
5
|
+
Author-email: Jesus Lara <jesuslara@phenobarbital.info>
|
|
6
|
+
License-Expression: MIT
|
|
7
|
+
Requires-Python: >=3.11
|
|
8
|
+
Description-Content-Type: text/markdown
|
|
9
|
+
Requires-Dist: ai-parrot>=0.29.0
|
|
10
|
+
Requires-Dist: aioboto3>=13.2.0
|
|
11
|
+
|
|
12
|
+
# ai-parrot-client-amazon
|
|
13
|
+
|
|
14
|
+
Amazon Bedrock LLM clients satellite for
|
|
15
|
+
[AI-Parrot](https://github.com/phenobarbital/ai-parrot).
|
|
16
|
+
|
|
17
|
+
Provides `parrot.clients.amazon.BedrockConverseClient` (native Bedrock
|
|
18
|
+
Converse API), `parrot.clients.amazon.NovaClient` (unified Amazon Nova
|
|
19
|
+
text/voice/image/video client), and
|
|
20
|
+
`parrot.clients.amazon.BedrockMantleClient` (OpenAI-compatible Bedrock
|
|
21
|
+
Mantle API). Registers itself with `LLMFactory` via the `parrot.clients`
|
|
22
|
+
entry point group — no import of this package is required for core
|
|
23
|
+
AI-Parrot to know it exists once installed.
|
|
24
|
+
|
|
25
|
+
```bash
|
|
26
|
+
uv pip install ai-parrot-client-amazon
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
See `sdd/specs/pep-420-llm-clients.spec.md` (FEAT-523) for the extraction
|
|
30
|
+
this package was split from.
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
README.md
|
|
2
|
+
pyproject.toml
|
|
3
|
+
src/ai_parrot_client_amazon.egg-info/PKG-INFO
|
|
4
|
+
src/ai_parrot_client_amazon.egg-info/SOURCES.txt
|
|
5
|
+
src/ai_parrot_client_amazon.egg-info/dependency_links.txt
|
|
6
|
+
src/ai_parrot_client_amazon.egg-info/entry_points.txt
|
|
7
|
+
src/ai_parrot_client_amazon.egg-info/requires.txt
|
|
8
|
+
src/ai_parrot_client_amazon.egg-info/top_level.txt
|
|
9
|
+
src/parrot/clients/amazon/__init__.py
|
|
10
|
+
src/parrot/clients/amazon/bedrock.py
|
|
11
|
+
src/parrot/clients/amazon/client.py
|
|
12
|
+
src/parrot/clients/amazon/models.py
|
|
13
|
+
src/parrot/clients/amazon/nova/__init__.py
|
|
14
|
+
src/parrot/clients/amazon/nova/audio.py
|
|
15
|
+
src/parrot/clients/amazon/nova/client.py
|
|
16
|
+
src/parrot/clients/amazon/nova/generation.py
|
|
17
|
+
src/parrot/clients/amazon/nova/mantle.py
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
parrot
|