├── .gitignore ├── .idea ├── .gitignore ├── inspectionProfiles │ ├── Project_Default.xml │ └── profiles_settings.xml ├── misc.xml ├── modules.xml ├── text-to-figma-old.iml └── vcs.xml ├── README.md ├── figma-backend ├── .idea │ ├── .gitignore │ ├── autotool-backend.iml │ ├── inspectionProfiles │ │ ├── Project_Default.xml │ │ └── profiles_settings.xml │ ├── misc.xml │ ├── modules.xml │ └── vcs.xml ├── Dockerfile ├── app │ ├── __init__.py │ ├── conversion.py │ ├── data.pkl │ ├── example_data.py │ ├── format_query.py │ ├── gpt3.py │ ├── main.py │ ├── modification.py │ ├── prompt.edit.pkl │ ├── prompt.pkl │ ├── prompt.primary.pkl │ ├── tooljet.py │ ├── types.py │ └── utils.py ├── fly.toml.template ├── requirements.txt ├── scripts │ └── dev.ipynb └── setup.sh └── figma-frontend ├── code.ts ├── manifest.json ├── package-lock.json ├── package.json ├── tsconfig.json ├── ui.html └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayhack/text-to-figma/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayhack/text-to-figma/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayhack/text-to-figma/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayhack/text-to-figma/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayhack/text-to-figma/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayhack/text-to-figma/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/text-to-figma-old.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayhack/text-to-figma/HEAD/.idea/text-to-figma-old.iml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayhack/text-to-figma/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayhack/text-to-figma/HEAD/README.md -------------------------------------------------------------------------------- /figma-backend/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayhack/text-to-figma/HEAD/figma-backend/.idea/.gitignore -------------------------------------------------------------------------------- /figma-backend/.idea/autotool-backend.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayhack/text-to-figma/HEAD/figma-backend/.idea/autotool-backend.iml -------------------------------------------------------------------------------- /figma-backend/.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayhack/text-to-figma/HEAD/figma-backend/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /figma-backend/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayhack/text-to-figma/HEAD/figma-backend/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /figma-backend/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayhack/text-to-figma/HEAD/figma-backend/.idea/misc.xml -------------------------------------------------------------------------------- /figma-backend/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayhack/text-to-figma/HEAD/figma-backend/.idea/modules.xml -------------------------------------------------------------------------------- /figma-backend/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayhack/text-to-figma/HEAD/figma-backend/.idea/vcs.xml -------------------------------------------------------------------------------- /figma-backend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayhack/text-to-figma/HEAD/figma-backend/Dockerfile -------------------------------------------------------------------------------- /figma-backend/app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /figma-backend/app/conversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayhack/text-to-figma/HEAD/figma-backend/app/conversion.py -------------------------------------------------------------------------------- /figma-backend/app/data.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayhack/text-to-figma/HEAD/figma-backend/app/data.pkl -------------------------------------------------------------------------------- /figma-backend/app/example_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayhack/text-to-figma/HEAD/figma-backend/app/example_data.py -------------------------------------------------------------------------------- /figma-backend/app/format_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayhack/text-to-figma/HEAD/figma-backend/app/format_query.py -------------------------------------------------------------------------------- /figma-backend/app/gpt3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayhack/text-to-figma/HEAD/figma-backend/app/gpt3.py -------------------------------------------------------------------------------- /figma-backend/app/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayhack/text-to-figma/HEAD/figma-backend/app/main.py -------------------------------------------------------------------------------- /figma-backend/app/modification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayhack/text-to-figma/HEAD/figma-backend/app/modification.py -------------------------------------------------------------------------------- /figma-backend/app/prompt.edit.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayhack/text-to-figma/HEAD/figma-backend/app/prompt.edit.pkl -------------------------------------------------------------------------------- /figma-backend/app/prompt.pkl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /figma-backend/app/prompt.primary.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayhack/text-to-figma/HEAD/figma-backend/app/prompt.primary.pkl -------------------------------------------------------------------------------- /figma-backend/app/tooljet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayhack/text-to-figma/HEAD/figma-backend/app/tooljet.py -------------------------------------------------------------------------------- /figma-backend/app/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayhack/text-to-figma/HEAD/figma-backend/app/types.py -------------------------------------------------------------------------------- /figma-backend/app/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayhack/text-to-figma/HEAD/figma-backend/app/utils.py -------------------------------------------------------------------------------- /figma-backend/fly.toml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayhack/text-to-figma/HEAD/figma-backend/fly.toml.template -------------------------------------------------------------------------------- /figma-backend/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayhack/text-to-figma/HEAD/figma-backend/requirements.txt -------------------------------------------------------------------------------- /figma-backend/scripts/dev.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayhack/text-to-figma/HEAD/figma-backend/scripts/dev.ipynb -------------------------------------------------------------------------------- /figma-backend/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayhack/text-to-figma/HEAD/figma-backend/setup.sh -------------------------------------------------------------------------------- /figma-frontend/code.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayhack/text-to-figma/HEAD/figma-frontend/code.ts -------------------------------------------------------------------------------- /figma-frontend/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayhack/text-to-figma/HEAD/figma-frontend/manifest.json -------------------------------------------------------------------------------- /figma-frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayhack/text-to-figma/HEAD/figma-frontend/package-lock.json -------------------------------------------------------------------------------- /figma-frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayhack/text-to-figma/HEAD/figma-frontend/package.json -------------------------------------------------------------------------------- /figma-frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayhack/text-to-figma/HEAD/figma-frontend/tsconfig.json -------------------------------------------------------------------------------- /figma-frontend/ui.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayhack/text-to-figma/HEAD/figma-frontend/ui.html -------------------------------------------------------------------------------- /figma-frontend/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayhack/text-to-figma/HEAD/figma-frontend/yarn.lock --------------------------------------------------------------------------------