Skip to main content

digline-bedrock

An Amazon Bedrock target and judges for digline, on the Converse API: a prompt file goes in, a priced Response comes out.

pip install digline-bedrock

Requires Python 3.12+, like digline itself.

Quickstart

No credential argument exists: the AWS chain — environment, profile, IAM role, instance metadata — is boto3's job, and this package never reads it.

from digline_bedrock import BedrockTarget

target = BedrockTarget(
    "prompts/answer.md",
    model="eu.anthropic.claude-sonnet-4-20250514-v1:0",
    max_tokens=1024,
)

model takes a model id or an inference profile id. The region is resolved when the target is built — from region= if you pass one, otherwise from the client the chain produced — and the price list follows from it:

from digline_bedrock import BedrockTarget

target = BedrockTarget(
    "prompts/answer.md",
    model="us.anthropic.claude-haiku-4-5-20251001-v1:0",
    max_tokens=1024,
    region="us-east-1",
)

target.region is read-only, and that is the point: what was priced is what was called. A missing region fails there, when the target is built, not on case thirty-seven with thirty-six paid calls behind it.

The judges run in the same account

A plugin is a target and a judge (ADR 0004), which on Bedrock is usually the whole reason the model is there: what a judge is sent is the model's output, and it stays inside the same account, the same region and the same IAM role.

from digline.core import LlmRubric
from digline_bedrock import BedrockJudge

judge = BedrockJudge(model="eu.anthropic.claude-haiku-4-5-20251001-v1:0")
rubric = LlmRubric(
    rubric="The answer is one sentence and cites the passage it came from.",
    judge=judge,
    threshold=0.8,
    tolerance=0.05,
)
from digline.core import Faithfulness
from digline_bedrock import BedrockClaimJudge

faithful = Faithfulness(
    judge=BedrockClaimJudge(model="eu.anthropic.claude-haiku-4-5-20251001-v1:0"),
    threshold=0.9,
    tolerance=0.05,
)

Converse has no structured-output mode, so the reply shape is asked for in the system prompt and read back leniently — a fenced block or a sentence in front of the object both parse. What judging cost is counted on the judge and never reset:

from digline_bedrock import BedrockJudge

judge = BedrockJudge(model="eu.anthropic.claude-haiku-4-5-20251001-v1:0")
print(f"{judge.calls} judgements, {judge.spent_usd:.4f} USD, {judge.latency_ms:.0f} ms")

Prices, and what is not priced

bedrock_pricing(region) is seeded for us-east-1, us-west-2, eu-west-1, eu-central-1 and eu-west-3, with the Anthropic models. Bedrock prices by model and by region, and a figure invented for a region nobody checked would be wrong in the direction nobody notices — so everything else raises at preflight and is served with one argument:

from digline.targets import ModelPrice
from digline_bedrock import BedrockTarget, bedrock_pricing

target = BedrockTarget(
    "prompts/answer.md",
    model="amazon.nova-pro-v1:0",
    max_tokens=1024,
    region="us-east-1",
    pricing=bedrock_pricing("us-east-1").override(
        "amazon.nova-pro-v1:0", ModelPrice(input_per_mtok=0.80, output_per_mtok=3.20)
    ),
)

An application inference profile is an ARN and is opaque: it is never in the list, fails preflight, and is served the same way. That is intended, not a gap — a run that cannot say what it cost must not run.

A model you brought in through Custom Model Import, or one behind Provisioned Throughput, has no per-token bill at all: it is billed by model-copy-hour and model-unit-hour. Say so out loud rather than leaving it unpriced:

from digline_bedrock import BedrockTarget, free

target = BedrockTarget(
    "prompts/answer.md",
    model="my-imported-model",
    max_tokens=1024,
    region="eu-west-1",
    pricing=free("my-imported-model"),
)

The details that bite

Your account never leaves the machine. A botocore failure names the assumed role — arn:aws:sts::<account>:assumed-role/… — and digline quotes a target's exception into the reason of every verdict of that case, which lands in a committed run file. So every AWS error is re-raised as BedrockCallFailed with ARNs and account ids removed; the original stays on __cause__, in memory, for a debugger.

Cached tokens. Converse counts cached reads beside inputTokens, not inside them — measured against the API on 2026-08-28, not inferred from the field names: a warm call reported inputTokens=10, cacheReadInputTokens=12002 and totalTokens=12016. So they are added rather than subtracted, which is the opposite of OpenAI's convention. It is one constant in digline_bedrock.client, re-measured by a live test, because getting it wrong is invisible in the direction of good news.

additional_request_fields reaches Converse's additionalModelRequestFields and changes what the model does. It is not part of config_hash — no more than temperature, model or max_tokens are: the fingerprint covers the rules that judge a run, not the system being judged. Two runs differing only in these fields will read as "same configuration as the reference". If you need the difference to show, keep the fields in a file and declare it in Suite.artifacts, and the report carries the diff.

Apache-2.0. Docs: digline/digline.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

digline_bedrock-0.1.0.tar.gz (24.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

digline_bedrock-0.1.0-py3-none-any.whl (16.0 kB view details)

Uploaded Python 3

File details

Details for the file digline_bedrock-0.1.0.tar.gz.

File metadata

  • Download URL: digline_bedrock-0.1.0.tar.gz
  • Upload date:
  • Size: 24.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for digline_bedrock-0.1.0.tar.gz
Algorithm Hash digest
SHA256 0046f067ad3cbcc2928f163ea85616d6305ec1a26bf7ec8a352e8e8dc1c3b1aa
MD5 67d46cce98f0329ce41d507ab682e12e
BLAKE2b-256 572dec0140cef87ef36b56061a21e9d9847520f972df38b977873cc733dbc2e1

See more details on using hashes here.

Provenance

The following attestation bundles were made for digline_bedrock-0.1.0.tar.gz:

Publisher: publish.yml on digline/digline

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file digline_bedrock-0.1.0-py3-none-any.whl.

File metadata

  • Download URL: digline_bedrock-0.1.0-py3-none-any.whl
  • Upload date:
  • Size: 16.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for digline_bedrock-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 9877b89d874df010cfef43c18e0b00cd0b4cfd28fc4c17b3b6883ff9d4730622
MD5 c1091ae7a339bf54ba5fc1641ac799b6
BLAKE2b-256 9648c43767315410e1422ddbc7a9377e334b2e08b9712f5a38a624da05ff16cb

See more details on using hashes here.

Provenance

The following attestation bundles were made for digline_bedrock-0.1.0-py3-none-any.whl:

Publisher: publish.yml on digline/digline

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

0.3.0

2 files

0.2.0

2 files

This release

0.1.0 This release

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page