We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d0a301d commit 3ffa896Copy full SHA for 3ffa896
scrapegraphai/nodes/robots_node.py
@@ -100,8 +100,7 @@ def execute(self, state: dict) -> dict:
100
self.llm_model.model_name = self.llm_model.model_name.split("/")[-1]
101
model = self.llm_model.model_name.split("/")[-1]
102
elif hasattr(self.llm_model, "model_id"): # Bedrock uses model IDs, not model names
103
- self.llm_model.model_name = self.llm_model.model_id.split("/")[-1]
104
- model = self.llm_model.model_name
+ model = self.llm_model.model_id.split("/")[-1]
105
else:
106
model = self.llm_model.model_name
107
try:
0 commit comments