spring-projects / spring-ai

An Application Framework for AI Engineering

Home Page:https://docs.spring.io/spring-ai/reference/1.0-SNAPSHOT/index.html

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Inconsistent constructor visibility of the TitanChatBedrockApi class

codebyjakob opened this issue · comments

The constructor

TitanChatBedrockApi(String modelId, String region) {
  super(modelId, region);
}

of the TitanChatBedrockApi class is currently package-private and not accessible as a user of the library.

The corresponding other [...]Api class constructors of the bedrock clients are public.

I assume this should be public as well.