gitextract_2z_xvd8v/ ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ └── issue模板.md │ └── dependabot.yml ├── .gitignore ├── README.md ├── __init__.py ├── main.py ├── pkg/ │ ├── __init__.py │ ├── accounts/ │ │ └── accmgr.py │ ├── models/ │ │ ├── forward.py │ │ └── interface.py │ ├── process/ │ │ ├── __init__.py │ │ ├── impls/ │ │ │ ├── __init__.py │ │ │ ├── bard.py │ │ │ ├── claude.py │ │ │ ├── edgegpt.py │ │ │ ├── fproxy.py │ │ │ ├── gpt4free.py │ │ │ ├── hugchat.py │ │ │ └── v1impl.py │ │ ├── proccmd.py │ │ ├── procmsg.py │ │ └── revss.py │ └── utils.py ├── requirements.txt └── revcfg-template.py