# Sogni AI Credentials # Copy this file to .env and fill in your actual credentials # Get your credentials at https://app.sogni.ai # Required: Your Sogni AI username SOGNI_USERNAME=your_sogni_username # Required: Your Sogni AI password SOGNI_PASSWORD=your_sogni_password # Optional: Network preference (fast or relaxed) # SOGNI_NETWORK=fast # Optional: Enable debug logging (true or false) # SOGNI_DEBUG=true # Optional: Preferred LLM model for e2e chat tests. # If not set, the test suite auto-selects the first available LLM model. # SOGNI_LLM_MODEL=qwen3-30b-a3b-gptq-int4 # Optional: Require LLM e2e tests to run. # When true, missing/unavailable LLM models will fail the suite. # When false, LLM tests are skipped if chat models are unavailable. # SOGNI_REQUIRE_LLM_E2E=false # Optional: Require tool-calling e2e assertions to pass. # When true, tool-calling tests fail if no model returns tool_calls. # When false, tool-calling tests are skipped if tool calling is unavailable. # SOGNI_REQUIRE_TOOL_CALL_E2E=false # Optional: e2e test scope. # Set to "llm" to run only LLM/tool-calling tests in test/e2e-test.ts # SOGNI_E2E_SCOPE=llm