├── .env.template ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── anthropic_api.py ├── app.py ├── flask_server.py ├── index.html ├── main.css ├── main.js └── requirements.txt /.env.template: -------------------------------------------------------------------------------- 1 | ANTHROPIC_API_KEY=your-api-key-here -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devbret/website-internal-links/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devbret/website-internal-links/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devbret/website-internal-links/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devbret/website-internal-links/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devbret/website-internal-links/HEAD/README.md -------------------------------------------------------------------------------- /anthropic_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devbret/website-internal-links/HEAD/anthropic_api.py -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devbret/website-internal-links/HEAD/app.py -------------------------------------------------------------------------------- /flask_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devbret/website-internal-links/HEAD/flask_server.py -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devbret/website-internal-links/HEAD/index.html -------------------------------------------------------------------------------- /main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devbret/website-internal-links/HEAD/main.css -------------------------------------------------------------------------------- /main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devbret/website-internal-links/HEAD/main.js -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devbret/website-internal-links/HEAD/requirements.txt --------------------------------------------------------------------------------