├── .env.example ├── .gitignore ├── LICENSE ├── README.md ├── agent.ts ├── package.json ├── pnpm-lock.yaml └── tools ├── math.ts ├── prices.ts └── safe.ts /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-ai-agent-tutorial/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .env -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-ai-agent-tutorial/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-ai-agent-tutorial/HEAD/README.md -------------------------------------------------------------------------------- /agent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-ai-agent-tutorial/HEAD/agent.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-ai-agent-tutorial/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-ai-agent-tutorial/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /tools/math.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-ai-agent-tutorial/HEAD/tools/math.ts -------------------------------------------------------------------------------- /tools/prices.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-ai-agent-tutorial/HEAD/tools/prices.ts -------------------------------------------------------------------------------- /tools/safe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-ai-agent-tutorial/HEAD/tools/safe.ts --------------------------------------------------------------------------------