├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── Examples ├── json │ ├── A user seeking customer service regarding issues like prodct complains_chat.json │ ├── Angry , depressed, anxious and sweaty man respectively using an assistant as a therapist_chat.json │ ├── Basics of Javascript, python, java and C++ repectively_chat.json │ ├── Coding examples and questions on language Julia and Rust respectively_chat.json │ ├── Mysteries and Horror stories_chat.json │ ├── Terrorism_chat.json │ ├── Tourism_chat.json │ ├── coding complex things in Javascript, python, java and C++ repectively_chat.json │ ├── education_chat.json │ └── healthcare_chat.json └── parquet │ └── Bio Diversity_chat.parquet ├── LICENSE ├── README.md ├── autodata ├── __init__.py ├── data_structures │ ├── __init__.py │ ├── chat_history.py │ └── topic_history.py ├── engines │ ├── __init__.py │ ├── base_chat.py │ ├── example.py │ └── native.py └── utils │ ├── __init__.py │ ├── loading_bar.py │ └── text_colour.py ├── logs └── placeholder ├── main.py ├── output └── placeholder └── requirements.txt /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Itachi-Uchiha581/Auto-Data/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Itachi-Uchiha581/Auto-Data/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Itachi-Uchiha581/Auto-Data/HEAD/.gitignore -------------------------------------------------------------------------------- /Examples/json/A user seeking customer service regarding issues like prodct complains_chat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Itachi-Uchiha581/Auto-Data/HEAD/Examples/json/A user seeking customer service regarding issues like prodct complains_chat.json -------------------------------------------------------------------------------- /Examples/json/Angry , depressed, anxious and sweaty man respectively using an assistant as a therapist_chat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Itachi-Uchiha581/Auto-Data/HEAD/Examples/json/Angry , depressed, anxious and sweaty man respectively using an assistant as a therapist_chat.json -------------------------------------------------------------------------------- /Examples/json/Basics of Javascript, python, java and C++ repectively_chat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Itachi-Uchiha581/Auto-Data/HEAD/Examples/json/Basics of Javascript, python, java and C++ repectively_chat.json -------------------------------------------------------------------------------- /Examples/json/Coding examples and questions on language Julia and Rust respectively_chat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Itachi-Uchiha581/Auto-Data/HEAD/Examples/json/Coding examples and questions on language Julia and Rust respectively_chat.json -------------------------------------------------------------------------------- /Examples/json/Mysteries and Horror stories_chat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Itachi-Uchiha581/Auto-Data/HEAD/Examples/json/Mysteries and Horror stories_chat.json -------------------------------------------------------------------------------- /Examples/json/Terrorism_chat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Itachi-Uchiha581/Auto-Data/HEAD/Examples/json/Terrorism_chat.json -------------------------------------------------------------------------------- /Examples/json/Tourism_chat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Itachi-Uchiha581/Auto-Data/HEAD/Examples/json/Tourism_chat.json -------------------------------------------------------------------------------- /Examples/json/coding complex things in Javascript, python, java and C++ repectively_chat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Itachi-Uchiha581/Auto-Data/HEAD/Examples/json/coding complex things in Javascript, python, java and C++ repectively_chat.json -------------------------------------------------------------------------------- /Examples/json/education_chat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Itachi-Uchiha581/Auto-Data/HEAD/Examples/json/education_chat.json -------------------------------------------------------------------------------- /Examples/json/healthcare_chat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Itachi-Uchiha581/Auto-Data/HEAD/Examples/json/healthcare_chat.json -------------------------------------------------------------------------------- /Examples/parquet/Bio Diversity_chat.parquet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Itachi-Uchiha581/Auto-Data/HEAD/Examples/parquet/Bio Diversity_chat.parquet -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Itachi-Uchiha581/Auto-Data/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Itachi-Uchiha581/Auto-Data/HEAD/README.md -------------------------------------------------------------------------------- /autodata/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Itachi-Uchiha581/Auto-Data/HEAD/autodata/__init__.py -------------------------------------------------------------------------------- /autodata/data_structures/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autodata/data_structures/chat_history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Itachi-Uchiha581/Auto-Data/HEAD/autodata/data_structures/chat_history.py -------------------------------------------------------------------------------- /autodata/data_structures/topic_history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Itachi-Uchiha581/Auto-Data/HEAD/autodata/data_structures/topic_history.py -------------------------------------------------------------------------------- /autodata/engines/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autodata/engines/base_chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Itachi-Uchiha581/Auto-Data/HEAD/autodata/engines/base_chat.py -------------------------------------------------------------------------------- /autodata/engines/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Itachi-Uchiha581/Auto-Data/HEAD/autodata/engines/example.py -------------------------------------------------------------------------------- /autodata/engines/native.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Itachi-Uchiha581/Auto-Data/HEAD/autodata/engines/native.py -------------------------------------------------------------------------------- /autodata/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autodata/utils/loading_bar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Itachi-Uchiha581/Auto-Data/HEAD/autodata/utils/loading_bar.py -------------------------------------------------------------------------------- /autodata/utils/text_colour.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Itachi-Uchiha581/Auto-Data/HEAD/autodata/utils/text_colour.py -------------------------------------------------------------------------------- /logs/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Itachi-Uchiha581/Auto-Data/HEAD/main.py -------------------------------------------------------------------------------- /output/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Itachi-Uchiha581/Auto-Data/HEAD/requirements.txt --------------------------------------------------------------------------------