Listing Thumbnail

    Bounded Agentic AI Workflow Engine for Amazon EKS

     Info
    Deployed on AWS
    Models for Agents built from enterprise workflow topology. Golem compiles rules into training constraints and blocks deployment until the model system passes a 0.0% FAR release gate.

    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

    Delivery method

    Supported services

    Delivery option
    Amazon EKS Helm deployment 1.5.2
    Amazon EKS Helm deployment 1.5.1
    Helm deployment on Amazon EKS

    Latest version

    Operating system
    Linux

    Deployed on AWS
    New

    Introducing multi-product solutions

    You can now purchase comprehensive solutions tailored to use cases and industries.

    Multi-product solutions

    Features and programs

    Financing for AWS Marketplace purchases

    AWS Marketplace now accepts line of credit payments through the PNC Vendor Finance program. This program is available to select AWS customers in the US, excluding NV, NC, ND, TN, & VT.
    Financing for AWS Marketplace purchases

    Pricing

    Bounded Agentic AI Workflow Engine for Amazon EKS

     Info
    Pricing is based on actual usage, with charges varying according to how much you consume. Subscriptions have no end date and may be canceled any time.
    Additional AWS infrastructure costs may apply. Use the AWS Pricing Calculator  to estimate your infrastructure costs.

    Usage costs (1)

     Info
    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?

    Tell us how we can improve this page, or report an issue with this product.
    Tell us how we can improve this page, or report an issue with this product.

    Legal

    Vendor terms and conditions

    Upon subscribing to this product, you must acknowledge and agree to the terms and conditions outlined in the vendor's End User License Agreement (EULA) .

    Content disclaimer

    Vendors are responsible for their product descriptions and other product content. AWS does not warrant that vendors' product descriptions or other product content are accurate, complete, reliable, current, or error-free.

    Usage information

     Info

    Delivery details

    Amazon EKS Helm deployment 1.5.2

    Supported services: Learn more 
    • 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 --approve

    Confirm 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_TOKEN

    Installation

    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 20m

    The 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

    Customer reviews

    Ratings and reviews

     Info
    0 ratings
    5 star
    4 star
    3 star
    2 star
    1 star
    0%
    0%
    0%
    0%
    0%
    0 reviews
    No customer reviews yet
    Be the first to review this product . We've partnered with PeerSpot to gather customer feedback. You can share your experience by writing or recording a review, or scheduling a call with a PeerSpot analyst.