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

Function groq_config

tests/conftest.py:108–119  ·  view source on GitHub ↗

Groq configuration for testing.

()

Source from the content-addressed store, hash-verified

106
107@pytest.fixture
108def groq_config() -> Dict[str, Any]:
109 """Groq configuration for testing."""
110 api_key = os.getenv("GROQ_APIKEY", "test-key")
111 return {
112 "llm": {
113 "api_key": api_key,
114 "model": "groq/llama3-8b-8192",
115 "temperature": 0,
116 },
117 "verbose": False,
118 "headless": True,
119 }
120
121
122@pytest.fixture

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected