|
| 1 | +import { ContentTypeText } from "@xmtp/content-type-text"; |
| 2 | +import { Client, type XmtpEnv } from "@xmtp/node-sdk"; |
| 3 | +import OpenAI from "openai"; |
| 4 | +import { createSigner, getEncryptionKeyFromHex } from "@/helpers"; |
| 5 | + |
| 6 | +const { WALLET_KEY, ENCRYPTION_KEY, OPENAI_API_KEY } = process.env; |
| 7 | + |
| 8 | +if (!WALLET_KEY) { |
| 9 | + throw new Error("WALLET_KEY must be set"); |
| 10 | +} |
| 11 | + |
| 12 | +if (!ENCRYPTION_KEY) { |
| 13 | + throw new Error("ENCRYPTION_KEY must be set"); |
| 14 | +} |
| 15 | + |
| 16 | +if (!OPENAI_API_KEY) { |
| 17 | + throw new Error("OPENAI_API_KEY must be set"); |
| 18 | +} |
| 19 | + |
| 20 | +const signer = createSigner(WALLET_KEY); |
| 21 | +const encryptionKey = getEncryptionKeyFromHex(ENCRYPTION_KEY); |
| 22 | +const openai = new OpenAI({ apiKey: OPENAI_API_KEY }); |
| 23 | + |
| 24 | +const env: XmtpEnv = "dev"; |
| 25 | + |
| 26 | +async function main() { |
| 27 | + console.log(`Creating client on the '${env}' network...`); |
| 28 | + const client = await Client.create(signer, encryptionKey, { |
| 29 | + env, |
| 30 | + }); |
| 31 | + |
| 32 | + console.log("Syncing conversations..."); |
| 33 | + await client.conversations.sync(); |
| 34 | + |
| 35 | + console.log( |
| 36 | + `Agent initialized on ${client.accountAddress}\nSend a message on http://xmtp.chat/dm/${client.accountAddress}`, |
| 37 | + ); |
| 38 | + |
| 39 | + console.log("Waiting for messages..."); |
| 40 | + const stream = client.conversations.streamAllMessages(); |
| 41 | + |
| 42 | + for await (const message of await stream) { |
| 43 | + if ( |
| 44 | + !message || |
| 45 | + !message.contentType || |
| 46 | + !ContentTypeText.sameAs(message.contentType) |
| 47 | + ) { |
| 48 | + console.log("Invalid message, skipping", message); |
| 49 | + continue; |
| 50 | + } |
| 51 | + |
| 52 | + // Ignore own messages |
| 53 | + if (message.senderInboxId === client.inboxId) { |
| 54 | + continue; |
| 55 | + } |
| 56 | + |
| 57 | + console.log( |
| 58 | + `Received message: ${message.content as string} by ${message.senderInboxId}`, |
| 59 | + ); |
| 60 | + |
| 61 | + const conversation = client.conversations.getConversationById( |
| 62 | + message.conversationId, |
| 63 | + ); |
| 64 | + |
| 65 | + if (!conversation) { |
| 66 | + console.log("Unable to find conversation, skipping"); |
| 67 | + continue; |
| 68 | + } |
| 69 | + |
| 70 | + try { |
| 71 | + const completion = await openai.chat.completions.create({ |
| 72 | + messages: [{ role: "user", content: message.content as string }], |
| 73 | + model: "gpt-3.5-turbo", |
| 74 | + }); |
| 75 | + |
| 76 | + const response = |
| 77 | + completion.choices[0]?.message?.content || |
| 78 | + "I'm not sure how to respond to that."; |
| 79 | + console.log(`Sending AI response: ${response}`); |
| 80 | + await conversation.send(response); |
| 81 | + } catch (error) { |
| 82 | + console.error("Error getting AI response:", error); |
| 83 | + await conversation.send( |
| 84 | + "Sorry, I encountered an error processing your message.", |
| 85 | + ); |
| 86 | + } |
| 87 | + |
| 88 | + console.log("Waiting for messages..."); |
| 89 | + } |
| 90 | +} |
| 91 | + |
| 92 | +main().catch(console.error); |
0 commit comments