├── .Rbuildignore ├── .Rhistory ├── .Rproj.user ├── 00B7A8B8 │ ├── cpp-definition-cache │ ├── pcs │ │ ├── debug-breakpoints.pper │ │ ├── files-pane.pper │ │ ├── source-pane.pper │ │ ├── windowlayoutstate.pper │ │ └── workbench-pane.pper │ ├── persistent-state │ ├── rmd-outputs │ ├── saved_source_markers │ └── sources │ │ └── prop │ │ ├── 02AA4C6B │ │ ├── 1BD01A0D │ │ ├── 30C9E700 │ │ ├── A13AA002 │ │ ├── C3F3FA3A │ │ ├── E8AEFE66 │ │ └── INDEX └── shared │ └── notebooks │ ├── CD2DC062-README │ └── 1 │ │ ├── 00B7A8B8c1c5f0b │ │ └── chunks.json │ │ └── s │ │ └── chunks.json │ ├── patch-chunk-names │ └── paths ├── .gitignore ├── DESCRIPTION ├── NAMESPACE ├── R ├── system_prompt.R ├── think.R └── thinkR_addin.R ├── README.Rmd ├── README.md ├── README.nb.html ├── README_cache └── gfm │ ├── __packages │ ├── unnamed-chunk-3_5f8521bc79404d889d277999e6753bb4.RData │ ├── unnamed-chunk-3_5f8521bc79404d889d277999e6753bb4.rdb │ └── unnamed-chunk-3_5f8521bc79404d889d277999e6753bb4.rdx ├── inst ├── rstudio │ └── addins.dcf └── www │ └── thinkR_styles.css ├── llama3_1.results.rds ├── logo.webp ├── man ├── hello.Rd └── thinkr_addin.Rd └── thinkR.Rproj /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelVoxes/thinkR/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.Rhistory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelVoxes/thinkR/HEAD/.Rhistory -------------------------------------------------------------------------------- /.Rproj.user/00B7A8B8/cpp-definition-cache: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /.Rproj.user/00B7A8B8/pcs/debug-breakpoints.pper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelVoxes/thinkR/HEAD/.Rproj.user/00B7A8B8/pcs/debug-breakpoints.pper -------------------------------------------------------------------------------- /.Rproj.user/00B7A8B8/pcs/files-pane.pper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelVoxes/thinkR/HEAD/.Rproj.user/00B7A8B8/pcs/files-pane.pper -------------------------------------------------------------------------------- /.Rproj.user/00B7A8B8/pcs/source-pane.pper: -------------------------------------------------------------------------------- 1 | { 2 | "activeTab": 0 3 | } -------------------------------------------------------------------------------- /.Rproj.user/00B7A8B8/pcs/windowlayoutstate.pper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelVoxes/thinkR/HEAD/.Rproj.user/00B7A8B8/pcs/windowlayoutstate.pper -------------------------------------------------------------------------------- /.Rproj.user/00B7A8B8/pcs/workbench-pane.pper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelVoxes/thinkR/HEAD/.Rproj.user/00B7A8B8/pcs/workbench-pane.pper -------------------------------------------------------------------------------- /.Rproj.user/00B7A8B8/persistent-state: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelVoxes/thinkR/HEAD/.Rproj.user/00B7A8B8/persistent-state -------------------------------------------------------------------------------- /.Rproj.user/00B7A8B8/rmd-outputs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelVoxes/thinkR/HEAD/.Rproj.user/00B7A8B8/rmd-outputs -------------------------------------------------------------------------------- /.Rproj.user/00B7A8B8/saved_source_markers: -------------------------------------------------------------------------------- 1 | {"active_set":"","sets":[]} -------------------------------------------------------------------------------- /.Rproj.user/00B7A8B8/sources/prop/02AA4C6B: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelVoxes/thinkR/HEAD/.Rproj.user/00B7A8B8/sources/prop/02AA4C6B -------------------------------------------------------------------------------- /.Rproj.user/00B7A8B8/sources/prop/1BD01A0D: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelVoxes/thinkR/HEAD/.Rproj.user/00B7A8B8/sources/prop/1BD01A0D -------------------------------------------------------------------------------- /.Rproj.user/00B7A8B8/sources/prop/30C9E700: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelVoxes/thinkR/HEAD/.Rproj.user/00B7A8B8/sources/prop/30C9E700 -------------------------------------------------------------------------------- /.Rproj.user/00B7A8B8/sources/prop/A13AA002: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelVoxes/thinkR/HEAD/.Rproj.user/00B7A8B8/sources/prop/A13AA002 -------------------------------------------------------------------------------- /.Rproj.user/00B7A8B8/sources/prop/C3F3FA3A: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelVoxes/thinkR/HEAD/.Rproj.user/00B7A8B8/sources/prop/C3F3FA3A -------------------------------------------------------------------------------- /.Rproj.user/00B7A8B8/sources/prop/E8AEFE66: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelVoxes/thinkR/HEAD/.Rproj.user/00B7A8B8/sources/prop/E8AEFE66 -------------------------------------------------------------------------------- /.Rproj.user/00B7A8B8/sources/prop/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelVoxes/thinkR/HEAD/.Rproj.user/00B7A8B8/sources/prop/INDEX -------------------------------------------------------------------------------- /.Rproj.user/shared/notebooks/CD2DC062-README/1/00B7A8B8c1c5f0b/chunks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelVoxes/thinkR/HEAD/.Rproj.user/shared/notebooks/CD2DC062-README/1/00B7A8B8c1c5f0b/chunks.json -------------------------------------------------------------------------------- /.Rproj.user/shared/notebooks/CD2DC062-README/1/s/chunks.json: -------------------------------------------------------------------------------- 1 | {"chunk_definitions":[],"doc_write_time":1728217030} -------------------------------------------------------------------------------- /.Rproj.user/shared/notebooks/patch-chunk-names: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.Rproj.user/shared/notebooks/paths: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelVoxes/thinkR/HEAD/.Rproj.user/shared/notebooks/paths -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelVoxes/thinkR/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelVoxes/thinkR/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelVoxes/thinkR/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/system_prompt.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelVoxes/thinkR/HEAD/R/system_prompt.R -------------------------------------------------------------------------------- /R/think.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelVoxes/thinkR/HEAD/R/think.R -------------------------------------------------------------------------------- /R/thinkR_addin.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelVoxes/thinkR/HEAD/R/thinkR_addin.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelVoxes/thinkR/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelVoxes/thinkR/HEAD/README.md -------------------------------------------------------------------------------- /README.nb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelVoxes/thinkR/HEAD/README.nb.html -------------------------------------------------------------------------------- /README_cache/gfm/__packages: -------------------------------------------------------------------------------- 1 | thinkR 2 | -------------------------------------------------------------------------------- /README_cache/gfm/unnamed-chunk-3_5f8521bc79404d889d277999e6753bb4.RData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelVoxes/thinkR/HEAD/README_cache/gfm/unnamed-chunk-3_5f8521bc79404d889d277999e6753bb4.RData -------------------------------------------------------------------------------- /README_cache/gfm/unnamed-chunk-3_5f8521bc79404d889d277999e6753bb4.rdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README_cache/gfm/unnamed-chunk-3_5f8521bc79404d889d277999e6753bb4.rdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelVoxes/thinkR/HEAD/README_cache/gfm/unnamed-chunk-3_5f8521bc79404d889d277999e6753bb4.rdx -------------------------------------------------------------------------------- /inst/rstudio/addins.dcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelVoxes/thinkR/HEAD/inst/rstudio/addins.dcf -------------------------------------------------------------------------------- /inst/www/thinkR_styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelVoxes/thinkR/HEAD/inst/www/thinkR_styles.css -------------------------------------------------------------------------------- /llama3_1.results.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelVoxes/thinkR/HEAD/llama3_1.results.rds -------------------------------------------------------------------------------- /logo.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelVoxes/thinkR/HEAD/logo.webp -------------------------------------------------------------------------------- /man/hello.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelVoxes/thinkR/HEAD/man/hello.Rd -------------------------------------------------------------------------------- /man/thinkr_addin.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelVoxes/thinkR/HEAD/man/thinkr_addin.Rd -------------------------------------------------------------------------------- /thinkR.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelVoxes/thinkR/HEAD/thinkR.Rproj --------------------------------------------------------------------------------