Google Gemini configuration for testing.
()
| 137 | |
| 138 | @pytest.fixture |
| 139 | def gemini_config() -> Dict[str, Any]: |
| 140 | """Google Gemini configuration for testing.""" |
| 141 | api_key = os.getenv("GEMINI_APIKEY", "test-key") |
| 142 | return { |
| 143 | "llm": { |
| 144 | "api_key": api_key, |
| 145 | "model": "gemini/gemini-pro", |
| 146 | "temperature": 0, |
| 147 | }, |
| 148 | "verbose": False, |
| 149 | "headless": True, |
| 150 | } |
| 151 | |
| 152 | |
| 153 | @pytest.fixture(params=[ |
nothing calls this directly
no outgoing calls
no test coverage detected