# AI Testing Suite - Environment Configuration # Copy this file to .env and fill in your values # LLM Provider (choose one) # Option 1: OpenAI OPENAI_API_KEY=your-openai-api-key-here # Option 2: Anthropic ANTHROPIC_API_KEY=your-anthropic-api-key-here # Option 3: Ollama (local, no API key needed) # OLLAMA_BASE_URL=http://localhost:11434 # LLM Configuration LLM_PROVIDER=openai LLM_MODEL=gpt-4o LLM_TEMPERATURE=0.1 LLM_MAX_TOKENS=4096 # Target Project Path (the project you want to test) TARGET_PROJECT_PATH=./ # Output Configuration TESTS_OUTPUT_DIR=./tests REPORTS_OUTPUT_DIR=./reports # Agent Configuration MAX_AGENT_ITERATIONS=10 AGENT_VERBOSE=true # Security Scan Settings SECURITY_SCAN_DEPTH=deep CHECK_ZERO_DAY=true CHECK_OWASP_TOP_10=true CHECK_DEPENDENCIES=true # Test Runner Configuration # TEST_RUNNER=vitest # vitest (default, fastest) | jest | node # E2E_RUNNER=playwright # playwright (default) | supertest | none # COVERAGE_TOOL=v8 # v8 (default, native) | c8 | istanbul