├── .env ├── .DS_Store ├── Public ├── .DS_Store ├── index.html ├── style.css ├── chat-interface.html ├── clone-creation.html ├── script.js └── chat-history-upload.html ├── uploads └── .DS_Store ├── cleaned_chat_history ├── .DS_Store └── .67928bae88857e758791053985b5f450.json.jsonl.swp ├── LICENSE ├── chat_with_model.py ├── clean-chat-history.py ├── telegram-clean-chat-history.py ├── fine-tune.py ├── instagram-messenger-clean-chat-history.py ├── app.js └── README.md /.env: -------------------------------------------------------------------------------- 1 | OPENAI_API_KEY=your_secret_key_here -------------------------------------------------------------------------------- /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohhnagata/clone-factory-v1/HEAD/.DS_Store -------------------------------------------------------------------------------- /Public/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohhnagata/clone-factory-v1/HEAD/Public/.DS_Store -------------------------------------------------------------------------------- /uploads/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohhnagata/clone-factory-v1/HEAD/uploads/.DS_Store -------------------------------------------------------------------------------- /cleaned_chat_history/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohhnagata/clone-factory-v1/HEAD/cleaned_chat_history/.DS_Store -------------------------------------------------------------------------------- /cleaned_chat_history/.67928bae88857e758791053985b5f450.json.jsonl.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kohhnagata/clone-factory-v1/HEAD/cleaned_chat_history/.67928bae88857e758791053985b5f450.json.jsonl.swp -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | WTFPL License 2 | Do What The Fuck You Want To Public License 3 | Copyright (c) 2024 kohei.eth 4 | 5 | Everyone is permitted to copy and distribute verbatim or modified 6 | copies of this license document, and changing it is allowed as long 7 | as the name is changed. 8 | 9 | DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE 10 | TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 11 | 12 | 0. You just DO WHAT THE FUCK YOU WANT TO. -------------------------------------------------------------------------------- /Public/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 |Side Notes:
23 |