-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathindex.ts
More file actions
233 lines (198 loc) · 6.8 KB
/
index.ts
File metadata and controls
233 lines (198 loc) · 6.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
import { Agentkit, AgentkitToolkit } from "@0xgasless/agentkit";
// import { Agentkit, AgentkitToolkit } from "@0xgas/agentkit";
import { HumanMessage } from "@langchain/core/messages";
import { MemorySaver } from "@langchain/langgraph";
import { createReactAgent } from "@langchain/langgraph/prebuilt";
import { ChatOpenAI } from "@langchain/openai";
import * as dotenv from "dotenv";
import * as readline from "readline";
dotenv.config();
function validateEnvironment(): void {
const missingVars: string[] = [];
const requiredVars = ["OPENROUTER_API_KEY", "PRIVATE_KEY", "RPC_URL", "API_KEY", "CHAIN_ID"];
requiredVars.forEach(varName => {
if (!process.env[varName]) {
missingVars.push(varName);
}
});
if (missingVars.length > 0) {
console.error("Error: Required environment variables are not set");
missingVars.forEach(varName => {
console.error(`${varName}=your_${varName.toLowerCase()}_here`);
});
process.exit(1);
}
if (!process.env.CHAIN_ID) {
console.warn("Warning: CHAIN_ID not set, defaulting to base-sepolia");
}
}
validateEnvironment();
async function initializeAgent() {
try {
const llm = new ChatOpenAI({
model: "gpt-4o",
openAIApiKey: process.env.OPENROUTER_API_KEY,
configuration: {
baseURL: "https://openrouter.ai/api/v1",
},
});
// Initialize 0xGasless AgentKit
const agentkit = await Agentkit.configureWithWallet({
privateKey: process.env.PRIVATE_KEY as `0x${string}`,
rpcUrl: process.env.RPC_URL,
apiKey: process.env.API_KEY as string,
chainID: Number(process.env.CHAIN_ID) || 8453, // Base Sepolia
});
// Initialize AgentKit Toolkit and get tools
const agentkitToolkit = new AgentkitToolkit(agentkit);
const tools = agentkitToolkit.getTools();
const memory = new MemorySaver();
const agentConfig = { configurable: { thread_id: "0xGasless AgentKit Chatbot Example!" } };
const agent = createReactAgent({
llm,
tools,
checkpointSaver: memory,
messageModifier: `
You are a helpful agent that can interact with EVM chains using 0xGasless smart accounts. You can perform
gasless transactions using the account abstraction wallet. You can check balances of ETH and any ERC20 token
by providing their contract address. If someone asks you to do something you can't do with your currently
available tools, you must say so. Be concise and helpful with your responses.
`,
});
return { agent, config: agentConfig };
} catch (error) {
console.error("Failed to initialize agent:", error);
throw error;
}
}
// For runAutonomousMode, runChatMode, chooseMode and main functions, reference:
/**
* Run the agent autonomously with specified intervals
*
* @param agent - The agent executor
* @param config - Agent configuration
* @param interval - Time interval between actions in seconds
*/
//biome-ignore lint/suspicious/noExplicitAny: <explanation>
// async function runAutonomousMode(agent: any, config: any, interval = 10) {
// console.log("Starting autonomous mode...");
// // eslint-disable-next-line no-constant-condition
// while (true) {
// try {
// const thought =
// "Be creative and do something interesting on the blockchain. " +
// "Choose an action or set of actions and execute it that highlights your abilities.";
// const stream = await agent.stream({ messages: [new HumanMessage(thought)] }, config);
// for await (const chunk of stream) {
// if ("agent" in chunk) {
// console.log(chunk.agent.messages[0].content);
// } else if ("tools" in chunk) {
// console.log(chunk.tools.messages[0].content);
// }
// console.log("-------------------");
// }
// await new Promise(resolve => setTimeout(resolve, interval * 1000));
// } catch (error) {
// if (error instanceof Error) {
// console.error("Error:", error.message);
// }
// process.exit(1);
// }
// }
// }
/**
* Run the agent interactively based on user input
*
* @param agent - The agent executor
* @param config - Agent configuration
*/
//biome-ignore lint/suspicious/noExplicitAny: <explanation>
async function runChatMode(agent: any, config: any) {
console.log("Starting chat mode... Type 'exit' to end.");
const rl = readline.createInterface({
input: process.stdin,
output: process.stdout,
});
const question = (prompt: string): Promise<string> =>
new Promise(resolve => rl.question(prompt, resolve));
try {
while (true) {
const userInput = await question("\nPrompt: ");
if (userInput.toLowerCase() === "exit") {
break;
}
const stream = await agent.stream({ messages: [new HumanMessage(userInput)] }, config);
for await (const chunk of stream) {
if ("agent" in chunk) {
console.log(chunk.agent.messages[0].content);
} else if ("tools" in chunk) {
console.log(chunk.tools.messages[0].content);
}
console.log("-------------------");
}
}
} catch (error) {
if (error instanceof Error) {
console.error("Error:", error.message);
}
process.exit(1);
} finally {
rl.close();
}
}
/**
* Choose whether to run in autonomous or chat mode based on user input
*
* @returns Selected mode
*/
// async function chooseMode(): Promise<"chat" | "auto"> {
// const rl = readline.createInterface({
// input: process.stdin,
// output: process.stdout,
// });
// const question = (prompt: string): Promise<string> =>
// new Promise(resolve => rl.question(prompt, resolve));
// // eslint-disable-next-line no-constant-condition
// while (true) {
// console.log("\nAvailable modes:");
// console.log("1. chat - Interactive chat mode");
// console.log("2. auto - Autonomous action mode");
// const choice = (await question("\nChoose a mode (enter number or name): "))
// .toLowerCase()
// .trim();
// if (choice === "1" || choice === "chat") {
// rl.close();
// return "chat";
// } else if (choice === "2" || choice === "auto") {
// rl.close();
// return "auto";
// }
// console.log("Invalid choice. Please try again.");
// }
// }
/**
* Start the chatbot agent
*/
async function main() {
try {
const { agent, config } = await initializeAgent();
// const mode = await chooseMode();
await runChatMode(agent, config);
// if (mode === "chat") {
// } else {
// await runAutonomousMode(agent, config);
// }
} catch (error) {
if (error instanceof Error) {
console.error("Error:", error.message);
}
process.exit(1);
}
}
if (require.main === module) {
console.log("Starting Agent...");
main().catch(error => {
console.error("Fatal error:", error);
process.exit(1);
});
}