├── .Rbuildignore ├── .Renviron ├── .github ├── .gitignore └── workflows │ └── pkgdown.yaml ├── .gitignore ├── CRAN-SUBMISSION ├── DESCRIPTION ├── LICENSE ├── LICENSE.md ├── NAMESPACE ├── NEWS.md ├── R ├── APIProvider.R ├── LLMMessage.R ├── api_azure_openai.R ├── api_claude.R ├── api_deepseek.R ├── api_ellmer.R ├── api_gemini.R ├── api_groq.R ├── api_mistral.R ├── api_ollama.R ├── api_openai.R ├── api_perplexity.R ├── api_voyage.R ├── embedding_helpers.R ├── llm_message.R ├── llm_verbs.R ├── media.R ├── message_retrieval.R ├── pdfbatch.R ├── perform_api_requests.R ├── rate_limits.R ├── tidyllm-package.R ├── tidyllm_schema.R ├── tools.R ├── utilites.R └── zzz.R ├── README.md ├── _pkgdown.yml ├── docs ├── 404.html ├── LICENSE-text.html ├── LICENSE.html ├── apple-touch-icon.png ├── articles │ ├── articles │ │ ├── tidyllm-pdfquestions.html │ │ ├── tidyllm_classifiers.html │ │ ├── tidyllm_embed.html │ │ └── tidyllm_video.html │ ├── file1568f6c1b4565.png │ ├── index.html │ ├── picture.jpeg │ ├── tidyllm-pdfquestions.html │ ├── tidyllm-synthetic-data.html │ ├── tidyllm.html │ ├── tidyllm_classifiers.html │ ├── tidyllm_classifiers_files │ │ └── figure-html │ │ │ ├── accuracy-1.png │ │ │ └── confmatrix-1.png │ ├── tidyllm_embed.html │ ├── tidyllm_embed_files │ │ ├── kePrint-0.0.1 │ │ │ └── kePrint.js │ │ └── lightable-0.0.1 │ │ │ └── lightable.css │ ├── tidyllm_files │ │ └── figure-html │ │ │ └── routputs_base-1.png │ └── tidyllm_video.html ├── authors.html ├── deps │ ├── bootstrap-5.3.1 │ │ ├── bootstrap.bundle.min.js │ │ ├── bootstrap.bundle.min.js.map │ │ └── bootstrap.min.css │ ├── bootstrap-toc-1.0.1 │ │ └── bootstrap-toc.min.js │ ├── clipboard.js-2.0.11 │ │ └── clipboard.min.js │ ├── data-deps.txt │ ├── font-awesome-6.4.2 │ │ ├── css │ │ │ ├── all.css │ │ │ ├── all.min.css │ │ │ ├── v4-shims.css │ │ │ └── v4-shims.min.css │ │ └── webfonts │ │ │ ├── fa-brands-400.ttf │ │ │ ├── fa-brands-400.woff2 │ │ │ ├── fa-regular-400.ttf │ │ │ ├── fa-regular-400.woff2 │ │ │ ├── fa-solid-900.ttf │ │ │ ├── fa-solid-900.woff2 │ │ │ ├── fa-v4compatibility.ttf │ │ │ └── fa-v4compatibility.woff2 │ ├── font-awesome-6.5.2 │ │ ├── css │ │ │ ├── all.css │ │ │ ├── all.min.css │ │ │ ├── v4-shims.css │ │ │ └── v4-shims.min.css │ │ └── webfonts │ │ │ ├── fa-brands-400.ttf │ │ │ ├── fa-brands-400.woff2 │ │ │ ├── fa-regular-400.ttf │ │ │ ├── fa-regular-400.woff2 │ │ │ ├── fa-solid-900.ttf │ │ │ ├── fa-solid-900.woff2 │ │ │ ├── fa-v4compatibility.ttf │ │ │ └── fa-v4compatibility.woff2 │ ├── headroom-0.11.0 │ │ ├── headroom.min.js │ │ └── jQuery.headroom.min.js │ ├── jquery-3.6.0 │ │ ├── jquery-3.6.0.js │ │ ├── jquery-3.6.0.min.js │ │ └── jquery-3.6.0.min.map │ └── search-1.0.0 │ │ ├── autocomplete.jquery.min.js │ │ ├── fuse.min.js │ │ └── mark.min.js ├── favicon-48x48.png ├── favicon.ico ├── favicon.svg ├── index.html ├── katex-auto.js ├── lightswitch.js ├── link.svg ├── logo.png ├── news │ └── index.html ├── pkgdown.js ├── pkgdown.yml ├── reference │ ├── LLMMessage.html │ ├── azure_openai.html │ ├── azure_openai_chat.html │ ├── azure_openai_embedding.html │ ├── cancel_openai_batch.html │ ├── chat.html │ ├── chat_ellmer.html │ ├── chatgpt.html │ ├── check_azure_openai_batch.html │ ├── check_batch.html │ ├── check_claude_batch.html │ ├── check_gemini_batch.html │ ├── check_groq_batch.html │ ├── check_mistral_batch.html │ ├── check_openai_batch.html │ ├── claude.html │ ├── claude_chat.html │ ├── claude_delete_file.html │ ├── claude_file_metadata.html │ ├── claude_list_files.html │ ├── claude_list_models.html │ ├── claude_upload_file.html │ ├── claude_websearch.html │ ├── deepseek.html │ ├── deepseek_chat.html │ ├── df_llm_message.html │ ├── ellmer.html │ ├── ellmer_tool.html │ ├── embed.html │ ├── fetch_azure_openai_batch.html │ ├── fetch_batch.html │ ├── fetch_claude_batch.html │ ├── fetch_gemini_batch.html │ ├── fetch_groq_batch.html │ ├── fetch_mistral_batch.html │ ├── fetch_openai_batch.html │ ├── field_chr.html │ ├── field_dbl.html │ ├── field_fct.html │ ├── field_lgl.html │ ├── field_object.html │ ├── figures │ │ ├── logo.png │ │ ├── single_pixel.png │ │ └── tidyllm.png │ ├── gemini.html │ ├── gemini_chat.html │ ├── gemini_delete_file.html │ ├── gemini_embedding.html │ ├── gemini_file_metadata.html │ ├── gemini_list_files.html │ ├── gemini_list_models.html │ ├── gemini_upload_file.html │ ├── get_logprobs.html │ ├── get_metadata.html │ ├── get_reply.html │ ├── get_reply_data.html │ ├── get_user_message.html │ ├── groq.html │ ├── groq_chat.html │ ├── groq_list_models.html │ ├── groq_transcribe.html │ ├── img.html │ ├── index.html │ ├── last_metadata.html │ ├── last_reply.html │ ├── last_reply_data.html │ ├── last_user_message.html │ ├── list_azure_openai_batches.html │ ├── list_batches.html │ ├── list_claude_batches.html │ ├── list_gemini_batches.html │ ├── list_groq_batches.html │ ├── list_mistral_batches.html │ ├── list_models.html │ ├── list_openai_batches.html │ ├── llm_message.html │ ├── mistral.html │ ├── mistral_chat.html │ ├── mistral_embedding.html │ ├── mistral_list_models.html │ ├── ollama.html │ ├── ollama_chat.html │ ├── ollama_delete_model.html │ ├── ollama_download_model.html │ ├── ollama_embedding.html │ ├── ollama_list_models.html │ ├── openai.html │ ├── openai_chat.html │ ├── openai_embedding.html │ ├── openai_list_models.html │ ├── pdf_page_batch.html │ ├── perplexity.html │ ├── perplexity_chat.html │ ├── rate_limit_info.html │ ├── send_azure_openai_batch.html │ ├── send_batch.html │ ├── send_claude_batch.html │ ├── send_gemini_batch.html │ ├── send_groq_batch.html │ ├── send_mistral_batch.html │ ├── send_ollama_batch.html │ ├── send_openai_batch.html │ ├── tidyllm-package.html │ ├── tidyllm.html │ ├── tidyllm_schema.html │ ├── tidyllm_tool.html │ ├── voyage.html │ └── voyage_embedding.html ├── search.json ├── site.webmanifest ├── sitemap.xml ├── web-app-manifest-192x192.png └── web-app-manifest-512x512.png ├── man ├── LLMMessage.Rd ├── azure_openai.Rd ├── azure_openai_chat.Rd ├── azure_openai_embedding.Rd ├── cancel_openai_batch.Rd ├── chat.Rd ├── chat_ellmer.Rd ├── chatgpt.Rd ├── check_azure_openai_batch.Rd ├── check_batch.Rd ├── check_claude_batch.Rd ├── check_gemini_batch.Rd ├── check_groq_batch.Rd ├── check_mistral_batch.Rd ├── check_openai_batch.Rd ├── claude.Rd ├── claude_chat.Rd ├── claude_delete_file.Rd ├── claude_file_metadata.Rd ├── claude_list_files.Rd ├── claude_list_models.Rd ├── claude_upload_file.Rd ├── claude_websearch.Rd ├── deepseek.Rd ├── deepseek_chat.Rd ├── df_llm_message.Rd ├── ellmer.Rd ├── ellmer_tool.Rd ├── embed.Rd ├── fetch_azure_openai_batch.Rd ├── fetch_batch.Rd ├── fetch_claude_batch.Rd ├── fetch_gemini_batch.Rd ├── fetch_groq_batch.Rd ├── fetch_mistral_batch.Rd ├── fetch_openai_batch.Rd ├── field_chr.Rd ├── field_object.Rd ├── figures │ ├── logo.png │ ├── single_pixel.png │ └── tidyllm.png ├── gemini.Rd ├── gemini_chat.Rd ├── gemini_delete_file.Rd ├── gemini_embedding.Rd ├── gemini_file_metadata.Rd ├── gemini_list_files.Rd ├── gemini_list_models.Rd ├── gemini_upload_file.Rd ├── get_logprobs.Rd ├── get_metadata.Rd ├── get_reply.Rd ├── get_reply_data.Rd ├── get_user_message.Rd ├── groq.Rd ├── groq_chat.Rd ├── groq_list_models.Rd ├── groq_transcribe.Rd ├── img.Rd ├── list_azure_openai_batches.Rd ├── list_batches.Rd ├── list_claude_batches.Rd ├── list_gemini_batches.Rd ├── list_groq_batches.Rd ├── list_mistral_batches.Rd ├── list_models.Rd ├── list_openai_batches.Rd ├── llm_message.Rd ├── mistral.Rd ├── mistral_chat.Rd ├── mistral_embedding.Rd ├── mistral_list_models.Rd ├── ollama.Rd ├── ollama_chat.Rd ├── ollama_delete_model.Rd ├── ollama_download_model.Rd ├── ollama_embedding.Rd ├── ollama_list_models.Rd ├── openai.Rd ├── openai_chat.Rd ├── openai_embedding.Rd ├── openai_list_models.Rd ├── pdf_page_batch.Rd ├── perplexity.Rd ├── perplexity_chat.Rd ├── rate_limit_info.Rd ├── send_azure_openai_batch.Rd ├── send_batch.Rd ├── send_claude_batch.Rd ├── send_gemini_batch.Rd ├── send_groq_batch.Rd ├── send_mistral_batch.Rd ├── send_ollama_batch.Rd ├── send_openai_batch.Rd ├── tidyllm-package.Rd ├── tidyllm_schema.Rd ├── tidyllm_tool.Rd ├── voyage.Rd └── voyage_embedding.Rd ├── pkgdown ├── extra.scss └── favicon │ ├── apple-touch-icon.png │ ├── favicon-48x48.png │ ├── favicon.ico │ ├── favicon.svg │ ├── site.webmanifest │ ├── web-app-manifest-192x192.png │ └── web-app-manifest-512x512.png ├── tests ├── testthat.R └── testthat │ ├── claude │ └── api.anthropic.com │ │ └── v1 │ │ └── messages-e050b5-POST.R │ ├── deepseek │ └── api.deepseek.com │ │ └── chat │ │ └── completions-051628-POST.R │ ├── groq │ └── api.groq.com │ │ └── openai │ │ └── v1 │ │ └── chat │ │ └── completions-0b59b0-POST.R │ ├── list_openai_batches │ └── api.openai.com │ │ └── v1 │ │ └── batches-f70bcc.R │ ├── mistral │ └── api.mistral.ai │ │ └── v1 │ │ └── chat │ │ └── completions-2551cb-POST.R │ ├── mistral_embedding │ └── api.mistral.ai │ │ └── v1 │ │ └── embeddings-43e878-POST.R │ ├── ollama │ └── localhost-11434 │ │ └── api │ │ └── chat-1e1974-POST.R │ ├── ollama_embedding │ └── localhost-11434 │ │ └── api │ │ └── embed-9740b1-POST.R │ ├── openai │ └── api.openai.com │ │ └── v1 │ │ └── chat │ │ └── completions-8333f0-POST.R │ ├── openai_embedding │ └── api.openai.com │ │ └── v1 │ │ └── embeddings-f9bc92-POST.R │ ├── openai_models │ └── api.openai.com │ │ └── v1 │ │ └── models.R │ ├── openai_schema_multiple │ └── api.openai.com │ │ └── v1 │ │ └── chat │ │ └── completions-d285ac-POST.R │ ├── openai_schema_single │ └── api.openai.com │ │ └── v1 │ │ └── chat │ │ └── completions-18eb9b-POST.R │ ├── pdf-sample_150kB.pdf │ ├── perplexity │ └── api.perplexity.ai │ │ └── chat │ │ └── completions-11588b-POST.R │ ├── test_api_claude.R │ ├── test_api_deepseek.R │ ├── test_api_gemini.R │ ├── test_api_groq.R │ ├── test_api_mistral.R │ ├── test_api_ollama.R │ ├── test_api_openai.R │ ├── test_api_perplexity.R │ ├── test_api_voyage.R │ ├── test_llm_message.R │ ├── test_message_retrieval.R │ ├── test_tidyllm_schema.R │ ├── test_tooldef.R │ └── voyage_embedding_text │ └── api.voyageai.com │ └── v1 │ └── embeddings-aa2afa-POST.json ├── tidyllm.Rproj └── vignettes ├── .gitignore ├── articles ├── abstracts_data.rds ├── answer_demming.rds ├── answer_legetporer.rds ├── chatgpt_4o_mini_results.rds ├── complete_run.rds ├── document_batch.rds ├── document_results.rds ├── example_task.rds ├── gemma_cot_results.rds ├── gemma_results.rds ├── ground_truth_corrected.xlsx ├── ground_truth_excel.xlsx ├── lawyer_profiles.rds ├── llama32_results.rds ├── occ_codes_2digits.rds ├── occupation_data.rds ├── ollama_reply.rds ├── schema_example.rds ├── synth_info_solon.rds ├── synth_init_output.rds ├── tidyllm-pdfquestions.Rmd ├── tidyllm_classifiers.Rmd ├── tidyllm_embed.Rmd ├── tidyllm_video.Rmd └── top10_asbtracts.rds ├── die_verwandlung.pdf ├── file1568f6c1b4565.png ├── picture.jpeg └── tidyllm.Rmd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.Renviron: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/workflows/pkgdown.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/.github/workflows/pkgdown.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/.gitignore -------------------------------------------------------------------------------- /CRAN-SUBMISSION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/CRAN-SUBMISSION -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2025 2 | COPYRIGHT HOLDER: Eddy Brüll -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/APIProvider.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/R/APIProvider.R -------------------------------------------------------------------------------- /R/LLMMessage.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/R/LLMMessage.R -------------------------------------------------------------------------------- /R/api_azure_openai.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/R/api_azure_openai.R -------------------------------------------------------------------------------- /R/api_claude.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/R/api_claude.R -------------------------------------------------------------------------------- /R/api_deepseek.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/R/api_deepseek.R -------------------------------------------------------------------------------- /R/api_ellmer.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/R/api_ellmer.R -------------------------------------------------------------------------------- /R/api_gemini.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/R/api_gemini.R -------------------------------------------------------------------------------- /R/api_groq.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/R/api_groq.R -------------------------------------------------------------------------------- /R/api_mistral.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/R/api_mistral.R -------------------------------------------------------------------------------- /R/api_ollama.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/R/api_ollama.R -------------------------------------------------------------------------------- /R/api_openai.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/R/api_openai.R -------------------------------------------------------------------------------- /R/api_perplexity.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/R/api_perplexity.R -------------------------------------------------------------------------------- /R/api_voyage.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/R/api_voyage.R -------------------------------------------------------------------------------- /R/embedding_helpers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/R/embedding_helpers.R -------------------------------------------------------------------------------- /R/llm_message.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/R/llm_message.R -------------------------------------------------------------------------------- /R/llm_verbs.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/R/llm_verbs.R -------------------------------------------------------------------------------- /R/media.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/R/media.R -------------------------------------------------------------------------------- /R/message_retrieval.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/R/message_retrieval.R -------------------------------------------------------------------------------- /R/pdfbatch.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/R/pdfbatch.R -------------------------------------------------------------------------------- /R/perform_api_requests.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/R/perform_api_requests.R -------------------------------------------------------------------------------- /R/rate_limits.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/R/rate_limits.R -------------------------------------------------------------------------------- /R/tidyllm-package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/R/tidyllm-package.R -------------------------------------------------------------------------------- /R/tidyllm_schema.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/R/tidyllm_schema.R -------------------------------------------------------------------------------- /R/tools.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/R/tools.R -------------------------------------------------------------------------------- /R/utilites.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/R/utilites.R -------------------------------------------------------------------------------- /R/zzz.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/R/zzz.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/README.md -------------------------------------------------------------------------------- /_pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/_pkgdown.yml -------------------------------------------------------------------------------- /docs/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/404.html -------------------------------------------------------------------------------- /docs/LICENSE-text.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/LICENSE-text.html -------------------------------------------------------------------------------- /docs/LICENSE.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/LICENSE.html -------------------------------------------------------------------------------- /docs/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/apple-touch-icon.png -------------------------------------------------------------------------------- /docs/articles/articles/tidyllm-pdfquestions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/articles/articles/tidyllm-pdfquestions.html -------------------------------------------------------------------------------- /docs/articles/articles/tidyllm_classifiers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/articles/articles/tidyllm_classifiers.html -------------------------------------------------------------------------------- /docs/articles/articles/tidyllm_embed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/articles/articles/tidyllm_embed.html -------------------------------------------------------------------------------- /docs/articles/articles/tidyllm_video.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/articles/articles/tidyllm_video.html -------------------------------------------------------------------------------- /docs/articles/file1568f6c1b4565.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/articles/file1568f6c1b4565.png -------------------------------------------------------------------------------- /docs/articles/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/articles/index.html -------------------------------------------------------------------------------- /docs/articles/picture.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/articles/picture.jpeg -------------------------------------------------------------------------------- /docs/articles/tidyllm-pdfquestions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/articles/tidyllm-pdfquestions.html -------------------------------------------------------------------------------- /docs/articles/tidyllm-synthetic-data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/articles/tidyllm-synthetic-data.html -------------------------------------------------------------------------------- /docs/articles/tidyllm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/articles/tidyllm.html -------------------------------------------------------------------------------- /docs/articles/tidyllm_classifiers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/articles/tidyllm_classifiers.html -------------------------------------------------------------------------------- /docs/articles/tidyllm_classifiers_files/figure-html/accuracy-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/articles/tidyllm_classifiers_files/figure-html/accuracy-1.png -------------------------------------------------------------------------------- /docs/articles/tidyllm_classifiers_files/figure-html/confmatrix-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/articles/tidyllm_classifiers_files/figure-html/confmatrix-1.png -------------------------------------------------------------------------------- /docs/articles/tidyllm_embed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/articles/tidyllm_embed.html -------------------------------------------------------------------------------- /docs/articles/tidyllm_embed_files/kePrint-0.0.1/kePrint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/articles/tidyllm_embed_files/kePrint-0.0.1/kePrint.js -------------------------------------------------------------------------------- /docs/articles/tidyllm_embed_files/lightable-0.0.1/lightable.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/articles/tidyllm_embed_files/lightable-0.0.1/lightable.css -------------------------------------------------------------------------------- /docs/articles/tidyllm_files/figure-html/routputs_base-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/articles/tidyllm_files/figure-html/routputs_base-1.png -------------------------------------------------------------------------------- /docs/articles/tidyllm_video.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/articles/tidyllm_video.html -------------------------------------------------------------------------------- /docs/authors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/authors.html -------------------------------------------------------------------------------- /docs/deps/bootstrap-5.3.1/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/deps/bootstrap-5.3.1/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /docs/deps/bootstrap-5.3.1/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/deps/bootstrap-5.3.1/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /docs/deps/bootstrap-5.3.1/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/deps/bootstrap-5.3.1/bootstrap.min.css -------------------------------------------------------------------------------- /docs/deps/bootstrap-toc-1.0.1/bootstrap-toc.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/deps/bootstrap-toc-1.0.1/bootstrap-toc.min.js -------------------------------------------------------------------------------- /docs/deps/clipboard.js-2.0.11/clipboard.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/deps/clipboard.js-2.0.11/clipboard.min.js -------------------------------------------------------------------------------- /docs/deps/data-deps.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/deps/data-deps.txt -------------------------------------------------------------------------------- /docs/deps/font-awesome-6.4.2/css/all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/deps/font-awesome-6.4.2/css/all.css -------------------------------------------------------------------------------- /docs/deps/font-awesome-6.4.2/css/all.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/deps/font-awesome-6.4.2/css/all.min.css -------------------------------------------------------------------------------- /docs/deps/font-awesome-6.4.2/css/v4-shims.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/deps/font-awesome-6.4.2/css/v4-shims.css -------------------------------------------------------------------------------- /docs/deps/font-awesome-6.4.2/css/v4-shims.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/deps/font-awesome-6.4.2/css/v4-shims.min.css -------------------------------------------------------------------------------- /docs/deps/font-awesome-6.4.2/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/deps/font-awesome-6.4.2/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /docs/deps/font-awesome-6.4.2/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/deps/font-awesome-6.4.2/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /docs/deps/font-awesome-6.4.2/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/deps/font-awesome-6.4.2/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /docs/deps/font-awesome-6.4.2/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/deps/font-awesome-6.4.2/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /docs/deps/font-awesome-6.4.2/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/deps/font-awesome-6.4.2/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /docs/deps/font-awesome-6.4.2/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/deps/font-awesome-6.4.2/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /docs/deps/font-awesome-6.4.2/webfonts/fa-v4compatibility.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/deps/font-awesome-6.4.2/webfonts/fa-v4compatibility.ttf -------------------------------------------------------------------------------- /docs/deps/font-awesome-6.4.2/webfonts/fa-v4compatibility.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/deps/font-awesome-6.4.2/webfonts/fa-v4compatibility.woff2 -------------------------------------------------------------------------------- /docs/deps/font-awesome-6.5.2/css/all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/deps/font-awesome-6.5.2/css/all.css -------------------------------------------------------------------------------- /docs/deps/font-awesome-6.5.2/css/all.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/deps/font-awesome-6.5.2/css/all.min.css -------------------------------------------------------------------------------- /docs/deps/font-awesome-6.5.2/css/v4-shims.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/deps/font-awesome-6.5.2/css/v4-shims.css -------------------------------------------------------------------------------- /docs/deps/font-awesome-6.5.2/css/v4-shims.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/deps/font-awesome-6.5.2/css/v4-shims.min.css -------------------------------------------------------------------------------- /docs/deps/font-awesome-6.5.2/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/deps/font-awesome-6.5.2/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /docs/deps/font-awesome-6.5.2/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/deps/font-awesome-6.5.2/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /docs/deps/font-awesome-6.5.2/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/deps/font-awesome-6.5.2/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /docs/deps/font-awesome-6.5.2/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/deps/font-awesome-6.5.2/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /docs/deps/font-awesome-6.5.2/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/deps/font-awesome-6.5.2/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /docs/deps/font-awesome-6.5.2/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/deps/font-awesome-6.5.2/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /docs/deps/font-awesome-6.5.2/webfonts/fa-v4compatibility.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/deps/font-awesome-6.5.2/webfonts/fa-v4compatibility.ttf -------------------------------------------------------------------------------- /docs/deps/font-awesome-6.5.2/webfonts/fa-v4compatibility.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/deps/font-awesome-6.5.2/webfonts/fa-v4compatibility.woff2 -------------------------------------------------------------------------------- /docs/deps/headroom-0.11.0/headroom.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/deps/headroom-0.11.0/headroom.min.js -------------------------------------------------------------------------------- /docs/deps/headroom-0.11.0/jQuery.headroom.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/deps/headroom-0.11.0/jQuery.headroom.min.js -------------------------------------------------------------------------------- /docs/deps/jquery-3.6.0/jquery-3.6.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/deps/jquery-3.6.0/jquery-3.6.0.js -------------------------------------------------------------------------------- /docs/deps/jquery-3.6.0/jquery-3.6.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/deps/jquery-3.6.0/jquery-3.6.0.min.js -------------------------------------------------------------------------------- /docs/deps/jquery-3.6.0/jquery-3.6.0.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/deps/jquery-3.6.0/jquery-3.6.0.min.map -------------------------------------------------------------------------------- /docs/deps/search-1.0.0/autocomplete.jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/deps/search-1.0.0/autocomplete.jquery.min.js -------------------------------------------------------------------------------- /docs/deps/search-1.0.0/fuse.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/deps/search-1.0.0/fuse.min.js -------------------------------------------------------------------------------- /docs/deps/search-1.0.0/mark.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/deps/search-1.0.0/mark.min.js -------------------------------------------------------------------------------- /docs/favicon-48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/favicon-48x48.png -------------------------------------------------------------------------------- /docs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/favicon.ico -------------------------------------------------------------------------------- /docs/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/favicon.svg -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/katex-auto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/katex-auto.js -------------------------------------------------------------------------------- /docs/lightswitch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/lightswitch.js -------------------------------------------------------------------------------- /docs/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/link.svg -------------------------------------------------------------------------------- /docs/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/logo.png -------------------------------------------------------------------------------- /docs/news/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/news/index.html -------------------------------------------------------------------------------- /docs/pkgdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/pkgdown.js -------------------------------------------------------------------------------- /docs/pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/pkgdown.yml -------------------------------------------------------------------------------- /docs/reference/LLMMessage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/reference/LLMMessage.html -------------------------------------------------------------------------------- /docs/reference/azure_openai.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/reference/azure_openai.html -------------------------------------------------------------------------------- /docs/reference/azure_openai_chat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/reference/azure_openai_chat.html -------------------------------------------------------------------------------- /docs/reference/azure_openai_embedding.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/reference/azure_openai_embedding.html -------------------------------------------------------------------------------- /docs/reference/cancel_openai_batch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/reference/cancel_openai_batch.html -------------------------------------------------------------------------------- /docs/reference/chat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/reference/chat.html -------------------------------------------------------------------------------- /docs/reference/chat_ellmer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/reference/chat_ellmer.html -------------------------------------------------------------------------------- /docs/reference/chatgpt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/reference/chatgpt.html -------------------------------------------------------------------------------- /docs/reference/check_azure_openai_batch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/reference/check_azure_openai_batch.html -------------------------------------------------------------------------------- /docs/reference/check_batch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/reference/check_batch.html -------------------------------------------------------------------------------- /docs/reference/check_claude_batch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/reference/check_claude_batch.html -------------------------------------------------------------------------------- /docs/reference/check_gemini_batch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/reference/check_gemini_batch.html -------------------------------------------------------------------------------- /docs/reference/check_groq_batch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/reference/check_groq_batch.html -------------------------------------------------------------------------------- /docs/reference/check_mistral_batch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/reference/check_mistral_batch.html -------------------------------------------------------------------------------- /docs/reference/check_openai_batch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/reference/check_openai_batch.html -------------------------------------------------------------------------------- /docs/reference/claude.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/reference/claude.html -------------------------------------------------------------------------------- /docs/reference/claude_chat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/reference/claude_chat.html -------------------------------------------------------------------------------- /docs/reference/claude_delete_file.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/reference/claude_delete_file.html -------------------------------------------------------------------------------- /docs/reference/claude_file_metadata.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/reference/claude_file_metadata.html -------------------------------------------------------------------------------- /docs/reference/claude_list_files.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/reference/claude_list_files.html -------------------------------------------------------------------------------- /docs/reference/claude_list_models.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/reference/claude_list_models.html -------------------------------------------------------------------------------- /docs/reference/claude_upload_file.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/reference/claude_upload_file.html -------------------------------------------------------------------------------- /docs/reference/claude_websearch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/reference/claude_websearch.html -------------------------------------------------------------------------------- /docs/reference/deepseek.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/reference/deepseek.html -------------------------------------------------------------------------------- /docs/reference/deepseek_chat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/reference/deepseek_chat.html -------------------------------------------------------------------------------- /docs/reference/df_llm_message.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/reference/df_llm_message.html -------------------------------------------------------------------------------- /docs/reference/ellmer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/reference/ellmer.html -------------------------------------------------------------------------------- /docs/reference/ellmer_tool.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/reference/ellmer_tool.html -------------------------------------------------------------------------------- /docs/reference/embed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/reference/embed.html -------------------------------------------------------------------------------- /docs/reference/fetch_azure_openai_batch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/reference/fetch_azure_openai_batch.html -------------------------------------------------------------------------------- /docs/reference/fetch_batch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/reference/fetch_batch.html -------------------------------------------------------------------------------- /docs/reference/fetch_claude_batch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/reference/fetch_claude_batch.html -------------------------------------------------------------------------------- /docs/reference/fetch_gemini_batch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/reference/fetch_gemini_batch.html -------------------------------------------------------------------------------- /docs/reference/fetch_groq_batch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/reference/fetch_groq_batch.html -------------------------------------------------------------------------------- /docs/reference/fetch_mistral_batch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/reference/fetch_mistral_batch.html -------------------------------------------------------------------------------- /docs/reference/fetch_openai_batch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/reference/fetch_openai_batch.html -------------------------------------------------------------------------------- /docs/reference/field_chr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/reference/field_chr.html -------------------------------------------------------------------------------- /docs/reference/field_dbl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/reference/field_dbl.html -------------------------------------------------------------------------------- /docs/reference/field_fct.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/reference/field_fct.html -------------------------------------------------------------------------------- /docs/reference/field_lgl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/reference/field_lgl.html -------------------------------------------------------------------------------- /docs/reference/field_object.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/reference/field_object.html -------------------------------------------------------------------------------- /docs/reference/figures/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/reference/figures/logo.png -------------------------------------------------------------------------------- /docs/reference/figures/single_pixel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/reference/figures/single_pixel.png -------------------------------------------------------------------------------- /docs/reference/figures/tidyllm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/reference/figures/tidyllm.png -------------------------------------------------------------------------------- /docs/reference/gemini.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/reference/gemini.html -------------------------------------------------------------------------------- /docs/reference/gemini_chat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/reference/gemini_chat.html -------------------------------------------------------------------------------- /docs/reference/gemini_delete_file.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/reference/gemini_delete_file.html -------------------------------------------------------------------------------- /docs/reference/gemini_embedding.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/reference/gemini_embedding.html -------------------------------------------------------------------------------- /docs/reference/gemini_file_metadata.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/reference/gemini_file_metadata.html -------------------------------------------------------------------------------- /docs/reference/gemini_list_files.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/reference/gemini_list_files.html -------------------------------------------------------------------------------- /docs/reference/gemini_list_models.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/reference/gemini_list_models.html -------------------------------------------------------------------------------- /docs/reference/gemini_upload_file.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/reference/gemini_upload_file.html -------------------------------------------------------------------------------- /docs/reference/get_logprobs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/reference/get_logprobs.html -------------------------------------------------------------------------------- /docs/reference/get_metadata.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/reference/get_metadata.html -------------------------------------------------------------------------------- /docs/reference/get_reply.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/reference/get_reply.html -------------------------------------------------------------------------------- /docs/reference/get_reply_data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/reference/get_reply_data.html -------------------------------------------------------------------------------- /docs/reference/get_user_message.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/reference/get_user_message.html -------------------------------------------------------------------------------- /docs/reference/groq.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/reference/groq.html -------------------------------------------------------------------------------- /docs/reference/groq_chat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/reference/groq_chat.html -------------------------------------------------------------------------------- /docs/reference/groq_list_models.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/reference/groq_list_models.html -------------------------------------------------------------------------------- /docs/reference/groq_transcribe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/reference/groq_transcribe.html -------------------------------------------------------------------------------- /docs/reference/img.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/reference/img.html -------------------------------------------------------------------------------- /docs/reference/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/reference/index.html -------------------------------------------------------------------------------- /docs/reference/last_metadata.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/reference/last_metadata.html -------------------------------------------------------------------------------- /docs/reference/last_reply.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/reference/last_reply.html -------------------------------------------------------------------------------- /docs/reference/last_reply_data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/reference/last_reply_data.html -------------------------------------------------------------------------------- /docs/reference/last_user_message.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/reference/last_user_message.html -------------------------------------------------------------------------------- /docs/reference/list_azure_openai_batches.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/reference/list_azure_openai_batches.html -------------------------------------------------------------------------------- /docs/reference/list_batches.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/reference/list_batches.html -------------------------------------------------------------------------------- /docs/reference/list_claude_batches.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/reference/list_claude_batches.html -------------------------------------------------------------------------------- /docs/reference/list_gemini_batches.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/reference/list_gemini_batches.html -------------------------------------------------------------------------------- /docs/reference/list_groq_batches.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/reference/list_groq_batches.html -------------------------------------------------------------------------------- /docs/reference/list_mistral_batches.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/reference/list_mistral_batches.html -------------------------------------------------------------------------------- /docs/reference/list_models.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/reference/list_models.html -------------------------------------------------------------------------------- /docs/reference/list_openai_batches.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/reference/list_openai_batches.html -------------------------------------------------------------------------------- /docs/reference/llm_message.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/reference/llm_message.html -------------------------------------------------------------------------------- /docs/reference/mistral.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/reference/mistral.html -------------------------------------------------------------------------------- /docs/reference/mistral_chat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/reference/mistral_chat.html -------------------------------------------------------------------------------- /docs/reference/mistral_embedding.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/reference/mistral_embedding.html -------------------------------------------------------------------------------- /docs/reference/mistral_list_models.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/reference/mistral_list_models.html -------------------------------------------------------------------------------- /docs/reference/ollama.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/reference/ollama.html -------------------------------------------------------------------------------- /docs/reference/ollama_chat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/reference/ollama_chat.html -------------------------------------------------------------------------------- /docs/reference/ollama_delete_model.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/reference/ollama_delete_model.html -------------------------------------------------------------------------------- /docs/reference/ollama_download_model.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/reference/ollama_download_model.html -------------------------------------------------------------------------------- /docs/reference/ollama_embedding.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/reference/ollama_embedding.html -------------------------------------------------------------------------------- /docs/reference/ollama_list_models.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/reference/ollama_list_models.html -------------------------------------------------------------------------------- /docs/reference/openai.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/reference/openai.html -------------------------------------------------------------------------------- /docs/reference/openai_chat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/reference/openai_chat.html -------------------------------------------------------------------------------- /docs/reference/openai_embedding.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/reference/openai_embedding.html -------------------------------------------------------------------------------- /docs/reference/openai_list_models.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/reference/openai_list_models.html -------------------------------------------------------------------------------- /docs/reference/pdf_page_batch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/reference/pdf_page_batch.html -------------------------------------------------------------------------------- /docs/reference/perplexity.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/reference/perplexity.html -------------------------------------------------------------------------------- /docs/reference/perplexity_chat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/reference/perplexity_chat.html -------------------------------------------------------------------------------- /docs/reference/rate_limit_info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/reference/rate_limit_info.html -------------------------------------------------------------------------------- /docs/reference/send_azure_openai_batch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/reference/send_azure_openai_batch.html -------------------------------------------------------------------------------- /docs/reference/send_batch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/reference/send_batch.html -------------------------------------------------------------------------------- /docs/reference/send_claude_batch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/reference/send_claude_batch.html -------------------------------------------------------------------------------- /docs/reference/send_gemini_batch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/reference/send_gemini_batch.html -------------------------------------------------------------------------------- /docs/reference/send_groq_batch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/reference/send_groq_batch.html -------------------------------------------------------------------------------- /docs/reference/send_mistral_batch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/reference/send_mistral_batch.html -------------------------------------------------------------------------------- /docs/reference/send_ollama_batch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/reference/send_ollama_batch.html -------------------------------------------------------------------------------- /docs/reference/send_openai_batch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/reference/send_openai_batch.html -------------------------------------------------------------------------------- /docs/reference/tidyllm-package.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/reference/tidyllm-package.html -------------------------------------------------------------------------------- /docs/reference/tidyllm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/reference/tidyllm.html -------------------------------------------------------------------------------- /docs/reference/tidyllm_schema.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/reference/tidyllm_schema.html -------------------------------------------------------------------------------- /docs/reference/tidyllm_tool.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/reference/tidyllm_tool.html -------------------------------------------------------------------------------- /docs/reference/voyage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/reference/voyage.html -------------------------------------------------------------------------------- /docs/reference/voyage_embedding.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/reference/voyage_embedding.html -------------------------------------------------------------------------------- /docs/search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/search.json -------------------------------------------------------------------------------- /docs/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/site.webmanifest -------------------------------------------------------------------------------- /docs/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/sitemap.xml -------------------------------------------------------------------------------- /docs/web-app-manifest-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/web-app-manifest-192x192.png -------------------------------------------------------------------------------- /docs/web-app-manifest-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/docs/web-app-manifest-512x512.png -------------------------------------------------------------------------------- /man/LLMMessage.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/man/LLMMessage.Rd -------------------------------------------------------------------------------- /man/azure_openai.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/man/azure_openai.Rd -------------------------------------------------------------------------------- /man/azure_openai_chat.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/man/azure_openai_chat.Rd -------------------------------------------------------------------------------- /man/azure_openai_embedding.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/man/azure_openai_embedding.Rd -------------------------------------------------------------------------------- /man/cancel_openai_batch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/man/cancel_openai_batch.Rd -------------------------------------------------------------------------------- /man/chat.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/man/chat.Rd -------------------------------------------------------------------------------- /man/chat_ellmer.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/man/chat_ellmer.Rd -------------------------------------------------------------------------------- /man/chatgpt.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/man/chatgpt.Rd -------------------------------------------------------------------------------- /man/check_azure_openai_batch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/man/check_azure_openai_batch.Rd -------------------------------------------------------------------------------- /man/check_batch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/man/check_batch.Rd -------------------------------------------------------------------------------- /man/check_claude_batch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/man/check_claude_batch.Rd -------------------------------------------------------------------------------- /man/check_gemini_batch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/man/check_gemini_batch.Rd -------------------------------------------------------------------------------- /man/check_groq_batch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/man/check_groq_batch.Rd -------------------------------------------------------------------------------- /man/check_mistral_batch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/man/check_mistral_batch.Rd -------------------------------------------------------------------------------- /man/check_openai_batch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/man/check_openai_batch.Rd -------------------------------------------------------------------------------- /man/claude.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/man/claude.Rd -------------------------------------------------------------------------------- /man/claude_chat.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/man/claude_chat.Rd -------------------------------------------------------------------------------- /man/claude_delete_file.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/man/claude_delete_file.Rd -------------------------------------------------------------------------------- /man/claude_file_metadata.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/man/claude_file_metadata.Rd -------------------------------------------------------------------------------- /man/claude_list_files.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/man/claude_list_files.Rd -------------------------------------------------------------------------------- /man/claude_list_models.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/man/claude_list_models.Rd -------------------------------------------------------------------------------- /man/claude_upload_file.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/man/claude_upload_file.Rd -------------------------------------------------------------------------------- /man/claude_websearch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/man/claude_websearch.Rd -------------------------------------------------------------------------------- /man/deepseek.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/man/deepseek.Rd -------------------------------------------------------------------------------- /man/deepseek_chat.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/man/deepseek_chat.Rd -------------------------------------------------------------------------------- /man/df_llm_message.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/man/df_llm_message.Rd -------------------------------------------------------------------------------- /man/ellmer.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/man/ellmer.Rd -------------------------------------------------------------------------------- /man/ellmer_tool.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/man/ellmer_tool.Rd -------------------------------------------------------------------------------- /man/embed.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/man/embed.Rd -------------------------------------------------------------------------------- /man/fetch_azure_openai_batch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/man/fetch_azure_openai_batch.Rd -------------------------------------------------------------------------------- /man/fetch_batch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/man/fetch_batch.Rd -------------------------------------------------------------------------------- /man/fetch_claude_batch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/man/fetch_claude_batch.Rd -------------------------------------------------------------------------------- /man/fetch_gemini_batch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/man/fetch_gemini_batch.Rd -------------------------------------------------------------------------------- /man/fetch_groq_batch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/man/fetch_groq_batch.Rd -------------------------------------------------------------------------------- /man/fetch_mistral_batch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/man/fetch_mistral_batch.Rd -------------------------------------------------------------------------------- /man/fetch_openai_batch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/man/fetch_openai_batch.Rd -------------------------------------------------------------------------------- /man/field_chr.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/man/field_chr.Rd -------------------------------------------------------------------------------- /man/field_object.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/man/field_object.Rd -------------------------------------------------------------------------------- /man/figures/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/man/figures/logo.png -------------------------------------------------------------------------------- /man/figures/single_pixel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/man/figures/single_pixel.png -------------------------------------------------------------------------------- /man/figures/tidyllm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/man/figures/tidyllm.png -------------------------------------------------------------------------------- /man/gemini.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/man/gemini.Rd -------------------------------------------------------------------------------- /man/gemini_chat.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/man/gemini_chat.Rd -------------------------------------------------------------------------------- /man/gemini_delete_file.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/man/gemini_delete_file.Rd -------------------------------------------------------------------------------- /man/gemini_embedding.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/man/gemini_embedding.Rd -------------------------------------------------------------------------------- /man/gemini_file_metadata.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/man/gemini_file_metadata.Rd -------------------------------------------------------------------------------- /man/gemini_list_files.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/man/gemini_list_files.Rd -------------------------------------------------------------------------------- /man/gemini_list_models.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/man/gemini_list_models.Rd -------------------------------------------------------------------------------- /man/gemini_upload_file.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/man/gemini_upload_file.Rd -------------------------------------------------------------------------------- /man/get_logprobs.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/man/get_logprobs.Rd -------------------------------------------------------------------------------- /man/get_metadata.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/man/get_metadata.Rd -------------------------------------------------------------------------------- /man/get_reply.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/man/get_reply.Rd -------------------------------------------------------------------------------- /man/get_reply_data.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/man/get_reply_data.Rd -------------------------------------------------------------------------------- /man/get_user_message.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/man/get_user_message.Rd -------------------------------------------------------------------------------- /man/groq.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/man/groq.Rd -------------------------------------------------------------------------------- /man/groq_chat.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/man/groq_chat.Rd -------------------------------------------------------------------------------- /man/groq_list_models.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/man/groq_list_models.Rd -------------------------------------------------------------------------------- /man/groq_transcribe.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/man/groq_transcribe.Rd -------------------------------------------------------------------------------- /man/img.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/man/img.Rd -------------------------------------------------------------------------------- /man/list_azure_openai_batches.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/man/list_azure_openai_batches.Rd -------------------------------------------------------------------------------- /man/list_batches.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/man/list_batches.Rd -------------------------------------------------------------------------------- /man/list_claude_batches.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/man/list_claude_batches.Rd -------------------------------------------------------------------------------- /man/list_gemini_batches.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/man/list_gemini_batches.Rd -------------------------------------------------------------------------------- /man/list_groq_batches.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/man/list_groq_batches.Rd -------------------------------------------------------------------------------- /man/list_mistral_batches.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/man/list_mistral_batches.Rd -------------------------------------------------------------------------------- /man/list_models.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/man/list_models.Rd -------------------------------------------------------------------------------- /man/list_openai_batches.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/man/list_openai_batches.Rd -------------------------------------------------------------------------------- /man/llm_message.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/man/llm_message.Rd -------------------------------------------------------------------------------- /man/mistral.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/man/mistral.Rd -------------------------------------------------------------------------------- /man/mistral_chat.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/man/mistral_chat.Rd -------------------------------------------------------------------------------- /man/mistral_embedding.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/man/mistral_embedding.Rd -------------------------------------------------------------------------------- /man/mistral_list_models.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/man/mistral_list_models.Rd -------------------------------------------------------------------------------- /man/ollama.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/man/ollama.Rd -------------------------------------------------------------------------------- /man/ollama_chat.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/man/ollama_chat.Rd -------------------------------------------------------------------------------- /man/ollama_delete_model.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/man/ollama_delete_model.Rd -------------------------------------------------------------------------------- /man/ollama_download_model.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/man/ollama_download_model.Rd -------------------------------------------------------------------------------- /man/ollama_embedding.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/man/ollama_embedding.Rd -------------------------------------------------------------------------------- /man/ollama_list_models.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/man/ollama_list_models.Rd -------------------------------------------------------------------------------- /man/openai.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/man/openai.Rd -------------------------------------------------------------------------------- /man/openai_chat.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/man/openai_chat.Rd -------------------------------------------------------------------------------- /man/openai_embedding.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/man/openai_embedding.Rd -------------------------------------------------------------------------------- /man/openai_list_models.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/man/openai_list_models.Rd -------------------------------------------------------------------------------- /man/pdf_page_batch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/man/pdf_page_batch.Rd -------------------------------------------------------------------------------- /man/perplexity.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/man/perplexity.Rd -------------------------------------------------------------------------------- /man/perplexity_chat.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/man/perplexity_chat.Rd -------------------------------------------------------------------------------- /man/rate_limit_info.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/man/rate_limit_info.Rd -------------------------------------------------------------------------------- /man/send_azure_openai_batch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/man/send_azure_openai_batch.Rd -------------------------------------------------------------------------------- /man/send_batch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/man/send_batch.Rd -------------------------------------------------------------------------------- /man/send_claude_batch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/man/send_claude_batch.Rd -------------------------------------------------------------------------------- /man/send_gemini_batch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/man/send_gemini_batch.Rd -------------------------------------------------------------------------------- /man/send_groq_batch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/man/send_groq_batch.Rd -------------------------------------------------------------------------------- /man/send_mistral_batch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/man/send_mistral_batch.Rd -------------------------------------------------------------------------------- /man/send_ollama_batch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/man/send_ollama_batch.Rd -------------------------------------------------------------------------------- /man/send_openai_batch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/man/send_openai_batch.Rd -------------------------------------------------------------------------------- /man/tidyllm-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/man/tidyllm-package.Rd -------------------------------------------------------------------------------- /man/tidyllm_schema.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/man/tidyllm_schema.Rd -------------------------------------------------------------------------------- /man/tidyllm_tool.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/man/tidyllm_tool.Rd -------------------------------------------------------------------------------- /man/voyage.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/man/voyage.Rd -------------------------------------------------------------------------------- /man/voyage_embedding.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/man/voyage_embedding.Rd -------------------------------------------------------------------------------- /pkgdown/extra.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/pkgdown/extra.scss -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/pkgdown/favicon/apple-touch-icon.png -------------------------------------------------------------------------------- /pkgdown/favicon/favicon-48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/pkgdown/favicon/favicon-48x48.png -------------------------------------------------------------------------------- /pkgdown/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/pkgdown/favicon/favicon.ico -------------------------------------------------------------------------------- /pkgdown/favicon/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/pkgdown/favicon/favicon.svg -------------------------------------------------------------------------------- /pkgdown/favicon/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/pkgdown/favicon/site.webmanifest -------------------------------------------------------------------------------- /pkgdown/favicon/web-app-manifest-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/pkgdown/favicon/web-app-manifest-192x192.png -------------------------------------------------------------------------------- /pkgdown/favicon/web-app-manifest-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/pkgdown/favicon/web-app-manifest-512x512.png -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/claude/api.anthropic.com/v1/messages-e050b5-POST.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/tests/testthat/claude/api.anthropic.com/v1/messages-e050b5-POST.R -------------------------------------------------------------------------------- /tests/testthat/deepseek/api.deepseek.com/chat/completions-051628-POST.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/tests/testthat/deepseek/api.deepseek.com/chat/completions-051628-POST.R -------------------------------------------------------------------------------- /tests/testthat/groq/api.groq.com/openai/v1/chat/completions-0b59b0-POST.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/tests/testthat/groq/api.groq.com/openai/v1/chat/completions-0b59b0-POST.R -------------------------------------------------------------------------------- /tests/testthat/list_openai_batches/api.openai.com/v1/batches-f70bcc.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/tests/testthat/list_openai_batches/api.openai.com/v1/batches-f70bcc.R -------------------------------------------------------------------------------- /tests/testthat/mistral/api.mistral.ai/v1/chat/completions-2551cb-POST.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/tests/testthat/mistral/api.mistral.ai/v1/chat/completions-2551cb-POST.R -------------------------------------------------------------------------------- /tests/testthat/mistral_embedding/api.mistral.ai/v1/embeddings-43e878-POST.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/tests/testthat/mistral_embedding/api.mistral.ai/v1/embeddings-43e878-POST.R -------------------------------------------------------------------------------- /tests/testthat/ollama/localhost-11434/api/chat-1e1974-POST.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/tests/testthat/ollama/localhost-11434/api/chat-1e1974-POST.R -------------------------------------------------------------------------------- /tests/testthat/ollama_embedding/localhost-11434/api/embed-9740b1-POST.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/tests/testthat/ollama_embedding/localhost-11434/api/embed-9740b1-POST.R -------------------------------------------------------------------------------- /tests/testthat/openai/api.openai.com/v1/chat/completions-8333f0-POST.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/tests/testthat/openai/api.openai.com/v1/chat/completions-8333f0-POST.R -------------------------------------------------------------------------------- /tests/testthat/openai_embedding/api.openai.com/v1/embeddings-f9bc92-POST.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/tests/testthat/openai_embedding/api.openai.com/v1/embeddings-f9bc92-POST.R -------------------------------------------------------------------------------- /tests/testthat/openai_models/api.openai.com/v1/models.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/tests/testthat/openai_models/api.openai.com/v1/models.R -------------------------------------------------------------------------------- /tests/testthat/openai_schema_multiple/api.openai.com/v1/chat/completions-d285ac-POST.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/tests/testthat/openai_schema_multiple/api.openai.com/v1/chat/completions-d285ac-POST.R -------------------------------------------------------------------------------- /tests/testthat/openai_schema_single/api.openai.com/v1/chat/completions-18eb9b-POST.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/tests/testthat/openai_schema_single/api.openai.com/v1/chat/completions-18eb9b-POST.R -------------------------------------------------------------------------------- /tests/testthat/pdf-sample_150kB.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/tests/testthat/pdf-sample_150kB.pdf -------------------------------------------------------------------------------- /tests/testthat/perplexity/api.perplexity.ai/chat/completions-11588b-POST.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/tests/testthat/perplexity/api.perplexity.ai/chat/completions-11588b-POST.R -------------------------------------------------------------------------------- /tests/testthat/test_api_claude.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/tests/testthat/test_api_claude.R -------------------------------------------------------------------------------- /tests/testthat/test_api_deepseek.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/tests/testthat/test_api_deepseek.R -------------------------------------------------------------------------------- /tests/testthat/test_api_gemini.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/tests/testthat/test_api_gemini.R -------------------------------------------------------------------------------- /tests/testthat/test_api_groq.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/tests/testthat/test_api_groq.R -------------------------------------------------------------------------------- /tests/testthat/test_api_mistral.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/tests/testthat/test_api_mistral.R -------------------------------------------------------------------------------- /tests/testthat/test_api_ollama.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/tests/testthat/test_api_ollama.R -------------------------------------------------------------------------------- /tests/testthat/test_api_openai.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/tests/testthat/test_api_openai.R -------------------------------------------------------------------------------- /tests/testthat/test_api_perplexity.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/tests/testthat/test_api_perplexity.R -------------------------------------------------------------------------------- /tests/testthat/test_api_voyage.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/tests/testthat/test_api_voyage.R -------------------------------------------------------------------------------- /tests/testthat/test_llm_message.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/tests/testthat/test_llm_message.R -------------------------------------------------------------------------------- /tests/testthat/test_message_retrieval.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/tests/testthat/test_message_retrieval.R -------------------------------------------------------------------------------- /tests/testthat/test_tidyllm_schema.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/tests/testthat/test_tidyllm_schema.R -------------------------------------------------------------------------------- /tests/testthat/test_tooldef.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/tests/testthat/test_tooldef.R -------------------------------------------------------------------------------- /tests/testthat/voyage_embedding_text/api.voyageai.com/v1/embeddings-aa2afa-POST.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/tests/testthat/voyage_embedding_text/api.voyageai.com/v1/embeddings-aa2afa-POST.json -------------------------------------------------------------------------------- /tidyllm.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/tidyllm.Rproj -------------------------------------------------------------------------------- /vignettes/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | *.R 3 | -------------------------------------------------------------------------------- /vignettes/articles/abstracts_data.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/vignettes/articles/abstracts_data.rds -------------------------------------------------------------------------------- /vignettes/articles/answer_demming.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/vignettes/articles/answer_demming.rds -------------------------------------------------------------------------------- /vignettes/articles/answer_legetporer.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/vignettes/articles/answer_legetporer.rds -------------------------------------------------------------------------------- /vignettes/articles/chatgpt_4o_mini_results.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/vignettes/articles/chatgpt_4o_mini_results.rds -------------------------------------------------------------------------------- /vignettes/articles/complete_run.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/vignettes/articles/complete_run.rds -------------------------------------------------------------------------------- /vignettes/articles/document_batch.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/vignettes/articles/document_batch.rds -------------------------------------------------------------------------------- /vignettes/articles/document_results.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/vignettes/articles/document_results.rds -------------------------------------------------------------------------------- /vignettes/articles/example_task.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/vignettes/articles/example_task.rds -------------------------------------------------------------------------------- /vignettes/articles/gemma_cot_results.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/vignettes/articles/gemma_cot_results.rds -------------------------------------------------------------------------------- /vignettes/articles/gemma_results.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/vignettes/articles/gemma_results.rds -------------------------------------------------------------------------------- /vignettes/articles/ground_truth_corrected.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/vignettes/articles/ground_truth_corrected.xlsx -------------------------------------------------------------------------------- /vignettes/articles/ground_truth_excel.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/vignettes/articles/ground_truth_excel.xlsx -------------------------------------------------------------------------------- /vignettes/articles/lawyer_profiles.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/vignettes/articles/lawyer_profiles.rds -------------------------------------------------------------------------------- /vignettes/articles/llama32_results.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/vignettes/articles/llama32_results.rds -------------------------------------------------------------------------------- /vignettes/articles/occ_codes_2digits.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/vignettes/articles/occ_codes_2digits.rds -------------------------------------------------------------------------------- /vignettes/articles/occupation_data.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/vignettes/articles/occupation_data.rds -------------------------------------------------------------------------------- /vignettes/articles/ollama_reply.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/vignettes/articles/ollama_reply.rds -------------------------------------------------------------------------------- /vignettes/articles/schema_example.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/vignettes/articles/schema_example.rds -------------------------------------------------------------------------------- /vignettes/articles/synth_info_solon.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/vignettes/articles/synth_info_solon.rds -------------------------------------------------------------------------------- /vignettes/articles/synth_init_output.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/vignettes/articles/synth_init_output.rds -------------------------------------------------------------------------------- /vignettes/articles/tidyllm-pdfquestions.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/vignettes/articles/tidyllm-pdfquestions.Rmd -------------------------------------------------------------------------------- /vignettes/articles/tidyllm_classifiers.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/vignettes/articles/tidyllm_classifiers.Rmd -------------------------------------------------------------------------------- /vignettes/articles/tidyllm_embed.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/vignettes/articles/tidyllm_embed.Rmd -------------------------------------------------------------------------------- /vignettes/articles/tidyllm_video.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/vignettes/articles/tidyllm_video.Rmd -------------------------------------------------------------------------------- /vignettes/articles/top10_asbtracts.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/vignettes/articles/top10_asbtracts.rds -------------------------------------------------------------------------------- /vignettes/die_verwandlung.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/vignettes/die_verwandlung.pdf -------------------------------------------------------------------------------- /vignettes/file1568f6c1b4565.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/vignettes/file1568f6c1b4565.png -------------------------------------------------------------------------------- /vignettes/picture.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/vignettes/picture.jpeg -------------------------------------------------------------------------------- /vignettes/tidyllm.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edubruell/tidyllm/HEAD/vignettes/tidyllm.Rmd --------------------------------------------------------------------------------