├── .gitignore ├── ChatSH.ts ├── GenAI.md ├── GenAI.ts ├── HoleFill.ts ├── README.md ├── Refactor.ts ├── Vendors ├── Anthropic.ts ├── Google.ts ├── OpenAI.ts └── xai.ts ├── package.json ├── scripts └── build-esm-wrapper.js └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /ChatSH.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorTaelin/AI-scripts/HEAD/ChatSH.ts -------------------------------------------------------------------------------- /GenAI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorTaelin/AI-scripts/HEAD/GenAI.md -------------------------------------------------------------------------------- /GenAI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorTaelin/AI-scripts/HEAD/GenAI.ts -------------------------------------------------------------------------------- /HoleFill.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorTaelin/AI-scripts/HEAD/HoleFill.ts -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorTaelin/AI-scripts/HEAD/README.md -------------------------------------------------------------------------------- /Refactor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorTaelin/AI-scripts/HEAD/Refactor.ts -------------------------------------------------------------------------------- /Vendors/Anthropic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorTaelin/AI-scripts/HEAD/Vendors/Anthropic.ts -------------------------------------------------------------------------------- /Vendors/Google.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorTaelin/AI-scripts/HEAD/Vendors/Google.ts -------------------------------------------------------------------------------- /Vendors/OpenAI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorTaelin/AI-scripts/HEAD/Vendors/OpenAI.ts -------------------------------------------------------------------------------- /Vendors/xai.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorTaelin/AI-scripts/HEAD/Vendors/xai.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorTaelin/AI-scripts/HEAD/package.json -------------------------------------------------------------------------------- /scripts/build-esm-wrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorTaelin/AI-scripts/HEAD/scripts/build-esm-wrapper.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VictorTaelin/AI-scripts/HEAD/tsconfig.json --------------------------------------------------------------------------------