mirror of
https://github.com/farcasclaudiu/Flowise.git
synced 2026-06-28 21:00:58 +03:00
fix bedrock model empty bug
This commit is contained in:
@@ -143,7 +143,7 @@ class AWSChatBedrock_ChatModels implements INode {
|
||||
|
||||
const obj: BaseBedrockInput & BaseChatModelParams = {
|
||||
region: iRegion,
|
||||
model: customModel ?? iModel,
|
||||
model: customModel ? customModel : iModel,
|
||||
maxTokens: parseInt(iMax_tokens_to_sample, 10),
|
||||
temperature: parseFloat(iTemperature),
|
||||
streaming: streaming ?? true
|
||||
|
||||
Reference in New Issue
Block a user