Skip to content

Commit

Permalink
linting
Browse files Browse the repository at this point in the history
  • Loading branch information
= Enea_Gore committed Dec 4, 2024
1 parent 48af88e commit 05a1a9e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@ async def generate_suggestions(exercise: Exercise, submission: Submission, confi
return await generate_suggestions_basic(exercise, submission, config, debug)
if isinstance(config, ChainOfThoughtConfig):
return await generate_cot_suggestions(exercise, submission, config, debug)
if(isinstance(config, RAGApproachConfig)):
if isinstance(config, RAGApproachConfig):
return await generate_rag_suggestions(exercise, submission, config, debug)
raise ValueError("Unsupported config type provided.")

0 comments on commit 05a1a9e

Please sign in to comment.