├── .gitignore ├── LICENSE ├── README.md ├── ai_redditor ├── gpt2 │ ├── generate.py │ └── train.py ├── io_utils.py ├── phc_scraper.py ├── preprocess.py └── reddit_scraper.py ├── data ├── scripts │ ├── preprocess_phc.sh │ ├── preprocess_tifu.sh │ ├── preprocess_writingprompts.sh │ └── scrape_writingprompts.sh └── special_tokens │ ├── phc_special_tokens.json │ ├── phc_special_tokens_v2.json │ └── reddit_special_tokens.json ├── guessing_game ├── .gitignore ├── README.md ├── package.json ├── public │ ├── android-chrome-192x192.png │ ├── android-chrome-512x512.png │ ├── apple-touch-icon.png │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon.ico │ ├── index.html │ ├── manifest.json │ └── robots.txt ├── src │ ├── App.css │ ├── App.js │ ├── fonts │ │ └── RobotoMono │ │ │ ├── RobotoMono-Italic-VariableFont_wght.ttf │ │ │ ├── RobotoMono-VariableFont_wght.ttf │ │ │ └── static │ │ │ ├── RobotoMono-Bold.ttf │ │ │ ├── RobotoMono-BoldItalic.ttf │ │ │ ├── RobotoMono-ExtraLight.ttf │ │ │ ├── RobotoMono-ExtraLightItalic.ttf │ │ │ ├── RobotoMono-Italic.ttf │ │ │ ├── RobotoMono-Light.ttf │ │ │ ├── RobotoMono-LightItalic.ttf │ │ │ ├── RobotoMono-Medium.ttf │ │ │ ├── RobotoMono-MediumItalic.ttf │ │ │ ├── RobotoMono-Regular.ttf │ │ │ ├── RobotoMono-SemiBold.ttf │ │ │ ├── RobotoMono-SemiBoldItalic.ttf │ │ │ ├── RobotoMono-Thin.ttf │ │ │ └── RobotoMono-ThinItalic.ttf │ ├── index.css │ ├── index.js │ ├── pages │ │ ├── HomePage.css │ │ ├── HomePage.js │ │ └── game │ │ │ ├── ConfigPanel.css │ │ │ ├── ConfigPanel.js │ │ │ ├── GameOverPanel.css │ │ │ ├── GameOverPanel.js │ │ │ ├── GamePage.css │ │ │ └── GamePage.js │ └── serviceWorker.js └── yarn.lock ├── notebooks ├── colab_tpu_training.ipynb ├── gpt2_finetune.py └── gpt2_finetune_experiment.ipynb ├── requirements.txt ├── train_phc.sh └── web_service ├── .flaskenv ├── ai_redditor_service ├── __init__.py ├── cli.py ├── config.py ├── events.py ├── extensions.py ├── forms │ ├── __init__.py │ └── generate_forms.py ├── gpt2.py ├── models │ ├── __init__.py │ └── record.py ├── routes │ ├── __init__.py │ ├── api.py │ └── main.py ├── static │ ├── android-chrome-192x192.png │ ├── android-chrome-512x512.png │ ├── apple-touch-icon.png │ ├── css │ │ ├── index.css │ │ └── phc.css │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon.ico │ ├── img │ │ └── phc_avatar.png │ ├── js │ │ └── index.js │ └── vendor │ │ └── clipboard.min.js ├── tasks.py ├── template_filters.py ├── templates │ ├── _layout.html │ ├── phc.html │ ├── tifu.html │ └── writingprompts.html ├── utils.py ├── worker.py └── wsgi.py ├── requirements.txt └── scripts ├── create_fixture_utils.py ├── create_phc_fixture.py ├── create_tifu_fixture.py └── create_wp_fixture.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticglum/ai-redditor/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticglum/ai-redditor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticglum/ai-redditor/HEAD/README.md -------------------------------------------------------------------------------- /ai_redditor/gpt2/generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticglum/ai-redditor/HEAD/ai_redditor/gpt2/generate.py -------------------------------------------------------------------------------- /ai_redditor/gpt2/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticglum/ai-redditor/HEAD/ai_redditor/gpt2/train.py -------------------------------------------------------------------------------- /ai_redditor/io_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticglum/ai-redditor/HEAD/ai_redditor/io_utils.py -------------------------------------------------------------------------------- /ai_redditor/phc_scraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticglum/ai-redditor/HEAD/ai_redditor/phc_scraper.py -------------------------------------------------------------------------------- /ai_redditor/preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticglum/ai-redditor/HEAD/ai_redditor/preprocess.py -------------------------------------------------------------------------------- /ai_redditor/reddit_scraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticglum/ai-redditor/HEAD/ai_redditor/reddit_scraper.py -------------------------------------------------------------------------------- /data/scripts/preprocess_phc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticglum/ai-redditor/HEAD/data/scripts/preprocess_phc.sh -------------------------------------------------------------------------------- /data/scripts/preprocess_tifu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticglum/ai-redditor/HEAD/data/scripts/preprocess_tifu.sh -------------------------------------------------------------------------------- /data/scripts/preprocess_writingprompts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticglum/ai-redditor/HEAD/data/scripts/preprocess_writingprompts.sh -------------------------------------------------------------------------------- /data/scripts/scrape_writingprompts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticglum/ai-redditor/HEAD/data/scripts/scrape_writingprompts.sh -------------------------------------------------------------------------------- /data/special_tokens/phc_special_tokens.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticglum/ai-redditor/HEAD/data/special_tokens/phc_special_tokens.json -------------------------------------------------------------------------------- /data/special_tokens/phc_special_tokens_v2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticglum/ai-redditor/HEAD/data/special_tokens/phc_special_tokens_v2.json -------------------------------------------------------------------------------- /data/special_tokens/reddit_special_tokens.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticglum/ai-redditor/HEAD/data/special_tokens/reddit_special_tokens.json -------------------------------------------------------------------------------- /guessing_game/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticglum/ai-redditor/HEAD/guessing_game/.gitignore -------------------------------------------------------------------------------- /guessing_game/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticglum/ai-redditor/HEAD/guessing_game/README.md -------------------------------------------------------------------------------- /guessing_game/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticglum/ai-redditor/HEAD/guessing_game/package.json -------------------------------------------------------------------------------- /guessing_game/public/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticglum/ai-redditor/HEAD/guessing_game/public/android-chrome-192x192.png -------------------------------------------------------------------------------- /guessing_game/public/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticglum/ai-redditor/HEAD/guessing_game/public/android-chrome-512x512.png -------------------------------------------------------------------------------- /guessing_game/public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticglum/ai-redditor/HEAD/guessing_game/public/apple-touch-icon.png -------------------------------------------------------------------------------- /guessing_game/public/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticglum/ai-redditor/HEAD/guessing_game/public/favicon-16x16.png -------------------------------------------------------------------------------- /guessing_game/public/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticglum/ai-redditor/HEAD/guessing_game/public/favicon-32x32.png -------------------------------------------------------------------------------- /guessing_game/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticglum/ai-redditor/HEAD/guessing_game/public/favicon.ico -------------------------------------------------------------------------------- /guessing_game/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticglum/ai-redditor/HEAD/guessing_game/public/index.html -------------------------------------------------------------------------------- /guessing_game/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticglum/ai-redditor/HEAD/guessing_game/public/manifest.json -------------------------------------------------------------------------------- /guessing_game/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticglum/ai-redditor/HEAD/guessing_game/public/robots.txt -------------------------------------------------------------------------------- /guessing_game/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticglum/ai-redditor/HEAD/guessing_game/src/App.css -------------------------------------------------------------------------------- /guessing_game/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticglum/ai-redditor/HEAD/guessing_game/src/App.js -------------------------------------------------------------------------------- /guessing_game/src/fonts/RobotoMono/RobotoMono-Italic-VariableFont_wght.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticglum/ai-redditor/HEAD/guessing_game/src/fonts/RobotoMono/RobotoMono-Italic-VariableFont_wght.ttf -------------------------------------------------------------------------------- /guessing_game/src/fonts/RobotoMono/RobotoMono-VariableFont_wght.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticglum/ai-redditor/HEAD/guessing_game/src/fonts/RobotoMono/RobotoMono-VariableFont_wght.ttf -------------------------------------------------------------------------------- /guessing_game/src/fonts/RobotoMono/static/RobotoMono-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticglum/ai-redditor/HEAD/guessing_game/src/fonts/RobotoMono/static/RobotoMono-Bold.ttf -------------------------------------------------------------------------------- /guessing_game/src/fonts/RobotoMono/static/RobotoMono-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticglum/ai-redditor/HEAD/guessing_game/src/fonts/RobotoMono/static/RobotoMono-BoldItalic.ttf -------------------------------------------------------------------------------- /guessing_game/src/fonts/RobotoMono/static/RobotoMono-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticglum/ai-redditor/HEAD/guessing_game/src/fonts/RobotoMono/static/RobotoMono-ExtraLight.ttf -------------------------------------------------------------------------------- /guessing_game/src/fonts/RobotoMono/static/RobotoMono-ExtraLightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticglum/ai-redditor/HEAD/guessing_game/src/fonts/RobotoMono/static/RobotoMono-ExtraLightItalic.ttf -------------------------------------------------------------------------------- /guessing_game/src/fonts/RobotoMono/static/RobotoMono-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticglum/ai-redditor/HEAD/guessing_game/src/fonts/RobotoMono/static/RobotoMono-Italic.ttf -------------------------------------------------------------------------------- /guessing_game/src/fonts/RobotoMono/static/RobotoMono-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticglum/ai-redditor/HEAD/guessing_game/src/fonts/RobotoMono/static/RobotoMono-Light.ttf -------------------------------------------------------------------------------- /guessing_game/src/fonts/RobotoMono/static/RobotoMono-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticglum/ai-redditor/HEAD/guessing_game/src/fonts/RobotoMono/static/RobotoMono-LightItalic.ttf -------------------------------------------------------------------------------- /guessing_game/src/fonts/RobotoMono/static/RobotoMono-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticglum/ai-redditor/HEAD/guessing_game/src/fonts/RobotoMono/static/RobotoMono-Medium.ttf -------------------------------------------------------------------------------- /guessing_game/src/fonts/RobotoMono/static/RobotoMono-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticglum/ai-redditor/HEAD/guessing_game/src/fonts/RobotoMono/static/RobotoMono-MediumItalic.ttf -------------------------------------------------------------------------------- /guessing_game/src/fonts/RobotoMono/static/RobotoMono-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticglum/ai-redditor/HEAD/guessing_game/src/fonts/RobotoMono/static/RobotoMono-Regular.ttf -------------------------------------------------------------------------------- /guessing_game/src/fonts/RobotoMono/static/RobotoMono-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticglum/ai-redditor/HEAD/guessing_game/src/fonts/RobotoMono/static/RobotoMono-SemiBold.ttf -------------------------------------------------------------------------------- /guessing_game/src/fonts/RobotoMono/static/RobotoMono-SemiBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticglum/ai-redditor/HEAD/guessing_game/src/fonts/RobotoMono/static/RobotoMono-SemiBoldItalic.ttf -------------------------------------------------------------------------------- /guessing_game/src/fonts/RobotoMono/static/RobotoMono-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticglum/ai-redditor/HEAD/guessing_game/src/fonts/RobotoMono/static/RobotoMono-Thin.ttf -------------------------------------------------------------------------------- /guessing_game/src/fonts/RobotoMono/static/RobotoMono-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticglum/ai-redditor/HEAD/guessing_game/src/fonts/RobotoMono/static/RobotoMono-ThinItalic.ttf -------------------------------------------------------------------------------- /guessing_game/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticglum/ai-redditor/HEAD/guessing_game/src/index.css -------------------------------------------------------------------------------- /guessing_game/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticglum/ai-redditor/HEAD/guessing_game/src/index.js -------------------------------------------------------------------------------- /guessing_game/src/pages/HomePage.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticglum/ai-redditor/HEAD/guessing_game/src/pages/HomePage.css -------------------------------------------------------------------------------- /guessing_game/src/pages/HomePage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticglum/ai-redditor/HEAD/guessing_game/src/pages/HomePage.js -------------------------------------------------------------------------------- /guessing_game/src/pages/game/ConfigPanel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticglum/ai-redditor/HEAD/guessing_game/src/pages/game/ConfigPanel.css -------------------------------------------------------------------------------- /guessing_game/src/pages/game/ConfigPanel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticglum/ai-redditor/HEAD/guessing_game/src/pages/game/ConfigPanel.js -------------------------------------------------------------------------------- /guessing_game/src/pages/game/GameOverPanel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticglum/ai-redditor/HEAD/guessing_game/src/pages/game/GameOverPanel.css -------------------------------------------------------------------------------- /guessing_game/src/pages/game/GameOverPanel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticglum/ai-redditor/HEAD/guessing_game/src/pages/game/GameOverPanel.js -------------------------------------------------------------------------------- /guessing_game/src/pages/game/GamePage.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticglum/ai-redditor/HEAD/guessing_game/src/pages/game/GamePage.css -------------------------------------------------------------------------------- /guessing_game/src/pages/game/GamePage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticglum/ai-redditor/HEAD/guessing_game/src/pages/game/GamePage.js -------------------------------------------------------------------------------- /guessing_game/src/serviceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticglum/ai-redditor/HEAD/guessing_game/src/serviceWorker.js -------------------------------------------------------------------------------- /guessing_game/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticglum/ai-redditor/HEAD/guessing_game/yarn.lock -------------------------------------------------------------------------------- /notebooks/colab_tpu_training.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticglum/ai-redditor/HEAD/notebooks/colab_tpu_training.ipynb -------------------------------------------------------------------------------- /notebooks/gpt2_finetune.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticglum/ai-redditor/HEAD/notebooks/gpt2_finetune.py -------------------------------------------------------------------------------- /notebooks/gpt2_finetune_experiment.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticglum/ai-redditor/HEAD/notebooks/gpt2_finetune_experiment.ipynb -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticglum/ai-redditor/HEAD/requirements.txt -------------------------------------------------------------------------------- /train_phc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticglum/ai-redditor/HEAD/train_phc.sh -------------------------------------------------------------------------------- /web_service/.flaskenv: -------------------------------------------------------------------------------- 1 | FLASK_APP="./ai_redditor_service/__init__.py" -------------------------------------------------------------------------------- /web_service/ai_redditor_service/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticglum/ai-redditor/HEAD/web_service/ai_redditor_service/__init__.py -------------------------------------------------------------------------------- /web_service/ai_redditor_service/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticglum/ai-redditor/HEAD/web_service/ai_redditor_service/cli.py -------------------------------------------------------------------------------- /web_service/ai_redditor_service/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticglum/ai-redditor/HEAD/web_service/ai_redditor_service/config.py -------------------------------------------------------------------------------- /web_service/ai_redditor_service/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticglum/ai-redditor/HEAD/web_service/ai_redditor_service/events.py -------------------------------------------------------------------------------- /web_service/ai_redditor_service/extensions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticglum/ai-redditor/HEAD/web_service/ai_redditor_service/extensions.py -------------------------------------------------------------------------------- /web_service/ai_redditor_service/forms/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticglum/ai-redditor/HEAD/web_service/ai_redditor_service/forms/__init__.py -------------------------------------------------------------------------------- /web_service/ai_redditor_service/forms/generate_forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticglum/ai-redditor/HEAD/web_service/ai_redditor_service/forms/generate_forms.py -------------------------------------------------------------------------------- /web_service/ai_redditor_service/gpt2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticglum/ai-redditor/HEAD/web_service/ai_redditor_service/gpt2.py -------------------------------------------------------------------------------- /web_service/ai_redditor_service/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticglum/ai-redditor/HEAD/web_service/ai_redditor_service/models/__init__.py -------------------------------------------------------------------------------- /web_service/ai_redditor_service/models/record.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticglum/ai-redditor/HEAD/web_service/ai_redditor_service/models/record.py -------------------------------------------------------------------------------- /web_service/ai_redditor_service/routes/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticglum/ai-redditor/HEAD/web_service/ai_redditor_service/routes/__init__.py -------------------------------------------------------------------------------- /web_service/ai_redditor_service/routes/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticglum/ai-redditor/HEAD/web_service/ai_redditor_service/routes/api.py -------------------------------------------------------------------------------- /web_service/ai_redditor_service/routes/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticglum/ai-redditor/HEAD/web_service/ai_redditor_service/routes/main.py -------------------------------------------------------------------------------- /web_service/ai_redditor_service/static/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticglum/ai-redditor/HEAD/web_service/ai_redditor_service/static/android-chrome-192x192.png -------------------------------------------------------------------------------- /web_service/ai_redditor_service/static/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticglum/ai-redditor/HEAD/web_service/ai_redditor_service/static/android-chrome-512x512.png -------------------------------------------------------------------------------- /web_service/ai_redditor_service/static/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticglum/ai-redditor/HEAD/web_service/ai_redditor_service/static/apple-touch-icon.png -------------------------------------------------------------------------------- /web_service/ai_redditor_service/static/css/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticglum/ai-redditor/HEAD/web_service/ai_redditor_service/static/css/index.css -------------------------------------------------------------------------------- /web_service/ai_redditor_service/static/css/phc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticglum/ai-redditor/HEAD/web_service/ai_redditor_service/static/css/phc.css -------------------------------------------------------------------------------- /web_service/ai_redditor_service/static/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticglum/ai-redditor/HEAD/web_service/ai_redditor_service/static/favicon-16x16.png -------------------------------------------------------------------------------- /web_service/ai_redditor_service/static/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticglum/ai-redditor/HEAD/web_service/ai_redditor_service/static/favicon-32x32.png -------------------------------------------------------------------------------- /web_service/ai_redditor_service/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticglum/ai-redditor/HEAD/web_service/ai_redditor_service/static/favicon.ico -------------------------------------------------------------------------------- /web_service/ai_redditor_service/static/img/phc_avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticglum/ai-redditor/HEAD/web_service/ai_redditor_service/static/img/phc_avatar.png -------------------------------------------------------------------------------- /web_service/ai_redditor_service/static/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticglum/ai-redditor/HEAD/web_service/ai_redditor_service/static/js/index.js -------------------------------------------------------------------------------- /web_service/ai_redditor_service/static/vendor/clipboard.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticglum/ai-redditor/HEAD/web_service/ai_redditor_service/static/vendor/clipboard.min.js -------------------------------------------------------------------------------- /web_service/ai_redditor_service/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticglum/ai-redditor/HEAD/web_service/ai_redditor_service/tasks.py -------------------------------------------------------------------------------- /web_service/ai_redditor_service/template_filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticglum/ai-redditor/HEAD/web_service/ai_redditor_service/template_filters.py -------------------------------------------------------------------------------- /web_service/ai_redditor_service/templates/_layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticglum/ai-redditor/HEAD/web_service/ai_redditor_service/templates/_layout.html -------------------------------------------------------------------------------- /web_service/ai_redditor_service/templates/phc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticglum/ai-redditor/HEAD/web_service/ai_redditor_service/templates/phc.html -------------------------------------------------------------------------------- /web_service/ai_redditor_service/templates/tifu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticglum/ai-redditor/HEAD/web_service/ai_redditor_service/templates/tifu.html -------------------------------------------------------------------------------- /web_service/ai_redditor_service/templates/writingprompts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticglum/ai-redditor/HEAD/web_service/ai_redditor_service/templates/writingprompts.html -------------------------------------------------------------------------------- /web_service/ai_redditor_service/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticglum/ai-redditor/HEAD/web_service/ai_redditor_service/utils.py -------------------------------------------------------------------------------- /web_service/ai_redditor_service/worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticglum/ai-redditor/HEAD/web_service/ai_redditor_service/worker.py -------------------------------------------------------------------------------- /web_service/ai_redditor_service/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticglum/ai-redditor/HEAD/web_service/ai_redditor_service/wsgi.py -------------------------------------------------------------------------------- /web_service/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticglum/ai-redditor/HEAD/web_service/requirements.txt -------------------------------------------------------------------------------- /web_service/scripts/create_fixture_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticglum/ai-redditor/HEAD/web_service/scripts/create_fixture_utils.py -------------------------------------------------------------------------------- /web_service/scripts/create_phc_fixture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticglum/ai-redditor/HEAD/web_service/scripts/create_phc_fixture.py -------------------------------------------------------------------------------- /web_service/scripts/create_tifu_fixture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticglum/ai-redditor/HEAD/web_service/scripts/create_tifu_fixture.py -------------------------------------------------------------------------------- /web_service/scripts/create_wp_fixture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticglum/ai-redditor/HEAD/web_service/scripts/create_wp_fixture.py --------------------------------------------------------------------------------