This file contains hidden or 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
| { | |
| "name": "plagarizer", | |
| "version": "1.0.0", | |
| "description": "", | |
| "main": "main.js", | |
| "scripts": { | |
| "test": "echo \"Error: no test specified\" && exit 1" | |
| }, | |
| "author": "Shrey Pandya", | |
| "license": "MIT", |
This file contains hidden or 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
| import java.io.File; | |
| import java.io.FileNotFoundException; | |
| import java.util.ArrayList; | |
| import java.util.Scanner; | |
| /** | |
| * GettysburgAddress | |
| * @author Shrey Pandya p7 | |
| * | |
| */ |
This file contains hidden or 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
| // Stagehand + Browserbase: an AI agent that researches SEC filings on its own. | |
| // | |
| // We give Stagehand a plain-English task, point it at SEC EDGAR, and let its | |
| // `agent` autonomously navigate, read 10-Q filings, and build a comparison | |
| // table — no selectors, no scraping code, no per-site logic. | |
| import "dotenv/config"; | |
| import { exec } from "node:child_process"; | |
| import { Stagehand } from "@browserbasehq/stagehand"; |