Skip to content

Commit 86ddeb2

Browse files
committed
The SQLMapRunner class has been replaced with SQLMapAPIRunner, which now manages API interactions for task creation, scanning, and result retrieval.
1 parent ad48654 commit 86ddeb2

3 files changed

Lines changed: 439 additions & 190 deletions

File tree

sqlmap_ai/ai_analyzer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ def ai_suggest_next_steps(report, scan_history=None, extracted_data=None):
1111
structured_info = extract_sqlmap_info(report)
1212
prompt = create_advanced_prompt(report, structured_info, scan_history, extracted_data)
1313
print_info("Sending detailed analysis request to Groq AI...")
14-
response = get_groq_response(prompt=prompt, model="qwen-2.5-coder-32b")
14+
response = get_groq_response(prompt=prompt)
1515
if not response:
1616
print_warning("AI couldn't suggest options, using fallback options")
1717
return ["--technique=BEU", "--level=3"]

0 commit comments

Comments
 (0)