├── .github └── FUNDING.yml ├── .gitignore ├── CHANGELOG.md ├── COPYING ├── README.md ├── doc ├── org-ai-demo-1.gif ├── org-ai-demo-2.gif ├── org-ai-demo-3.gif ├── org-ai-on-project-buffer.png └── org-ai-youtube-thumb-github.png ├── org-ai-block.el ├── org-ai-on-project.el ├── org-ai-oobabooga.el ├── org-ai-openai-image.el ├── org-ai-openai.el ├── org-ai-sd.el ├── org-ai-talk.el ├── org-ai-useful.el ├── org-ai.el └── snippets └── org-mode ├── org-ai-block └── org-ai-image /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [rksm] 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.elc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rksm/org-ai/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rksm/org-ai/HEAD/COPYING -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rksm/org-ai/HEAD/README.md -------------------------------------------------------------------------------- /doc/org-ai-demo-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rksm/org-ai/HEAD/doc/org-ai-demo-1.gif -------------------------------------------------------------------------------- /doc/org-ai-demo-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rksm/org-ai/HEAD/doc/org-ai-demo-2.gif -------------------------------------------------------------------------------- /doc/org-ai-demo-3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rksm/org-ai/HEAD/doc/org-ai-demo-3.gif -------------------------------------------------------------------------------- /doc/org-ai-on-project-buffer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rksm/org-ai/HEAD/doc/org-ai-on-project-buffer.png -------------------------------------------------------------------------------- /doc/org-ai-youtube-thumb-github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rksm/org-ai/HEAD/doc/org-ai-youtube-thumb-github.png -------------------------------------------------------------------------------- /org-ai-block.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rksm/org-ai/HEAD/org-ai-block.el -------------------------------------------------------------------------------- /org-ai-on-project.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rksm/org-ai/HEAD/org-ai-on-project.el -------------------------------------------------------------------------------- /org-ai-oobabooga.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rksm/org-ai/HEAD/org-ai-oobabooga.el -------------------------------------------------------------------------------- /org-ai-openai-image.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rksm/org-ai/HEAD/org-ai-openai-image.el -------------------------------------------------------------------------------- /org-ai-openai.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rksm/org-ai/HEAD/org-ai-openai.el -------------------------------------------------------------------------------- /org-ai-sd.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rksm/org-ai/HEAD/org-ai-sd.el -------------------------------------------------------------------------------- /org-ai-talk.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rksm/org-ai/HEAD/org-ai-talk.el -------------------------------------------------------------------------------- /org-ai-useful.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rksm/org-ai/HEAD/org-ai-useful.el -------------------------------------------------------------------------------- /org-ai.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rksm/org-ai/HEAD/org-ai.el -------------------------------------------------------------------------------- /snippets/org-mode/org-ai-block: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rksm/org-ai/HEAD/snippets/org-mode/org-ai-block -------------------------------------------------------------------------------- /snippets/org-mode/org-ai-image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rksm/org-ai/HEAD/snippets/org-mode/org-ai-image --------------------------------------------------------------------------------