mirror of
https://github.com/farcasclaudiu/Flowise.git
synced 2026-06-28 23:01:09 +03:00
fix bedrock model empty bug
This commit is contained in:
@@ -103,7 +103,7 @@ class AWSBedrockEmbedding_Embeddings implements INode {
|
||||
const customModel = nodeData.inputs?.customModel as string
|
||||
|
||||
const obj: BedrockEmbeddingsParams = {
|
||||
model: customModel ?? iModel,
|
||||
model: customModel ? customModel : iModel,
|
||||
region: iRegion
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user