Skip to content

Commit 19989fb

Browse files
committedOct 3, 2024·
Merge remote-tracking branch 'private_repo/main'
2 parents c53fc98 + 82aed71 commit 19989fb

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

71 files changed

+1732
-995
lines changed
 

‎.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ venv/
1515
.env
1616
*.pyc
1717
*.db
18+
*.db-shm
19+
*.db-wal
1820
config.json
1921
poetry.lock
2022
.DS_Store

‎core/agents/architect.py

+5-4
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ async def plan_architecture(self, spec: Specification):
168168

169169
await self.send_message("Picking technologies to use ...")
170170

171-
llm = self.get_llm()
171+
llm = self.get_llm(stream_output=True)
172172
convo = (
173173
AgentConvo(self)
174174
.template(
@@ -247,11 +247,12 @@ async def check_system_dependencies(self, spec: Specification):
247247
remedy = "If you would like to use it locally, please install it before proceeding."
248248
await self.send_message(f"❌ {dep['name']} is not available. {remedy}")
249249
await self.ask_question(
250-
f"Once you have installed {dep['name']}, please press Continue.",
251-
buttons={"continue": "Continue"},
250+
"",
251+
buttons={"continue": f"I've installed {dep['name']}"},
252252
buttons_only=True,
253253
default="continue",
254254
)
255+
255256
else:
256257
await self.send_message(f"✅ {dep['name']} is available.")
257258

@@ -271,7 +272,7 @@ async def configure_template(self, spec: Specification, template_class: BaseProj
271272
# If template has no options, no need to ask LLM for anything
272273
return NoOptions()
273274

274-
llm = self.get_llm()
275+
llm = self.get_llm(stream_output=True)
275276
convo = (
276277
AgentConvo(self)
277278
.template(

0 commit comments

Comments
 (0)
Please sign in to comment.