update files
This commit is contained in:
parent
63592bd8e6
commit
2e85ad50a3
5 changed files with 67 additions and 1 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -52,3 +52,5 @@ rsconnect/
|
|||
|
||||
# Renv folder does not need to be commited to git, only lock file to rebuild on another computer
|
||||
renv/
|
||||
|
||||
kyle_resume.pdf
|
9
.lintr.
Normal file
9
.lintr.
Normal file
|
@ -0,0 +1,9 @@
|
|||
linters: linters_with_defaults(
|
||||
line_length_linter(120)
|
||||
, commented_code_linter = NULL
|
||||
, object_usage_linter = NULL
|
||||
, indentation_linter(
|
||||
hanging_indent_style = "never"
|
||||
)
|
||||
) # see vignette("lintr")
|
||||
encoding: "UTF-8"
|
9
data/resume_parser_api.json
Normal file
9
data/resume_parser_api.json
Normal file
|
@ -0,0 +1,9 @@
|
|||
{
|
||||
"model": "llama3.3-70b",
|
||||
"messages": [
|
||||
{
|
||||
"role": "user",
|
||||
"content": "You are a resume parser. You will extract information from this resume and put them in a .json file. The keys of your dictionary will be first_name, last_name, location, work_experience, school_experience, skills. In selecting the information, keep track of the most insightful. "
|
||||
}
|
||||
]
|
||||
}
|
38
renv.lock
38
renv.lock
|
@ -9,6 +9,44 @@
|
|||
]
|
||||
},
|
||||
"Packages": {
|
||||
"box": {
|
||||
"Package": "box",
|
||||
"Version": "1.2.0",
|
||||
"Source": "Repository",
|
||||
"Title": "Write Reusable, Composable and Modular R Code",
|
||||
"Authors@R": "c( person( 'Konrad', 'Rudolph', email = 'konrad.rudolph@gmail.com', role = c('aut', 'cre'), comment = c(ORCID = '0000-0002-9866-7051') ), person( 'Michael', 'Schubert', email = 'mschu.dev@gmail.com', role = 'ctb', comment = c(ORCID = '0000-0002-6862-5221') ) )",
|
||||
"URL": "https://klmr.me/box/, https://github.com/klmr/box",
|
||||
"BugReports": "https://github.com/klmr/box/issues",
|
||||
"Description": "A modern module system for R. Organise code into hierarchical, composable, reusable modules, and use it effortlessly across projects via a flexible, declarative dependency loading syntax.",
|
||||
"Depends": [
|
||||
"R (>= 3.6.0)"
|
||||
],
|
||||
"Imports": [
|
||||
"tools"
|
||||
],
|
||||
"License": "MIT + file LICENSE",
|
||||
"Encoding": "UTF-8",
|
||||
"Suggests": [
|
||||
"devtools",
|
||||
"knitr (>= 1.40)",
|
||||
"rmarkdown",
|
||||
"R6",
|
||||
"rlang",
|
||||
"roxygen2 (>= 7.2.1)",
|
||||
"shiny",
|
||||
"stringr",
|
||||
"testthat (>= 3.1.7)"
|
||||
],
|
||||
"Enhances": [
|
||||
"rstudioapi"
|
||||
],
|
||||
"VignetteBuilder": "knitr",
|
||||
"RoxygenNote": "7.3.1",
|
||||
"NeedsCompilation": "yes",
|
||||
"Author": "Konrad Rudolph [aut, cre] (<https://orcid.org/0000-0002-9866-7051>), Michael Schubert [ctb] (<https://orcid.org/0000-0002-6862-5221>)",
|
||||
"Maintainer": "Konrad Rudolph <konrad.rudolph@gmail.com>",
|
||||
"Repository": "CRAN"
|
||||
},
|
||||
"renv": {
|
||||
"Package": "renv",
|
||||
"Version": "1.1.0",
|
||||
|
|
8
src/file_loaders.R
Normal file
8
src/file_loaders.R
Normal file
|
@ -0,0 +1,8 @@
|
|||
rm(list = ls(all = TRUE)) #Clear the variables from previous runs
|
||||
|
||||
# ---- Load Packages ----
|
||||
box::use(
|
||||
pdftools
|
||||
)
|
||||
|
||||
|
Loading…
Reference in a new issue