├── .gitattributes ├── .github └── workflows │ └── release.yml ├── .gitignore ├── .vscode ├── settings.json └── tasks.json ├── CHANGELOG.md ├── DEV_NOTES.MD ├── LICENSE ├── README.md ├── SECURITY.md ├── biome.json ├── esbuild.config.mjs ├── manifest.json ├── package.json ├── prettier.config.cjs ├── src ├── main.ts ├── open_ai │ ├── AitApi.ts │ ├── ChatBuilder.ts │ └── OpenAiClientLibrary.ts ├── settings │ ├── Promotional.ts │ ├── SettingsTab.ts │ └── settings.ts ├── templater │ ├── InternalModuleAit.ts │ └── Templater.ts └── utils │ └── ActivityIndicator.ts ├── styles.css ├── tsconfig.json ├── version-bump.mjs ├── version-github-action.mjs └── versions.json /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TfTHacker/obsidian-ai-templater/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TfTHacker/obsidian-ai-templater/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TfTHacker/obsidian-ai-templater/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TfTHacker/obsidian-ai-templater/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TfTHacker/obsidian-ai-templater/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /DEV_NOTES.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TfTHacker/obsidian-ai-templater/HEAD/DEV_NOTES.MD -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TfTHacker/obsidian-ai-templater/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TfTHacker/obsidian-ai-templater/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TfTHacker/obsidian-ai-templater/HEAD/SECURITY.md -------------------------------------------------------------------------------- /biome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TfTHacker/obsidian-ai-templater/HEAD/biome.json -------------------------------------------------------------------------------- /esbuild.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TfTHacker/obsidian-ai-templater/HEAD/esbuild.config.mjs -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TfTHacker/obsidian-ai-templater/HEAD/manifest.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TfTHacker/obsidian-ai-templater/HEAD/package.json -------------------------------------------------------------------------------- /prettier.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TfTHacker/obsidian-ai-templater/HEAD/prettier.config.cjs -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TfTHacker/obsidian-ai-templater/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/open_ai/AitApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TfTHacker/obsidian-ai-templater/HEAD/src/open_ai/AitApi.ts -------------------------------------------------------------------------------- /src/open_ai/ChatBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TfTHacker/obsidian-ai-templater/HEAD/src/open_ai/ChatBuilder.ts -------------------------------------------------------------------------------- /src/open_ai/OpenAiClientLibrary.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TfTHacker/obsidian-ai-templater/HEAD/src/open_ai/OpenAiClientLibrary.ts -------------------------------------------------------------------------------- /src/settings/Promotional.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TfTHacker/obsidian-ai-templater/HEAD/src/settings/Promotional.ts -------------------------------------------------------------------------------- /src/settings/SettingsTab.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TfTHacker/obsidian-ai-templater/HEAD/src/settings/SettingsTab.ts -------------------------------------------------------------------------------- /src/settings/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TfTHacker/obsidian-ai-templater/HEAD/src/settings/settings.ts -------------------------------------------------------------------------------- /src/templater/InternalModuleAit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TfTHacker/obsidian-ai-templater/HEAD/src/templater/InternalModuleAit.ts -------------------------------------------------------------------------------- /src/templater/Templater.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TfTHacker/obsidian-ai-templater/HEAD/src/templater/Templater.ts -------------------------------------------------------------------------------- /src/utils/ActivityIndicator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TfTHacker/obsidian-ai-templater/HEAD/src/utils/ActivityIndicator.ts -------------------------------------------------------------------------------- /styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TfTHacker/obsidian-ai-templater/HEAD/styles.css -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TfTHacker/obsidian-ai-templater/HEAD/tsconfig.json -------------------------------------------------------------------------------- /version-bump.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TfTHacker/obsidian-ai-templater/HEAD/version-bump.mjs -------------------------------------------------------------------------------- /version-github-action.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TfTHacker/obsidian-ai-templater/HEAD/version-github-action.mjs -------------------------------------------------------------------------------- /versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TfTHacker/obsidian-ai-templater/HEAD/versions.json --------------------------------------------------------------------------------