gitextract_bfbjkrwc/ ├── .github/ │ └── ISSUE_TEMPLATE/ │ ├── bug_report.md │ ├── feature_request.md │ └── help-request.md ├── .gitignore ├── README.md ├── __init__.py ├── assistants/ │ ├── assistant.py │ ├── assistantp.py │ ├── chat.py │ ├── interview.py │ ├── keys_example.yaml │ ├── one_up.py │ ├── package/ │ │ ├── __init__.py │ │ ├── assistant.py │ │ ├── assistant_p.py │ │ ├── assistant_utils.py │ │ ├── chat.py │ │ ├── interview.py │ │ ├── kokoro.py │ │ └── streamer.py │ ├── prompts/ │ │ ├── assistant.txt │ │ ├── assistantP.txt │ │ ├── attention.txt │ │ ├── chat.txt │ │ ├── eren.txt │ │ ├── interview.txt │ │ ├── interview_end.txt │ │ ├── one-up.txt │ │ ├── prompt.txt │ │ ├── rem.txt │ │ ├── roleplay.txt │ │ └── streamer.txt │ ├── roleplay.py │ ├── streamer.py │ └── utils.py ├── build.py ├── build_multithread.py └── requirements.txt