Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prep for cran #209

Merged
merged 3 commits into from
May 17, 2024
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
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Type: Package
Package: gptstudio
Title: Use Large Language Models Directly in your Development Environment
Version: 0.3.1.9009
Version: 0.3.1.9010
Authors@R: c(
person("Michel", "Nivard", , "[email protected]", role = c("aut", "cph")),
person("James", "Wade", , "[email protected]", role = c("aut", "cre", "cph"),
Expand Down
6 changes: 4 additions & 2 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# gptstudio (development version)

## gptstudio (development version)
## gptstudio 0.4.0

This release introduces several exciting enhancements. The chat app now features a sidebar for conversation history, new chats, and settings, along with helpful tooltips. Additionally, local models are now supported using ollama, and the Perplexity Service offers various models like llama-3-sonar and mixtral-8x7b. Cohere Service, with models such as command and command-light, is also available. Internally, there are improvements, bug fixes, and quality-of-life enhancements.

### UI updates

Expand All @@ -14,7 +16,7 @@ We are happy to announce that we now support local models with [ollama](https://

### Perplexity Service

Perplexity AI now offers a wide range of models as part of their service. The current version includes the following models: sonar-small-chat, sonar-small-online, sonar-medium-chat, sonar-medium-online, codellama-70b-instruct, mistral-7b-instruct, mixtral-8x7b-instruct, pplx-7b-chat, pplx-70b-chat, pplx-7b-online, pplx-70b-online, llama-2-70b-chat, and codellama-34b-instruct. See Perplexity API documentation for more information on these models.
Perplexity AI now offers a wide range of models as part of their service. The current version includes the following models: llama-3-sonar-small-32k-chat, llama-3-sonar-small-32k-online, llama-3-sonar-large-32k-chat, llama-3-sonar-large-32k-online, llama-3-8b-instruct, llama-3-70b-instruct, mixtral-8x7b-instruc". See Perplexity API documentation for more information on these models.

### Cohere Service

Expand Down
6 changes: 3 additions & 3 deletions R/models.R
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,9 @@ list_available_models.azure_openai <- function(service) {
#' @export
list_available_models.perplexity <- function(service) {
c(
"sonar-small-chat", "sonar-small-online", "sonar-medium-chat",
"sonar-medium-online", "codellama-70b-instruct", "mistral-7b-instruct",
"mixtral-8x7b-instruct"
"llama-3-sonar-small-32k-chat", "llama-3-sonar-small-32k-online",
"llama-3-sonar-large-32k-chat", "llama-3-sonar-large-32k-online",
"llama-3-8b-instruct", "llama-3-70b-instruct", "mixtral-8x7b-instruct"
)
}

Expand Down
2 changes: 1 addition & 1 deletion vignettes/openai.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ knitr::opts_chunk$set(
## Creating an OpenAI API Key

- Once logged in, navigate to the API section in your account settings.
- Follow the instructions to create a new API key. More detailed steps can be found in OpenAI's [API documentation](https://beta.openai.com/docs/).
- Follow the instructions to create a new API key. More detailed steps can be found in OpenAI's [API documentation](https://platform.openai.com/docs/).

## Setting the OpenAI API Key in .Renviron

Expand Down
Loading