Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions pkg-r/DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@ Package: querychat
Title: Filter and Query Data Frames in 'shiny' Using an LLM Chat Interface
Version: 0.1.0.9000
Authors@R: c(
person("Joe", "Cheng", , "[email protected]", role = c("aut", "cre")),
person("Garrick", "Aden-Buie", , "[email protected]", role = c("aut", "cre"),
comment = c(ORCID = "0000-0002-7111-0077")),
person("Joe", "Cheng", , "[email protected]", role = c("aut", "ccp")),
person("Carson", "Sievert", , "[email protected]", role = "aut",
comment = c(ORCID = "0000-0002-4958-2844")),
person("Posit Software, PBC", role = c("cph", "fnd"))
)
Description: Adds an LLM-powered chatbot to your 'shiny' app, that can
Expand All @@ -11,7 +15,9 @@ Description: Adds an LLM-powered chatbot to your 'shiny' app, that can
it to drive reactive calculations, visualizations, downloads, etc.
License: MIT + file LICENSE
URL: https://posit-dev.github.io/querychat/pkg-r,
https://posit-dev.github.io/querychat
https://posit-dev.github.io/querychat,
https://github.com/posit-dev/querychat
BugReports: https://github.com/posit-dev/querychat/issues
Depends:
R (>= 4.1.0)
Imports:
Expand Down
3 changes: 2 additions & 1 deletion pkg-r/R/querychat-package.R
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,8 @@ NULL

release_bullets <- function() {
c(
"Run `staticimports::import()` to update static imports"
"Run `staticimports::import()` to update static imports",
"Enable `development.mode: auto` in `_pkgdown.yml` and remove this release bullet."
)
}

Expand Down
8 changes: 6 additions & 2 deletions pkg-r/pkgdown/_brand.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
color:
palette:
blue: "#007bc2"
navy: "#193D56"
indigo: "#4b00c1"
purple: "#74149c"
pink: "#bf007f"
Expand Down Expand Up @@ -28,11 +29,14 @@ typography:
fonts:
- family: Open Sans
source: bunny
- family: Hubot Sans
source: bunny
- family: Source Code Pro
source: bunny

headings:
family: Open Sans
family: Hubot Sans
color: navy
weight: 400
monospace: Source Code Pro
monospace-inline:
Expand All @@ -43,5 +47,5 @@ typography:
defaults:
bootstrap:
defaults:
navbar-bg: $brand-blue
navbar-bg: $brand-navy
code-color-dark: "#fa88d4"
11 changes: 9 additions & 2 deletions pkg-r/pkgdown/_pkgdown.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ url: https://posit-dev.github.io/querychat

destination: "../docs/r"

development:
mode: auto
# development:
# mode: auto

authors:
Posit Software, PBC:
Expand All @@ -29,6 +29,13 @@ template:
bslib:
brand: pkgdown/_brand.yml

navbar:
structure:
left: [get-started, articles, reference, news]
right: [search, github, lightswitch]
components:
home: ~

reference:
- title: Chat interfaces
contents:
Expand Down
Loading