You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
instruction:
I want to create a download website for a app, with a menu bar that includes a homepage and discount
app_type:
Client-Side Web Application
Details
instruction:
I want to create a download website for a app, with a menu bar that includes a homepage and discount
app_type:
Client-Side Web Application
Copilot: Failed to execute step: Specification. Reason: 'NoneType' object has no attribute 'beta'
╭────────────────────────────────────────────────────────────────────────────────────────────────────────────────── Traceback (most recent call last) ──────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ /usr/src/app/gpt_all_star/main.py:66 in main │
│ │
│ 63 │ project = Project( │
│ 64 │ │ step, project_name, japanese_mode, review_mode, debug_mode, plan_and_solve │
│ 65 │ ) │
│ ❱ 66 │ project.start() │
│ 67 │ project.finish() │
│ 68 │ │
│ 69 │ console.print( │
│ │
│ ╭─────────────────────────────────────────────────────────────────────────────────────── locals ───────────────────────────────────────────────────────────────────────────────────────╮ │
│ │ console = ConsoleTerminal(console=, prompt=<rich.prompt.Prompt object at 0x7f4560c8ce00>, main_color='#392AE2', sub_color='#262626') │ │
│ │ debug_mode = False │ │
│ │ japanese_mode = False │ │
│ │ plan_and_solve = False │ │
│ │ project = <gpt_all_star.core.project.Project object at 0x7f455f22aa50> │ │
│ │ project_name = None │ │
│ │ review_mode = False │ │
│ │ step = <StepType.DEFAULT: 'default'> │ │
│ ╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯ │
│ │
│ /usr/src/app/gpt_all_star/core/project.py:157 in start │
│ │
│ 154 │ │ │ japanese_mode=self.japanese_mode, ╭────────────────────────────── locals ───────────────────────────────╮ │
│ 155 │ │ │ plan_and_solve=self.plan_and_solve, │ self = <gpt_all_star.core.project.Project object at 0x7f455f22aa50> │ │
│ 156 │ │ ) ╰─────────────────────────────────────────────────────────────────────╯ │
│ ❱ 157 │ │ self.execute_steps() │
│ 158 │ │ if bool(os.listdir(self.storages.app.path.absolute())): │
│ 159 │ │ │ if self.copilot.confirm(self.("Do you want to execute this application?")): │
│ 160 │ │ │ │ Execution(self.team, self.copilot, self.japanese_mode).run() │
│ │
│ /usr/src/app/gpt_all_star/core/project.py:93 in _execute_steps │
│ │
│ 90 │ def _execute_steps(self) -> None: ╭────────────────────────────── locals ───────────────────────────────╮ │
│ 91 │ │ try: │ self = <gpt_all_star.core.project.Project object at 0x7f455f22aa50> │ │
│ 92 │ │ │ for step in STEPS[self.step_type]: ╰─────────────────────────────────────────────────────────────────────╯ │
│ ❱ 93 │ │ │ │ self.execute_step(step) │
│ 94 │ │ except KeyboardInterrupt: │
│ 95 │ │ │ self.copilot.state(self.("Interrupt received! Stopping...")) │
│ 96
The text was updated successfully, but these errors were encountered: