├── .gitignore ├── LICENSE ├── README.md ├── install.sh ├── nodemon.json ├── package.json ├── public ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt ├── requirements.txt ├── sass.d.ts ├── server.py ├── setup.sh ├── src ├── App.scss ├── App.tsx ├── CookieInput │ └── index.tsx ├── ImageGenerator │ ├── AnimatedInput.scss │ ├── AspectRatioDropdown.tsx │ ├── ImageDisplay.tsx │ ├── PromptInput.tsx │ ├── components.tsx │ └── index.tsx ├── _helpers │ ├── GenerateImage.ts │ ├── GetAspectRatio.ts │ ├── SubmitPrompt.ts │ ├── index.ts │ └── isPortrait.ts ├── index.scss ├── index.tsx ├── logo.svg ├── react-app-env.d.ts ├── reportWebVitals.ts └── setupTests.ts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeBuilds/bittensor-image-generation-webui/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeBuilds/bittensor-image-generation-webui/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeBuilds/bittensor-image-generation-webui/HEAD/README.md -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeBuilds/bittensor-image-generation-webui/HEAD/install.sh -------------------------------------------------------------------------------- /nodemon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeBuilds/bittensor-image-generation-webui/HEAD/nodemon.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeBuilds/bittensor-image-generation-webui/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeBuilds/bittensor-image-generation-webui/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeBuilds/bittensor-image-generation-webui/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeBuilds/bittensor-image-generation-webui/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeBuilds/bittensor-image-generation-webui/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeBuilds/bittensor-image-generation-webui/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeBuilds/bittensor-image-generation-webui/HEAD/public/robots.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | flask 2 | requests -------------------------------------------------------------------------------- /sass.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeBuilds/bittensor-image-generation-webui/HEAD/sass.d.ts -------------------------------------------------------------------------------- /server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeBuilds/bittensor-image-generation-webui/HEAD/server.py -------------------------------------------------------------------------------- /setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeBuilds/bittensor-image-generation-webui/HEAD/setup.sh -------------------------------------------------------------------------------- /src/App.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeBuilds/bittensor-image-generation-webui/HEAD/src/App.scss -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeBuilds/bittensor-image-generation-webui/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/CookieInput/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeBuilds/bittensor-image-generation-webui/HEAD/src/CookieInput/index.tsx -------------------------------------------------------------------------------- /src/ImageGenerator/AnimatedInput.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeBuilds/bittensor-image-generation-webui/HEAD/src/ImageGenerator/AnimatedInput.scss -------------------------------------------------------------------------------- /src/ImageGenerator/AspectRatioDropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeBuilds/bittensor-image-generation-webui/HEAD/src/ImageGenerator/AspectRatioDropdown.tsx -------------------------------------------------------------------------------- /src/ImageGenerator/ImageDisplay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeBuilds/bittensor-image-generation-webui/HEAD/src/ImageGenerator/ImageDisplay.tsx -------------------------------------------------------------------------------- /src/ImageGenerator/PromptInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeBuilds/bittensor-image-generation-webui/HEAD/src/ImageGenerator/PromptInput.tsx -------------------------------------------------------------------------------- /src/ImageGenerator/components.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeBuilds/bittensor-image-generation-webui/HEAD/src/ImageGenerator/components.tsx -------------------------------------------------------------------------------- /src/ImageGenerator/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeBuilds/bittensor-image-generation-webui/HEAD/src/ImageGenerator/index.tsx -------------------------------------------------------------------------------- /src/_helpers/GenerateImage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeBuilds/bittensor-image-generation-webui/HEAD/src/_helpers/GenerateImage.ts -------------------------------------------------------------------------------- /src/_helpers/GetAspectRatio.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeBuilds/bittensor-image-generation-webui/HEAD/src/_helpers/GetAspectRatio.ts -------------------------------------------------------------------------------- /src/_helpers/SubmitPrompt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeBuilds/bittensor-image-generation-webui/HEAD/src/_helpers/SubmitPrompt.ts -------------------------------------------------------------------------------- /src/_helpers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeBuilds/bittensor-image-generation-webui/HEAD/src/_helpers/index.ts -------------------------------------------------------------------------------- /src/_helpers/isPortrait.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeBuilds/bittensor-image-generation-webui/HEAD/src/_helpers/isPortrait.ts -------------------------------------------------------------------------------- /src/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeBuilds/bittensor-image-generation-webui/HEAD/src/index.scss -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeBuilds/bittensor-image-generation-webui/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeBuilds/bittensor-image-generation-webui/HEAD/src/logo.svg -------------------------------------------------------------------------------- /src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /src/reportWebVitals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeBuilds/bittensor-image-generation-webui/HEAD/src/reportWebVitals.ts -------------------------------------------------------------------------------- /src/setupTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeBuilds/bittensor-image-generation-webui/HEAD/src/setupTests.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeBuilds/bittensor-image-generation-webui/HEAD/tsconfig.json --------------------------------------------------------------------------------