AI

You can connect your self-hosted Tines tenant to different AI providers.

If connecting to Anthropic or OpenAI (and other compatible schemas), the configuration is the same as on cloud tenants.

Amazon Bedrock 

Configuring Amazon Bedrock is possible for tenants hosted on AWS infrastructure. Tines make requests to Bedrock using the assumed roles/credentials of the container hosting the Tines instance. Because of this, those credentials must be configured with the following IAM role permissions are required:

{
  "Version": "2012-10-17",
  "Statement": [
    {
      "Sid": "BedrockModelAccessPermissions",
      "Effect": "Allow",
      "Action": [
        "bedrock:InvokeModel*",
        "bedrock:GetInferenceProfile",
        "bedrock:ListInferenceProfiles"
      ],
      "Resource": "*"
    }
  ]
}

ℹ️Info

We recommend enabling the latest Anthropic Claude models for best performance and capabilities.

You can now fully customize which AWS Bedrock models are enabled in Tines, allowing you to select any models available in your AWS region.

Automatic mode 

In order use automatic mode, Run script for self-hosted must be configured and enabled.

Was this helpful?