-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
37 lines (33 loc) · 1.36 KB
/
Copy path.env.example
File metadata and controls
37 lines (33 loc) · 1.36 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# =============================================================================
# fsharp - classical cipher cryptanalysis
# =============================================================================
# The agent cracks Caesar, Vigenere, substitution, and related ciphers by
# streaming the actual attack trail. Yep, the thinking is the demo.
# -----------------------------------------------------------------------------
# --- LLM ---------------------------------------------------------------------
OLLAMA_MODEL=qwen2.5:1.5b-instruct
OLLAMA_URL=http://ollama:11434
OLLAMA_KEEP_ALIVE=5m
OLLAMA_HOST_PORT=11434
# --- ARCP --------------------------------------------------------------------
ARCP_SDK_VERSION=1.0.0
ARCP_RUNTIME_HOST=0.0.0.0
ARCP_RUNTIME_PORT=8080
ARCP_RUNTIME_PATH=/arcp
ARCP_AUTH_TOKEN=dev-token-change-me
ARCP_CLIENT_NAME=fsharp-cipher-client
ARCP_CLIENT_VERSION=1.0.0
ARCP_CLIENT_TIMEOUT_MS=30000
ARCP_AGENT_NAME=cipher.attack
ARCP_CHILD_AGENT_NAME=cipher.slot_attack
# --- Cipher knobs ------------------------------------------------------------
CIPHER_BUDGET_USD=0.20
CIPHER_BUDGET_ITERS=50000
CIPHER_CHILD_BUDGET_ITERS=5000
CIPHER_MAX_KEYLEN=20
CIPHER_HILLCLIMB_BATCH_SIZE=5000
CIPHER_QUADGRAM_CORPUS=/corpora/english_quadgrams.txt
CIPHER_FITNESS_SOLVE_THRESHOLD=-7.5
CIPHER_SAMPLES_DIR=/samples
CIPHER_DEFAULT_SAMPLE=vigenere-lemon.txt
LOG_LEVEL=Information