dank-ai 1.0.1 → 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.build-context-api-agent/Dockerfile +3 -0
- package/.build-context-basic-agent/Dockerfile +3 -0
- package/.build-context-prompt-only-agent/Dockerfile +3 -0
- package/.build-context-webhook-agent/Dockerfile +3 -0
- package/.env.example +22 -0
- package/README.md +66 -1290
- package/agents/example-agent.js +41 -0
- package/dank.config.js +210 -0
- package/docker/package-lock.json +2899 -0
- package/docker/package.json +7 -6
- package/example/README.md +176 -0
- package/example/dank.config.js +301 -0
- package/lib/agent.js +14 -19
- package/lib/cli/init.js +52 -7
- package/lib/project.js +16 -4
- package/package.json +20 -41
package/.env.example
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# Dank AI Agent Environment Variables
|
|
2
|
+
# Copy this file to .env and fill in your API keys
|
|
3
|
+
|
|
4
|
+
# OpenAI Configuration
|
|
5
|
+
OPENAI_API_KEY=your_openai_api_key_here
|
|
6
|
+
OPENAI_MODEL=gpt-3.5-turbo
|
|
7
|
+
|
|
8
|
+
# Anthropic Configuration (optional)
|
|
9
|
+
ANTHROPIC_API_KEY=your_anthropic_api_key_here
|
|
10
|
+
ANTHROPIC_MODEL=claude-3-sonnet-20240229
|
|
11
|
+
|
|
12
|
+
# Google AI Configuration (optional)
|
|
13
|
+
GOOGLE_AI_API_KEY=your_google_ai_api_key_here
|
|
14
|
+
GOOGLE_AI_MODEL=gemini-pro
|
|
15
|
+
|
|
16
|
+
# Agent Configuration
|
|
17
|
+
DANK_LOG_LEVEL=info
|
|
18
|
+
DANK_MAX_CONCURRENT_AGENTS=3
|
|
19
|
+
|
|
20
|
+
# Docker Configuration (optional)
|
|
21
|
+
DOCKER_REGISTRY=your_registry_here
|
|
22
|
+
DOCKER_NAMESPACE=your_namespace_here
|