mirror of
https://github.com/Pythagora-io/gpt-pilot.git
synced 2026-01-09 21:27:53 -05:00
fixes
This commit is contained in:
@@ -47,7 +47,7 @@ class SpecWriter(BaseAgent):
|
||||
convo = AgentConvo(self).template(
|
||||
"build_full_specification",
|
||||
initial_prompt=description,
|
||||
auth=(self.current_state.knowledge_base or {}).get("auth", False),
|
||||
auth=self.current_state.knowledge_base.user_options.get("auth", False),
|
||||
)
|
||||
|
||||
await self.ui.start_important_stream()
|
||||
@@ -81,7 +81,7 @@ class SpecWriter(BaseAgent):
|
||||
llm_assisted_description = await llm(convo)
|
||||
convo = convo.template(
|
||||
"build_full_specification",
|
||||
auth=(self.current_state.knowledge_base or {}).get("auth", False),
|
||||
auth=self.current_state.knowledge_base.user_options.get("auth", False),
|
||||
initial_prompt=llm_assisted_description.strip(),
|
||||
)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user