ajndkr / boilerplate-x

🧩 Generate your project boilerplate code auto-magically
MIT License
44 stars 6 forks source link

bug(output): fix project structure chain output #11

Closed ajndkr closed 1 year ago

ajndkr commented 1 year ago

Description

Sometimes the project_structure_chain output does not follow the yaml format. For example,

prompt: a full stack fastapi application with postgresql, single `/chat` endpoint

Project structure:
- Dockerfile
- docker-compose.yml
- requirements.txt
- app/ - __init__.py - main.py - database.py - models.py - schemas.py - crud.py -
  routers/ - __init__.py - chat.py
- migrations/ - alembic.ini - env.py - README - script.py.mako - versions/
- tests/ - __init__.py - test_chat.py
- README.md

Acceptance Criteria