@t2000/engine 0.56.2 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +0 -1
- package/dist/index.js +1 -2
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -3017,7 +3017,6 @@ var sendTransferTool = buildTool({
|
|
|
3017
3017
|
to: result.to,
|
|
3018
3018
|
contactName: result.contactName,
|
|
3019
3019
|
gasCost: result.gasCost,
|
|
3020
|
-
gasMethod: result.gasMethod,
|
|
3021
3020
|
balance: result.balance,
|
|
3022
3021
|
memo: input.memo ?? null
|
|
3023
3022
|
},
|
|
@@ -3615,7 +3614,7 @@ var webSearchTool = buildTool({
|
|
|
3615
3614
|
isReadOnly: true,
|
|
3616
3615
|
maxResultSizeChars: 8e3,
|
|
3617
3616
|
async call(input, context) {
|
|
3618
|
-
const apiKey = context.env?.BRAVE_API_KEY
|
|
3617
|
+
const apiKey = context.env?.BRAVE_API_KEY;
|
|
3619
3618
|
if (!apiKey) {
|
|
3620
3619
|
return {
|
|
3621
3620
|
data: { results: [], error: "Web search not configured" },
|