├── .gitignore ├── LICENSE ├── README.md ├── config.json.example ├── package.json ├── src └── index.ts ├── test └── index.mjs ├── tsconfig.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialAgency-Chat/TChatGPT/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialAgency-Chat/TChatGPT/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialAgency-Chat/TChatGPT/HEAD/README.md -------------------------------------------------------------------------------- /config.json.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialAgency-Chat/TChatGPT/HEAD/config.json.example -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialAgency-Chat/TChatGPT/HEAD/package.json -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialAgency-Chat/TChatGPT/HEAD/src/index.ts -------------------------------------------------------------------------------- /test/index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialAgency-Chat/TChatGPT/HEAD/test/index.mjs -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialAgency-Chat/TChatGPT/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialAgency-Chat/TChatGPT/HEAD/yarn.lock --------------------------------------------------------------------------------