├── LICENSE ├── README.md ├── chat_filtering.py ├── chat_main.py ├── conl_main.py ├── constant.py ├── dataset ├── chat_sample.txt └── profile_sample.json ├── personachat_prompt.txt ├── profile_filtering.py ├── profile_main.py ├── prompt_generator.py └── requirements.txt /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/passing2961/PersonaChatGen/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/passing2961/PersonaChatGen/HEAD/README.md -------------------------------------------------------------------------------- /chat_filtering.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/passing2961/PersonaChatGen/HEAD/chat_filtering.py -------------------------------------------------------------------------------- /chat_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/passing2961/PersonaChatGen/HEAD/chat_main.py -------------------------------------------------------------------------------- /conl_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/passing2961/PersonaChatGen/HEAD/conl_main.py -------------------------------------------------------------------------------- /constant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/passing2961/PersonaChatGen/HEAD/constant.py -------------------------------------------------------------------------------- /dataset/chat_sample.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/passing2961/PersonaChatGen/HEAD/dataset/chat_sample.txt -------------------------------------------------------------------------------- /dataset/profile_sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/passing2961/PersonaChatGen/HEAD/dataset/profile_sample.json -------------------------------------------------------------------------------- /personachat_prompt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/passing2961/PersonaChatGen/HEAD/personachat_prompt.txt -------------------------------------------------------------------------------- /profile_filtering.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/passing2961/PersonaChatGen/HEAD/profile_filtering.py -------------------------------------------------------------------------------- /profile_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/passing2961/PersonaChatGen/HEAD/profile_main.py -------------------------------------------------------------------------------- /prompt_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/passing2961/PersonaChatGen/HEAD/prompt_generator.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/passing2961/PersonaChatGen/HEAD/requirements.txt --------------------------------------------------------------------------------