Skip to content

Commit

Permalink
Remove use_function_calling parameter from suggestion generation func…
Browse files Browse the repository at this point in the history
…tions
  • Loading branch information
LeonWehrhahn committed Jan 31, 2025
1 parent e060cd1 commit 87a93b8
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,6 @@ async def generate_suggestions_by_file(
chat_prompt=chat_prompt,
prompt_input=prompt_input,
pydantic_object=AssessmentModel,
use_function_calling=True,
tags=[
f"exercise-{exercise.id}",
f"submission-{submission.id}",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,6 @@ async def generate_suggestions_by_file(
chat_prompt=chat_prompt,
prompt_input=prompt_input,
pydantic_object=ImprovementModel,
use_function_calling=True,
tags=[
f"exercise-{exercise.id}",
f"submission-{submission.id}",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,6 @@ async def generate_summary_by_file(
chat_prompt=chat_prompt,
prompt_input=prompt_input,
pydantic_object=FileDescription,
use_function_calling=True,
tags=[
f"exercise-{exercise.id}",
f"submission-{submission.id}",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,6 @@ async def split_grading_instructions_by_file(
chat_prompt=chat_prompt,
prompt_input=prompt_input,
pydantic_object=SplitGradingInstructions,
use_function_calling=True,
tags=[
f"exercise-{exercise.id}",
f"submission-{submission.id}",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,6 @@ async def split_problem_statement_by_file(
chat_prompt=chat_prompt,
prompt_input=prompt_input,
pydantic_object=SplitProblemStatement,
use_function_calling=True,
tags=[
f"exercise-{exercise.id}",
f"submission-{submission.id}",
Expand Down

0 comments on commit 87a93b8

Please sign in to comment.