Groq configuration for testing.
()
| 106 | |
| 107 | @pytest.fixture |
| 108 | def 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 |
nothing calls this directly
no outgoing calls
no test coverage detected