diff --git a/CHANGELOG.md b/CHANGELOG.md index 067ee5236..e8ba43917 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Fixed +## [0.33.2] + +### Fixed +- Add back accidentally dropped DBKS keys + ## [0.33.1] ### Fixed diff --git a/Project.toml b/Project.toml index a6e98bd84..17d0dcf9f 100644 --- a/Project.toml +++ b/Project.toml @@ -1,7 +1,7 @@ name = "PromptingTools" uuid = "670122d1-24a8-4d70-bfce-740807c42192" authors = ["J S @svilupp and contributors"] -version = "0.33.1" +version = "0.33.2" [deps] AbstractTrees = "1520ce14-60c1-5f80-bbc7-55ef81b5835c" diff --git a/src/user_preferences.jl b/src/user_preferences.jl index 32b3271c3..0be2f8c2f 100644 --- a/src/user_preferences.jl +++ b/src/user_preferences.jl @@ -138,8 +138,11 @@ global OPENAI_API_KEY::String = "" global MISTRALAI_API_KEY::String = "" global COHERE_API_KEY::String = "" global DATABRICKS_API_KEY::String = "" +global DATABRICKS_HOST::String = "" global TAVILY_API_KEY::String = "" global GOOGLE_API_KEY::String = "" +global TOGETHER_API_KEY::String = "" +global FIREWORKS_API_KEY::String = "" global ANTHROPIC_API_KEY::String = "" global VOYAGE_API_KEY::String = "" global GROQ_API_KEY::String = "" @@ -166,6 +169,9 @@ function load_api_keys!() global DATABRICKS_API_KEY DATABRICKS_API_KEY = @load_preference("DATABRICKS_API_KEY", default=get(ENV, "DATABRICKS_API_KEY", "")) + global DATABRICKS_HOST + DATABRICKS_HOST = @load_preference("DATABRICKS_HOST", + default=get(ENV, "DATABRICKS_HOST", "")) global TAVILY_API_KEY TAVILY_API_KEY = @load_preference("TAVILY_API_KEY", default=get(ENV, "TAVILY_API_KEY", ""))