Skip to content

Commit c5ddde3

Browse files
authored
Merge branch 'develop' into fix-multi-biome-06
2 parents 2edc9d1 + a00ab78 commit c5ddde3

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

agent/package.json

-2
Original file line numberDiff line numberDiff line change
@@ -66,9 +66,7 @@
6666
"@elizaos/plugin-icp": "workspace:*",
6767
"@elizaos/plugin-initia": "workspace:*",
6868
"@elizaos/plugin-image-generation": "workspace:*",
69-
"@elizaos/plugin-intiface": "workspace:*",
7069
"@elizaos/plugin-lens-network": "workspace:*",
71-
"@elizaos/plugin-letzai": "workspace:*",
7270
"@elizaos/plugin-lit": "workspace:*",
7371
"@elizaos/plugin-massa": "workspace:*",
7472
"@elizaos/plugin-mind-network": "workspace:*",

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
"@polkadot/types-codec": "10.13.1",
5656
"@polkadot/keyring": "12.6.2",
5757
"@ai-sdk/provider": "1.0.6",
58-
"@ai-sdk/provider-utils": "2.1.2",
58+
"@ai-sdk/provider-utils": "2.1.6",
5959
"cookie": "0.7.0",
6060
"bs58": "5.0.0",
6161
"@coral-xyz/anchor": "0.28.0"

packages/core/src/parsing.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ export function parseJSONObjectFromText(
152152
} catch (e) {
153153
console.error("Error parsing JSON:", e);
154154
console.error("Text is not JSON", text);
155-
return extractAttributes(parsingText);
155+
return extractAttributes(text);
156156
}
157157
} else {
158158
const objectPattern = /{[\s\S]*?}/;
@@ -165,7 +165,7 @@ export function parseJSONObjectFromText(
165165
} catch (e) {
166166
console.error("Error parsing JSON:", e);
167167
console.error("Text is not JSON", text);
168-
return extractAttributes(parsingText);
168+
return extractAttributes(text);
169169
}
170170
}
171171
}

0 commit comments

Comments
 (0)