Skip to content

Commit 396ba66

Browse files
Merge pull request #1 from michael-aires/claude/docuseal-template-builder-011CUXNjkQ8hmr7wPuwKWHQV
feat: Add Claude Computer Use Agent for DocuSeal Template Builder
2 parents b9ff28a + f2e7114 commit 396ba66

File tree

17 files changed

+5557
-0
lines changed

17 files changed

+5557
-0
lines changed

computer-use-demo/.env.example

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
# Anthropic API Configuration
2+
ANTHROPIC_API_KEY=your_anthropic_api_key_here
3+
4+
# API Provider (anthropic, bedrock, or vertex)
5+
API_PROVIDER=anthropic
6+
7+
# DocuSeal Configuration
8+
DOCUSEAL_URL=http://docuseal:3000
9+
DOCUSEAL_API_KEY=your_docuseal_api_key_here
10+
DOCUSEAL_PUBLIC_URL=http://localhost:3000
11+
12+
# DocuSeal Secret Key (CHANGE IN PRODUCTION!)
13+
# Generate with: openssl rand -hex 32
14+
SECRET_KEY_BASE=change_me_in_production_minimum_32_characters_long_secret_key
15+
16+
# Display Configuration
17+
WIDTH=1024
18+
HEIGHT=768
19+
20+
# Email Configuration (Optional - for DocuSeal notifications)
21+
SMTP_ADDRESS=smtp.example.com
22+
SMTP_PORT=587
23+
SMTP_USERNAME=[email protected]
24+
SMTP_PASSWORD=your_email_password
25+
SMTP_DOMAIN=example.com
26+
27+
# AWS Configuration (if using Bedrock)
28+
AWS_PROFILE=default
29+
AWS_REGION=us-west-2
30+
AWS_ACCESS_KEY_ID=
31+
AWS_SECRET_ACCESS_KEY=
32+
AWS_SESSION_TOKEN=
33+
34+
# Google Cloud Configuration (if using Vertex AI)
35+
VERTEX_REGION=us-central1
36+
VERTEX_PROJECT_ID=your-gcp-project-id
37+
ANTHROPIC_VERTEX_PROJECT_ID=your-gcp-project-id

0 commit comments

Comments
 (0)