├── .gitignore ├── LICENSE ├── README.md ├── __init__.py ├── cells ├── __init__.py ├── cards.py ├── config.py ├── generator.py └── text_analyzer.py ├── main.py ├── organs ├── __init__.py ├── lru_cache.py ├── memories.py ├── memory_graph.py ├── memory_item.py ├── proactive.py ├── thoughts.py └── timeline.py ├── requirements.txt ├── systems ├── __init__.py ├── events.py ├── narrator.py ├── portrait.py ├── searching.py └── value_game.py └── templates ├── default_group.yaml ├── default_person.yaml ├── jail_break_after.txt ├── jail_break_before.txt ├── jail_break_end.txt ├── meaningless.yaml ├── negative.yaml ├── positive.yaml ├── tidy.py └── waifu.yaml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElvisChenML/Waifu/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElvisChenML/Waifu/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElvisChenML/Waifu/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cells/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cells/cards.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElvisChenML/Waifu/HEAD/cells/cards.py -------------------------------------------------------------------------------- /cells/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElvisChenML/Waifu/HEAD/cells/config.py -------------------------------------------------------------------------------- /cells/generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElvisChenML/Waifu/HEAD/cells/generator.py -------------------------------------------------------------------------------- /cells/text_analyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElvisChenML/Waifu/HEAD/cells/text_analyzer.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElvisChenML/Waifu/HEAD/main.py -------------------------------------------------------------------------------- /organs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /organs/lru_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElvisChenML/Waifu/HEAD/organs/lru_cache.py -------------------------------------------------------------------------------- /organs/memories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElvisChenML/Waifu/HEAD/organs/memories.py -------------------------------------------------------------------------------- /organs/memory_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElvisChenML/Waifu/HEAD/organs/memory_graph.py -------------------------------------------------------------------------------- /organs/memory_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElvisChenML/Waifu/HEAD/organs/memory_item.py -------------------------------------------------------------------------------- /organs/proactive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElvisChenML/Waifu/HEAD/organs/proactive.py -------------------------------------------------------------------------------- /organs/thoughts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElvisChenML/Waifu/HEAD/organs/thoughts.py -------------------------------------------------------------------------------- /organs/timeline.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | numpy 2 | pyyaml 3 | requests 4 | networkx -------------------------------------------------------------------------------- /systems/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /systems/events.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /systems/narrator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElvisChenML/Waifu/HEAD/systems/narrator.py -------------------------------------------------------------------------------- /systems/portrait.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /systems/searching.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /systems/value_game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElvisChenML/Waifu/HEAD/systems/value_game.py -------------------------------------------------------------------------------- /templates/default_group.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElvisChenML/Waifu/HEAD/templates/default_group.yaml -------------------------------------------------------------------------------- /templates/default_person.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElvisChenML/Waifu/HEAD/templates/default_person.yaml -------------------------------------------------------------------------------- /templates/jail_break_after.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElvisChenML/Waifu/HEAD/templates/jail_break_after.txt -------------------------------------------------------------------------------- /templates/jail_break_before.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElvisChenML/Waifu/HEAD/templates/jail_break_before.txt -------------------------------------------------------------------------------- /templates/jail_break_end.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/meaningless.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElvisChenML/Waifu/HEAD/templates/meaningless.yaml -------------------------------------------------------------------------------- /templates/negative.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElvisChenML/Waifu/HEAD/templates/negative.yaml -------------------------------------------------------------------------------- /templates/positive.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElvisChenML/Waifu/HEAD/templates/positive.yaml -------------------------------------------------------------------------------- /templates/tidy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElvisChenML/Waifu/HEAD/templates/tidy.py -------------------------------------------------------------------------------- /templates/waifu.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElvisChenML/Waifu/HEAD/templates/waifu.yaml --------------------------------------------------------------------------------