Skip to content

Commit a25eaeb

Browse files
committed
gpt example
1 parent 62a8302 commit a25eaeb

File tree

3 files changed

+301
-2
lines changed

3 files changed

+301
-2
lines changed

examples/gpt/index.ts

+92
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,92 @@
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);

package.json

+2
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
"clean": "rimraf node_modules && yarn clean:dbs",
88
"clean:dbs": "rimraf *.db3* ||:",
99
"examples:gm": "tsx --env-file=.env examples/gm/index.ts",
10+
"examples:gpt": "tsx --env-file=.env examples/gpt/index.ts",
1011
"format": "prettier -w .",
1112
"format:check": "prettier -c .",
1213
"gen:keys": "tsx scripts/generateKeys.ts",
@@ -16,6 +17,7 @@
1617
"dependencies": {
1718
"@xmtp/content-type-text": "^2.0.0",
1819
"@xmtp/node-sdk": "^0.0.40",
20+
"openai": "latest",
1921
"tsx": "^4.19.2",
2022
"uint8arrays": "^5.1.0",
2123
"viem": "^2.22.17"

0 commit comments

Comments
 (0)