-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
663745d
commit d6d5007
Showing
8 changed files
with
98 additions
and
82 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,18 +4,17 @@ Title: Batch Process LLM Text Completions Using a Data Frame | |
Version: 0.1.0 | ||
Authors@R: person("Dylan", "Pieper", email = "[email protected]", role = c("aut", "cre", "cph")) | ||
Maintainer: Dylan Pieper <[email protected]> | ||
Description: Batch process large language model (LLM) text completions using data frame rows, with support for OpenAI's GPT, Anthropic's Claude, and Google's Gemini. Includes features such as local storage, metadata logging, API rate limiting delays, and a Shiny App Addin. | ||
Description: Batch process large language model (LLM) text completions using data frame rows, with support for OpenAI's 'GPT' (<https://chat.openai.com>), Anthropic's 'Claude' (<https://claude.ai>), and Google's 'Gemini' (<https://gemini.google.com>). Includes features such as local storage, metadata logging, API rate limiting delays, and a 'shiny' app addin. | ||
License: MIT + file LICENSE | ||
Encoding: UTF-8 | ||
Roxygen: list(markdown = TRUE) | ||
RoxygenNote: 7.3.1 | ||
RoxygenNote: 7.3.2 | ||
URL: https://github.com/dylanpieper/batchLLM | ||
BugReports: https://github.com/dylanpieper/batchLLM/issues | ||
Imports: | ||
openai, | ||
gemini.R, | ||
rlang, | ||
utils, | ||
stats, | ||
digest, | ||
dplyr, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,19 @@ | ||
## R CMD check results | ||
## Resubmission (10/09/2024) | ||
|
||
0 errors | 0 warnings | 0 notes | ||
This is a resubmission. In this version I have: | ||
|
||
* This is a new release. | ||
- Written package names, software names, and API names in single quotes in the title and description fields as requested. For example: 'GPT', 'Claude', 'Gemini', 'shiny'. Also ensured that package names are case-sensitive where applicable. | ||
|
||
- Provided links to the web services/APIs/LLMs used in the DESCRIPTION file. The links are now formatted correctly with angle brackets for auto-linking (e.g., `<https://chat.openai.com>`). | ||
|
||
- Added `\value` tags to the `.Rd` files for exported methods, including documentation of the structure and meaning of the output. For functions that do not return a value, I have used the format `\value{No return value.}` as suggested for `man/batchLLM_shiny.Rd`. | ||
|
||
- Removed `cat()` as a method to write to the console. Where necessary, I have replaced `cat()` calls with `message()`, `warning()`, or `stop()` as appropriate in `R/batchLLM.R`. | ||
|
||
All feedback has been addressed, and I have made the necessary adjustments for resubmission. | ||
|
||
## R CMD check results (10/05/2024) | ||
|
||
0 errors \| 0 warnings \| 0 notes | ||
|
||
- This is a new release. |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters