MCPcopy Create free account
hub / github.com/ScrapeGraphAI/Scrapegraph-ai / gemini_config

Function gemini_config

tests/conftest.py:139–150  ·  view source on GitHub ↗

Google Gemini configuration for testing.

()

Source from the content-addressed store, hash-verified

137
138@pytest.fixture
139def 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=[

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected