1
+ import { openai } from "@ai-sdk/openai" ;
2
+ import { generateText } from "ai" ;
3
+
4
+ import { http } from "viem" ;
5
+ import { createWalletClient } from "viem" ;
6
+ import { privateKeyToAccount } from "viem/accounts" ;
7
+ import { sepolia } from "viem/chains" ;
8
+
9
+ import { getOnChainTools } from "@goat-sdk/adapter-vercel-ai" ;
10
+
11
+ import { viem } from "@goat-sdk/wallet-viem" ;
12
+ import { worldstore } from "@goat-sdk/plugin-worldstore" ;
13
+
14
+ import fs from "fs" ;
15
+ require ( "dotenv" ) . config ( ) ;
16
+
17
+ const account = privateKeyToAccount (
18
+ process . env . WALLET_PRIVATE_KEY as `0x${string } `,
19
+ ) ;
20
+
21
+ const walletClient = createWalletClient ( {
22
+ account : account ,
23
+ transport : http ( process . env . ALCHEMY_API_KEY ) ,
24
+ chain : sepolia ,
25
+ } ) ;
26
+
27
+ ( async ( ) => {
28
+ const tools = await getOnChainTools ( {
29
+ wallet : viem ( walletClient ) ,
30
+ plugins : [
31
+ worldstore ( ) ,
32
+ ] ,
33
+ } ) ;
34
+
35
+ const searchPrompt = "\nI'm looking to buy a new snowboard, my favorite color is red\n" ;
36
+ console . log ( searchPrompt ) ;
37
+ const result = await generateText ( {
38
+ model : openai ( "gpt-4o-mini" ) ,
39
+ tools : tools ,
40
+ maxSteps : 5 ,
41
+ prompt : searchPrompt ,
42
+ } ) ;
43
+
44
+
45
+ const searchProductToolResult = getSearchProductsToolResult ( result ) ;
46
+
47
+ // save result to file
48
+ fs . writeFileSync ( "result.json" , JSON . stringify ( result , null , 2 ) ) ;
49
+
50
+ console . log ( result . text ) ;
51
+ const userResponse = await getUserInput ( ) ;
52
+ console . log ( `\n` ) ;
53
+
54
+
55
+ const purchasePrompt = `
56
+ Previous search result: ${ searchProductToolResult }
57
+
58
+ User response: "${ userResponse } "
59
+
60
+ Based on this response and the previous search result, if the user wants to purchase the item, proceed with the purchase using the product details from the search. If they decline or are unsure, acknowledge their response politely.` ;
61
+
62
+ const purchaseResult = await generateText ( {
63
+ model : openai ( "gpt-4o-mini" ) ,
64
+ tools : tools ,
65
+ maxSteps : 5 ,
66
+ prompt : purchasePrompt ,
67
+ } ) ;
68
+
69
+ console . log ( purchaseResult . text ) ;
70
+
71
+ // console.log(result);
72
+
73
+ // console.log(result.text);
74
+ // Exit the process after user input
75
+ process . exit ( 0 ) ;
76
+ } ) ( ) ;
77
+
78
+
79
+
80
+ function getSearchProductsToolResult ( result : Awaited < ReturnType < typeof generateText > > ) {
81
+ const searchProductToolResult = result . steps [ 0 ] . toolResults . find ( toolResult => ( toolResult as any ) . toolName === "search_products" ) ;
82
+ if ( ! searchProductToolResult ) {
83
+ throw new Error ( "Search products tool result not found" ) ;
84
+ }
85
+ return ( searchProductToolResult as any ) . result ;
86
+ }
87
+
88
+
89
+ // Wait for user input in console to continue
90
+ async function getUserInput ( ) {
91
+ // wait for user input, enter to continue, and convert Buffer to string
92
+
93
+ console . log ( "--------------------------------" ) ;
94
+ console . log ( "Type your response and press enter to continue...\n" ) ;
95
+ return await new Promise < string > ( resolve =>
96
+ process . stdin . once ( 'data' , data => resolve ( data . toString ( ) . trim ( ) ) )
97
+ ) ;
98
+ }
0 commit comments