Configuration of the graph
()
| 9 | |
| 10 | @pytest.fixture |
| 11 | def graph_config(): |
| 12 | """ |
| 13 | Configuration of the graph |
| 14 | """ |
| 15 | return { |
| 16 | "llm": { |
| 17 | "model": "ollama/mistral", |
| 18 | "temperature": 0, |
| 19 | "format": "json", |
| 20 | "base_url": "http://localhost:11434", |
| 21 | "library": "beautifulsoup", |
| 22 | }, |
| 23 | "library": "beautifulsoup", |
| 24 | } |
| 25 | |
| 26 | |
| 27 | def test_script_creator_graph(graph_config: dict): |
nothing calls this directly
no outgoing calls
no test coverage detected