Skip to content

Files

This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Latest commit

Mar 21, 2025
ff69765 · Mar 21, 2025

History

History
40 lines (31 loc) · 1.02 KB
·

README.md

File metadata and controls

40 lines (31 loc) · 1.02 KB
·

Grok agent example

This example uses the Grok API for responses and XMTP for secure messaging. You can test your agent on xmtp.chat or any other XMTP-compatible client.

Environment variables

To run your XMTP agent, you must create a .env file with the following variables:

WALLET_KEY= # the private key of the wallet
ENCRYPTION_KEY= # encryption key for the local database
GROK_API_KEY= # the API key for the Grok API
XMTP_ENV= # local, dev, production

You can generate random xmtp keys with the following command:

yarn gen:keys <name>

Warning

Running the gen:keys or gen:keys <name> command will append keys to your existing .env file.

Run the agent

# git clone repo
git clone https://github.com/ephemeraHQ/xmtp-agent-examples.git
# go to the folder
cd xmtp-agent-examples
# install packages
yarn
# go to the folder
cd examples/grok
# generate random xmtp keys (optional)
yarn gen:keys
# run the example
yarn dev