Skip to content

Commit 12ae2d4

Browse files
committed
refactor: Add necessary imports for API key handling
1 parent e4b65d7 commit 12ae2d4

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

sonar-use-cases/research_finder/research_finder.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@
77
import sys
88
import os
99
from pathlib import Path
10-
from typing import Optional, Dict, Any # Added imports
10+
from typing import Optional, Dict, Any # Added imports
1111

12-
def research_topic(query: str, model: str):
13-
"""Placeholder for research function."""
14-
print(f"Researching: '{query}' using model '{model}'...")
12+
def research_topic(query: str, model: str):
13+
"""Placeholder for research function."""
14+
print(f"Researching: '{query}' using model '{model}'...")
1515
# TODO: Implement API call
1616
return {"summary": "Placeholder summary", "sources": ["placeholder source"]}
1717

0 commit comments

Comments
 (0)