mirror of
https://github.com/Pythagora-io/gpt-pilot.git
synced 2026-01-10 13:37:55 -05:00
Remove unnecessary prints
This commit is contained in:
@@ -121,7 +121,6 @@ class Developer(RelevantFilesMixin, BaseAgent):
|
||||
if self.current_state.files and self.current_state.relevant_files is None:
|
||||
await self.get_relevant_files(user_feedback, description)
|
||||
|
||||
await self.send_message("Breaking down the task into steps ...")
|
||||
await self.ui.send_task_progress(
|
||||
n_tasks, # iterations and reviews can be created only one at a time, so we are always on last one
|
||||
n_tasks,
|
||||
@@ -221,7 +220,6 @@ class Developer(RelevantFilesMixin, BaseAgent):
|
||||
self.next_state.flag_tasks_as_modified()
|
||||
|
||||
llm = self.get_llm(PARSE_TASK_AGENT_NAME)
|
||||
await self.send_message("Breaking down the task into steps ...")
|
||||
convo.assistant(response).template("parse_task").require_schema(TaskSteps)
|
||||
response: TaskSteps = await llm(convo, parser=JSONParser(TaskSteps), temperature=0)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user