From a108b0ab7473a713f3643a356a49624f320092d2 Mon Sep 17 00:00:00 2001 From: Yasir Ekinci Date: Tue, 17 Oct 2023 09:28:23 +0200 Subject: [PATCH] bump version to 0.4.0 --- CHANGELOG.md | 21 ++++++++++++++------- package.json | 2 +- 2 files changed, 15 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9e36ed5c..6f17f3e2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,21 +2,28 @@ ## Unreleased +## 0.4.0 + +- Add 'Enabled' switch for vector services to configuration UI by @sd2k in https://github.com/grafana/grafana-llm-app/pull/79 +- Added instructions for developing with example app by @edwardcqian in https://github.com/grafana/grafana-llm-app/pull/86 +- Improve health check to return more granular details by @sd2k in https://github.com/grafana/grafana-llm-app/pull/85 +- Add support for filtered vector search by @yoziru in https://github.com/grafana/grafana-llm-app/pull/100 + ## 0.3.0 -* Add Go package providing an OpenAI client to use the LLM app from backend Go code -* Add support for Azure OpenAI. The plugin must be configured to use OpenAI and provide a link between OpenAI model names and Azure deployment names -* Return streaming errors as part of the stream, with objects like `{"error": ""}` +- Add Go package providing an OpenAI client to use the LLM app from backend Go code +- Add support for Azure OpenAI. The plugin must be configured to use OpenAI and provide a link between OpenAI model names and Azure deployment names +- Return streaming errors as part of the stream, with objects like `{"error": ""}` ## 0.2.1 -* Improve health check endpoint to include status of various features -* Change path handling for chat completions streams to put separate requests into separate streams. Requests can pass a UUID as the suffix of the path now, but is backwards compatible with an older version of the frontend code. +- Improve health check endpoint to include status of various features +- Change path handling for chat completions streams to put separate requests into separate streams. Requests can pass a UUID as the suffix of the path now, but is backwards compatible with an older version of the frontend code. ## 0.2.0 -* Expose vector search API to perform semantic search against a vector database using a configurable embeddings source +- Expose vector search API to perform semantic search against a vector database using a configurable embeddings source ## 0.1.0 -* Support proxying LLM requests from Grafana to OpenAI +- Support proxying LLM requests from Grafana to OpenAI diff --git a/package.json b/package.json index f39f103f..96ec49c3 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "llm", - "version": "0.3.0", + "version": "0.4.0", "description": "Plugin to easily allow llm based extensions to grafana", "scripts": { "build": "webpack -c ./.config/webpack/webpack.config.ts --env production",