Function
model
(
model: (string & {}) | Model,
config?: Omit<Config.Service, "model">
)
Source from the content-addressed store, hash-verified
| 184 | * @category AiModels |
| 185 | */ |
| 186 | export const model = ( |
| 187 | model: (string & {}) | Model, |
| 188 | config?: Omit<Config.Service, "model"> |
| 189 | ): AiModel.Model<"amazon-bedrock", LanguageModel.LanguageModel, AmazonBedrockClient> => |
| 190 | AiModel.make("amazon-bedrock", layer({ model, config })) |
| 191 | |
| 192 | /** |
| 193 | * @since 1.0.0 |
Callers
nothing calls this directly
Tested by
no test coverage detected