File size: 519 Bytes
992f008 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | # ISA 401 Job Scout Chat: ask questions, get SQL, a table, or a chart back
library(querychat)
con = DBI::dbConnect(RSQLite::SQLite(), "data/scout.db")
client = ellmer::chat_openai(
model = "gpt-5.6-luna",
params = ellmer::params(reasoning_effort = "none")
)
qc = querychat(
con, "scout_postings",
client = client,
tools = c("filter", "query", "visualize"), # visualize: charts in the chat (needs ggsql)
greeting = "Ask me about the 1,891 job postings ChatISA Job Scout collected."
)
qc$app_obj()
|