mirror of https://github.com/open-webui/open-webui
commit
534e4c90ca
|
@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
|
||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
||||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
|
## [0.3.28] - 2024-09-24
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
- **🔍 Web Search Functionality**: Corrected an issue where the web search option was not functioning properly.
|
||||||
|
|
||||||
## [0.3.27] - 2024-09-24
|
## [0.3.27] - 2024-09-24
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
|
@ -1,12 +1,12 @@
|
||||||
{
|
{
|
||||||
"name": "open-webui",
|
"name": "open-webui",
|
||||||
"version": "0.3.27",
|
"version": "0.3.28",
|
||||||
"lockfileVersion": 3,
|
"lockfileVersion": 3,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "open-webui",
|
"name": "open-webui",
|
||||||
"version": "0.3.27",
|
"version": "0.3.28",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@codemirror/lang-javascript": "^6.2.2",
|
"@codemirror/lang-javascript": "^6.2.2",
|
||||||
"@codemirror/lang-python": "^6.1.6",
|
"@codemirror/lang-python": "^6.1.6",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "open-webui",
|
"name": "open-webui",
|
||||||
"version": "0.3.27",
|
"version": "0.3.28",
|
||||||
"private": true,
|
"private": true,
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "npm run pyodide:fetch && vite dev --host",
|
"dev": "npm run pyodide:fetch && vite dev --host",
|
||||||
|
|
|
@ -1683,9 +1683,14 @@
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
const getWebSearchResults = async (model: string, parentId: string, responseId: string) => {
|
const getWebSearchResults = async (
|
||||||
const responseMessage = history.messages[responseId];
|
model: string,
|
||||||
|
parentId: string,
|
||||||
|
responseMessageId: string
|
||||||
|
) => {
|
||||||
|
const responseMessage = history.messages[responseMessageId];
|
||||||
const userMessage = history.messages[parentId];
|
const userMessage = history.messages[parentId];
|
||||||
|
const messages = createMessagesList(history.currentId);
|
||||||
|
|
||||||
responseMessage.statusHistory = [
|
responseMessage.statusHistory = [
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue