├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── main.py └── templates └── index.html /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallel75/AI_GirlFriend/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallel75/AI_GirlFriend/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallel75/AI_GirlFriend/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallel75/AI_GirlFriend/HEAD/README.md -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallel75/AI_GirlFriend/HEAD/main.py -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallel75/AI_GirlFriend/HEAD/templates/index.html --------------------------------------------------------------------------------