Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
chenpangpang
open-webui
Commits
0ab33bd5
Unverified
Commit
0ab33bd5
authored
Jan 25, 2024
by
Timothy Jaeryang Baek
Committed by
GitHub
Jan 25, 2024
Browse files
Merge pull request #568 from ollama-webui/litellm-rag-fix
fix: rag message body format
parents
6b3b4ced
da16d43b
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
src/routes/(app)/+page.svelte
src/routes/(app)/+page.svelte
+1
-1
src/routes/(app)/c/[id]/+page.svelte
src/routes/(app)/c/[id]/+page.svelte
+1
-1
No files found.
src/routes/(app)/+page.svelte
View file @
0ab33bd5
...
...
@@ -519,7 +519,7 @@
.filter((message) => message)
.map((message, idx, arr) => ({
role: message.role,
...(message.files
...(message.files
.filter((file) => file.type === 'image')
? {
content: [
{
...
...
src/routes/(app)/c/[id]/+page.svelte
View file @
0ab33bd5
...
...
@@ -530,7 +530,7 @@
.filter((message) => message)
.map((message, idx, arr) => ({
role: message.role,
...(message.files
...(message.files
.filter((file) => file.type === 'image')
? {
content: [
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment