-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from mlverse/updates
Updates
- Loading branch information
Showing
6 changed files
with
107 additions
and
13 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 |
---|---|---|
@@ -1,10 +1,13 @@ | ||
Package: lang | ||
Title: What the Package Does (One Line, Title Case) | ||
Version: 0.0.0.9000 | ||
Title: Using an Large Language Model of your choice, it translates the R | ||
help documentation to a specific language | ||
Version: 0.0.0.9001 | ||
Authors@R: | ||
person("First", "Last", , "[email protected]", role = c("aut", "cre"), | ||
comment = c(ORCID = "YOUR-ORCID-ID")) | ||
Description: What the package does (one paragraph). | ||
person("Edgar", "Ruiz", , "[email protected]", role = c("aut", "cre")) | ||
Description: Use an 'LLM' to translate a function's help documentation on-the-fly. | ||
It overrides the `?` and `help()` functions in your R session. If you are | ||
using RStudio or Positron, the translated help page will appear in the usual | ||
help pane. | ||
License: MIT + file LICENSE | ||
Encoding: UTF-8 | ||
Roxygen: list(markdown = TRUE) | ||
|
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,11 +1,10 @@ | ||
#' @importFrom roxygen2 parse_file roxygenize env_package | ||
#' @importFrom withr local_tempdir with_dir | ||
#' @importFrom utils capture.output | ||
#' @import tools | ||
#' @import tools | ||
#' @import rlang | ||
#' @import glue | ||
#' @import mall | ||
#' @import cli | ||
#' @import glue | ||
#' @importFrom withr local_tempdir with_dir | ||
#' @import fs | ||
NULL |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.