├── .gitignore ├── LICENSE ├── README.md ├── anchors_to_anki.py ├── examples ├── anchors.json ├── anki_ai_utils_tmux_launcher.sh ├── explainer_dataset.txt ├── illustrator_dataset.txt ├── illustrator_sanitize_dataset.txt ├── mnemonics_dataset.txt ├── reformulator_dataset.txt └── string_formatting.py ├── explainer.py ├── illustrator.py ├── mnemonics_creator.py ├── mnemonics_helper.py ├── reformulator.py ├── requirements.txt ├── screenshots ├── illustrator_fever.png └── illustrator_fever_generated.png └── utils ├── anki.py ├── cloze_utils.py ├── datasets.py ├── llm.py ├── logger.py ├── misc.py └── shared.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiswillbeyourgithub/AnkiAIUtils/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiswillbeyourgithub/AnkiAIUtils/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiswillbeyourgithub/AnkiAIUtils/HEAD/README.md -------------------------------------------------------------------------------- /anchors_to_anki.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiswillbeyourgithub/AnkiAIUtils/HEAD/anchors_to_anki.py -------------------------------------------------------------------------------- /examples/anchors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiswillbeyourgithub/AnkiAIUtils/HEAD/examples/anchors.json -------------------------------------------------------------------------------- /examples/anki_ai_utils_tmux_launcher.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiswillbeyourgithub/AnkiAIUtils/HEAD/examples/anki_ai_utils_tmux_launcher.sh -------------------------------------------------------------------------------- /examples/explainer_dataset.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiswillbeyourgithub/AnkiAIUtils/HEAD/examples/explainer_dataset.txt -------------------------------------------------------------------------------- /examples/illustrator_dataset.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiswillbeyourgithub/AnkiAIUtils/HEAD/examples/illustrator_dataset.txt -------------------------------------------------------------------------------- /examples/illustrator_sanitize_dataset.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiswillbeyourgithub/AnkiAIUtils/HEAD/examples/illustrator_sanitize_dataset.txt -------------------------------------------------------------------------------- /examples/mnemonics_dataset.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiswillbeyourgithub/AnkiAIUtils/HEAD/examples/mnemonics_dataset.txt -------------------------------------------------------------------------------- /examples/reformulator_dataset.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiswillbeyourgithub/AnkiAIUtils/HEAD/examples/reformulator_dataset.txt -------------------------------------------------------------------------------- /examples/string_formatting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiswillbeyourgithub/AnkiAIUtils/HEAD/examples/string_formatting.py -------------------------------------------------------------------------------- /explainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiswillbeyourgithub/AnkiAIUtils/HEAD/explainer.py -------------------------------------------------------------------------------- /illustrator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiswillbeyourgithub/AnkiAIUtils/HEAD/illustrator.py -------------------------------------------------------------------------------- /mnemonics_creator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiswillbeyourgithub/AnkiAIUtils/HEAD/mnemonics_creator.py -------------------------------------------------------------------------------- /mnemonics_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiswillbeyourgithub/AnkiAIUtils/HEAD/mnemonics_helper.py -------------------------------------------------------------------------------- /reformulator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiswillbeyourgithub/AnkiAIUtils/HEAD/reformulator.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiswillbeyourgithub/AnkiAIUtils/HEAD/requirements.txt -------------------------------------------------------------------------------- /screenshots/illustrator_fever.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiswillbeyourgithub/AnkiAIUtils/HEAD/screenshots/illustrator_fever.png -------------------------------------------------------------------------------- /screenshots/illustrator_fever_generated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiswillbeyourgithub/AnkiAIUtils/HEAD/screenshots/illustrator_fever_generated.png -------------------------------------------------------------------------------- /utils/anki.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiswillbeyourgithub/AnkiAIUtils/HEAD/utils/anki.py -------------------------------------------------------------------------------- /utils/cloze_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiswillbeyourgithub/AnkiAIUtils/HEAD/utils/cloze_utils.py -------------------------------------------------------------------------------- /utils/datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiswillbeyourgithub/AnkiAIUtils/HEAD/utils/datasets.py -------------------------------------------------------------------------------- /utils/llm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiswillbeyourgithub/AnkiAIUtils/HEAD/utils/llm.py -------------------------------------------------------------------------------- /utils/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiswillbeyourgithub/AnkiAIUtils/HEAD/utils/logger.py -------------------------------------------------------------------------------- /utils/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiswillbeyourgithub/AnkiAIUtils/HEAD/utils/misc.py -------------------------------------------------------------------------------- /utils/shared.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thiswillbeyourgithub/AnkiAIUtils/HEAD/utils/shared.py --------------------------------------------------------------------------------