https://shiny.posit.co/py/templates/querychat/
https://shiny.posit.co/py/templates/sidebot/
Python Chatlas
import chatlas as clt chat = clt.ChatOllama(model="qwen3:0.6b") chat.chat("what is the capital of the moon?")
R Ellmer
library(ellmer) chat <- chat_ollama(model="qwen3:0.6b") chat$chat("what is the capital of the moon?")
Save it into an environment variable, GITHUB_TOKEN
GITHUB_TOKEN
https://github.com/marketplace?type=models
import chatlas as clt chat = clt.ChatGithub() chat.chat("what is the capital of the moon?")
library(ellmer) chat <- chat_github() chat$chat("what is the capital of the moon?")