Update core_creator/app_blueprint.py
Browse files
core_creator/app_blueprint.py
CHANGED
@@ -42,9 +42,6 @@ def generate_app_blueprint(idea: str, intent: str) -> dict:
|
|
42 |
except Exception as e:
|
43 |
return {"error": str(e), "raw_response": response.choices[0].message.content.strip()}
|
44 |
|
45 |
-
def build_app_code(idea: str, intent: str) -> dict:
|
46 |
-
return generate_app_blueprint(idea, intent)
|
47 |
-
|
48 |
# Example
|
49 |
if __name__ == "__main__":
|
50 |
idea = "Make a robot that waves and greets customers at a store entrance."
|
|
|
42 |
except Exception as e:
|
43 |
return {"error": str(e), "raw_response": response.choices[0].message.content.strip()}
|
44 |
|
|
|
|
|
|
|
45 |
# Example
|
46 |
if __name__ == "__main__":
|
47 |
idea = "Make a robot that waves and greets customers at a store entrance."
|