feat: implement Anthropic API integration with simulation mode and a configurable admin dashboard

This commit is contained in:
RaymondVerhoef
2026-05-10 12:07:00 +02:00
parent 260644b41a
commit a626042092
7 changed files with 583 additions and 30 deletions

View File

@@ -23,4 +23,10 @@ server {
access_log off;
add_header Cache-Control "public";
}
# Proxy Anthropic API to bypass CORS
location /api/anthropic/ {
proxy_pass https://api.anthropic.com/;
proxy_set_header Host api.anthropic.com;
proxy_ssl_server_name on;
}
}