Created
February 28, 2025 14:49
-
-
Save codeas/fdb5c38faa94b5cdb02a870d5a3e69bb to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function start() { | |
const REGION = "us-central1"; | |
const GCP_PROJECT_ID = "gcp-kutil"; | |
const task = ` | |
- Create a new label 'DEMO' in Gmail | |
- create only if it did not exist. | |
- Load last 10 emails with subject 'Security alert'. | |
- SET this new label 'DEMO' to found emails | |
`; | |
const developer = new Agent(); | |
developer.setup(REGION, GCP_PROJECT_ID) | |
developer.setTask(task); | |
developer.act(); | |
developer.dryRun(); | |
//developer.run() | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment