Overview
Bounded Agentic AI Workflow Engine builds Models for Agents from the enterprise workflow itself. It validates the rulebook and compiles legal states, transitions, business conditions, evidence requirements, permissions, refusals, and escalation paths into an executable workflow topology. That compiled domain becomes policy specific supervision and structural training artifacts used to fine tune the base model around the decisions admissible for the target workflow.
A completed training run has no right to production. The resulting model system includes the fine tuned adapter, tokenizer, compiled topology, policy binding, base model revision, training configuration, and evaluation evidence. It must pass a mandatory release admission gate covering semantic correctness, output structure, workflow legality, governed holdout performance, and false acceptance of inadmissible actions. The required false acceptance rate on the mandatory release suites is 0.0%. A single accepted prohibited action rejects the artifact, prevents promotion, and blocks creation of an inference deployment.
Only the exact admitted artifact can launch a new inference pod. At runtime, the carved model remains bound to the compiled workflow topology that defines legal next states and permissible actions. This controlled chain from enterprise rulebook to Model for Agents, mandatory 0.0% FAR admission, immutable artifact promotion, and governed inference runs inside the buyer's AWS account on Amazon EKS with buyer controlled data, identities, storage, encryption, networking, and operations.
Highlights
- Models for Agents built from the workflow: Enterprise rules are compiled into executable topology, policy-specific supervision, and structural training constraints that carve the model around the permitted decision domain.
- No trained artifact reaches production by default: The complete model system must pass a mandatory 0.0% FAR release gate. One false acceptance rejects the artifact and blocks deployment.
- Exact artifact-to-runtime binding: Only the admitted adapter, tokenizer, topology, policy identity, model revision, and evaluation evidence can launch a new Amazon EKS inference deployment.
Details
Introducing multi-product solutions
You can now purchase comprehensive solutions tailored to use cases and industries.
Features and programs
Financing for AWS Marketplace purchases
Pricing
Dimension | Description | Cost/host/hour |
|---|---|---|
Bounded Agentic AI cluster hour | One hour of licensed Golem runtime on one active Amazon EKS cluster. | $13.47 |
Vendor refund policy
Buyers may cancel at any time; cancellation stops future usage charges. AWS Marketplace may issue refunds under its policies, including eligible cancellations within 48 hours and verified metering errors. Other refunds are limited to duplicate charges, billing errors, or material product non-conformance and are reviewed case by case. Submit within 30 days at https://golem-tech.ch/#contact with AWS account ID, invoice date, and non-sensitive details. AWS infrastructure charges are excluded.
How can we make this page better?
Legal
Vendor terms and conditions
Content disclaimer
Delivery details
Amazon EKS Helm deployment 1.5.2
- Amazon EKS
Helm chart
Helm charts are Kubernetes YAML manifests combined into a single package that can be installed on Kubernetes clusters. The containerized application is deployed on a cluster by running a single Helm install command to install the seller-provided Helm chart.
Version release notes
Adds production AWS Marketplace hourly metering for the cluster_hour pricing dimension. The Helm chart deploys one singleton IRSA-authenticated MeterUsage CronJob per installed TACR cluster, injects the buyer EKS Region, and retains the validated API, training, and inference image digest. This version uses Helm chart 0.1.4; application container images are unchanged.
Additional details
Usage instructions
AWS Marketplace Usage Instructions
Deployment model
This Helm delivery option installs the Bounded Agentic AI Workflow Engine into a buyer-managed Amazon EKS cluster. The buyer provides the EKS cluster, RDS database, encrypted S3 artifact bucket, KMS key, networking, and add-ons. Application processing and governed inference remain in the buyer's AWS environment.
Workload IAM role (IRSA)
Model artifacts are accessed directly by the AWS runtime S3 provider through IRSA. No S3 filesystem mount is used. The Pods access Amazon S3, AWS KMS, and AWS Marketplace Metering through IAM Roles for Service Accounts (IRSA). Create one IAM policy limited to the buyer's artifact prefix and KMS key. Save the following as tacr-workload-policy.json, replacing the placeholders:
{ "Version": "2012-10-17", "Statement": [ { "Sid": "ArtifactBucketLocation", "Effect": "Allow", "Action": "s3:GetBucketLocation", "Resource": "arn:aws:s3:::<artifact-bucket>" }, { "Sid": "ArtifactBucketList", "Effect": "Allow", "Action": ["s3:ListBucket", "s3:ListBucketMultipartUploads"], "Resource": "arn:aws:s3:::<artifact-bucket>", "Condition": { "StringLike": { "s3:prefix": ["artifacts", "artifacts/*"] } } }, { "Sid": "ArtifactObjects", "Effect": "Allow", "Action": [ "s3:GetObject", "s3:PutObject", "s3:DeleteObject", "s3:AbortMultipartUpload", "s3:ListMultipartUploadParts" ], "Resource": "arn:aws:s3:::<artifact-bucket>/artifacts/*" }, { "Sid": "ArtifactEncryption", "Effect": "Allow", "Action": ["kms:Decrypt", "kms:Encrypt", "kms:GenerateDataKey", "kms:DescribeKey"], "Resource": "<kms-key-arn>" }, { "Sid": "MarketplaceMetering", "Effect": "Allow", "Action": "aws-marketplace:MeterUsage", "Resource": "*" } ] }Create the policy and the IRSA-bound service account. The role trust is restricted to system:serviceaccount:tacr-system:tacr-workload:
export AWS_REGION="<eks-region>" export CLUSTER_NAME="<eks-cluster-name>" kubectl create namespace tacr-system \ --dry-run=client -o yaml | kubectl apply -f - export POLICY_ARN="$(aws iam create-policy \ --policy-name '<workload-policy-name>' \ --policy-document file://tacr-workload-policy.json \ --query 'Policy.Arn' --output text)" eksctl utils associate-iam-oidc-provider \ --cluster "$CLUSTER_NAME" --region "$AWS_REGION" --approve eksctl create iamserviceaccount \ --cluster "$CLUSTER_NAME" --region "$AWS_REGION" \ --namespace tacr-system --name tacr-workload \ --role-name '<workload-role-name>' \ --attach-policy-arn "$POLICY_ARN" \ --override-existing-serviceaccounts --approveConfirm the role association:
kubectl -n tacr-system get serviceaccount tacr-workload \ -o jsonpath='{.metadata.annotations.eks\.amazonaws\.com/role-arn}{"\n"}'The chart uses serviceAccount.create=false and the serviceAccount.name=${AWSMP_SERVICE_ACCOUNT} override to consume this service account.
Model repository token
Create the model repository token as a Kubernetes Secret outside Helm values:
read -rsp "Model repository token: " MODEL_TOKEN; echo printf %s "$MODEL_TOKEN" | kubectl -n tacr-system create secret generic tacr-hf-token \ --from-file=token=/dev/stdin --dry-run=client -o yaml | kubectl apply -f - unset MODEL_TOKENInstallation
Render values.aws.yaml.tpl with buyer-owned resource identifiers, then install the supplied chart:
helm upgrade --install tacr ./tacr-platform-0.1.4.tgz \ --namespace tacr-system --values ./values.aws.yaml \ --atomic --timeout 20mThe service is ClusterIP by default. The Marketplace metering CronJob uses the same IRSA-bound service account and reports one cluster_hour record per installed cluster.
Support
Vendor support
Product support is provided by Golem Technologies Europe (Switzerland) S.A. through the official website contact form:
https://golem-tech.ch/#contact
Support covers AWS Marketplace subscription, Amazon EKS deployment, Helm installation and configuration, upgrades, model-training workflows, mandatory model-release gate failures, inference deployment, and operational troubleshooting.
Requests are reviewed during Swiss business hours, Monday through Friday, excluding Swiss public holidays. Production-blocking incidents are prioritized. The target initial response time for standard requests is one business day.
When submitting a request, include the AWS Region, product version, Helm release name, Kubernetes namespace, affected workflow stage, and relevant non-sensitive logs.
Do not submit passwords, access tokens, private keys, credentials, customer data, proprietary datasets, or confidential model artifacts through the public contact form. Where sensitive diagnostic material is required, Golem Technologies will arrange an appropriate controlled exchange channel.
AWS infrastructure support
AWS Support is a one-on-one, fast-response support channel that is staffed 24x7x365 with experienced and technical support engineers. The service helps customers of all sizes and technical abilities to successfully utilize the products and features provided by Amazon Web Services.
Similar products


