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
a8c4588f
Commit
a8c4588f
authored
May 19, 2024
by
Timothy J. Baek
Browse files
feat: memory integration
parent
288d8a3e
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
202 additions
and
21 deletions
+202
-21
backend/apps/web/routers/memories.py
backend/apps/web/routers/memories.py
+1
-1
src/lib/apis/memories/index.ts
src/lib/apis/memories/index.ts
+123
-0
src/lib/components/chat/Settings/Personalization/AddMemoryModal.svelte
...nents/chat/Settings/Personalization/AddMemoryModal.svelte
+25
-5
src/lib/components/chat/Settings/Personalization/ManageModal.svelte
...mponents/chat/Settings/Personalization/ManageModal.svelte
+53
-15
No files found.
backend/apps/web/routers/memories.py
View file @
a8c4588f
...
@@ -72,7 +72,7 @@ class QueryMemoryForm(BaseModel):
...
@@ -72,7 +72,7 @@ class QueryMemoryForm(BaseModel):
@
router
.
post
(
"/query"
,
response_model
=
Optional
[
MemoryModel
])
@
router
.
post
(
"/query"
,
response_model
=
Optional
[
MemoryModel
])
async
def
add
_memory
(
async
def
query
_memory
(
request
:
Request
,
form_data
:
QueryMemoryForm
,
user
=
Depends
(
get_verified_user
)
request
:
Request
,
form_data
:
QueryMemoryForm
,
user
=
Depends
(
get_verified_user
)
):
):
query_embedding
=
request
.
app
.
state
.
EMBEDDING_FUNCTION
(
form_data
.
content
)
query_embedding
=
request
.
app
.
state
.
EMBEDDING_FUNCTION
(
form_data
.
content
)
...
...
src/lib/apis/memories/index.ts
0 → 100644
View file @
a8c4588f
import
{
WEBUI_API_BASE_URL
}
from
'
$lib/constants
'
;
export
const
getMemories
=
async
(
token
:
string
)
=>
{
let
error
=
null
;
const
res
=
await
fetch
(
`
${
WEBUI_API_BASE_URL
}
/memories`
,
{
method
:
'
GET
'
,
headers
:
{
Accept
:
'
application/json
'
,
'
Content-Type
'
:
'
application/json
'
,
authorization
:
`Bearer
${
token
}
`
}
})
.
then
(
async
(
res
)
=>
{
if
(
!
res
.
ok
)
throw
await
res
.
json
();
return
res
.
json
();
})
.
catch
((
err
)
=>
{
error
=
err
.
detail
;
console
.
log
(
err
);
return
null
;
});
if
(
error
)
{
throw
error
;
}
return
res
;
};
export
const
addNewMemory
=
async
(
token
:
string
,
content
:
string
)
=>
{
let
error
=
null
;
const
res
=
await
fetch
(
`
${
WEBUI_API_BASE_URL
}
/memories/add`
,
{
method
:
'
POST
'
,
headers
:
{
Accept
:
'
application/json
'
,
'
Content-Type
'
:
'
application/json
'
,
authorization
:
`Bearer
${
token
}
`
},
body
:
JSON
.
stringify
({
content
:
content
})
})
.
then
(
async
(
res
)
=>
{
if
(
!
res
.
ok
)
throw
await
res
.
json
();
return
res
.
json
();
})
.
catch
((
err
)
=>
{
error
=
err
.
detail
;
console
.
log
(
err
);
return
null
;
});
if
(
error
)
{
throw
error
;
}
return
res
;
};
export
const
queryMemory
=
async
(
token
:
string
,
content
:
string
)
=>
{
let
error
=
null
;
const
res
=
await
fetch
(
`
${
WEBUI_API_BASE_URL
}
/memories/query`
,
{
method
:
'
POST
'
,
headers
:
{
Accept
:
'
application/json
'
,
'
Content-Type
'
:
'
application/json
'
,
authorization
:
`Bearer
${
token
}
`
},
body
:
JSON
.
stringify
({
content
:
content
})
})
.
then
(
async
(
res
)
=>
{
if
(
!
res
.
ok
)
throw
await
res
.
json
();
return
res
.
json
();
})
.
catch
((
err
)
=>
{
error
=
err
.
detail
;
console
.
log
(
err
);
return
null
;
});
if
(
error
)
{
throw
error
;
}
return
res
;
};
export
const
deleteMemoryById
=
async
(
token
:
string
,
id
:
string
)
=>
{
let
error
=
null
;
const
res
=
await
fetch
(
`
${
WEBUI_API_BASE_URL
}
/memories/
${
id
}
`
,
{
method
:
'
DELETE
'
,
headers
:
{
Accept
:
'
application/json
'
,
'
Content-Type
'
:
'
application/json
'
,
authorization
:
`Bearer
${
token
}
`
}
})
.
then
(
async
(
res
)
=>
{
if
(
!
res
.
ok
)
throw
await
res
.
json
();
return
res
.
json
();
})
.
then
((
json
)
=>
{
return
json
;
})
.
catch
((
err
)
=>
{
error
=
err
.
detail
;
console
.
log
(
err
);
return
null
;
});
if
(
error
)
{
throw
error
;
}
return
res
;
};
src/lib/components/chat/Settings/Personalization/AddMemoryModal.svelte
View file @
a8c4588f
<script>
<script>
import { getContext } from 'svelte';
import {
createEventDispatcher,
getContext } from 'svelte';
import Modal from '$lib/components/common/Modal.svelte';
import Modal from '$lib/components/common/Modal.svelte';
import { addNewMemory } from '$lib/apis/memories';
import { toast } from 'svelte-sonner';
const dispatch = createEventDispatcher();
export let show;
export let show;
const i18n = getContext('i18n');
const i18n = getContext('i18n');
let loading = false;
let loading = false;
let memory = '';
let content = '';
const submitHandler = async () => {
loading = true;
const res = await addNewMemory(localStorage.token, content).catch((error) => {
toast.error(error);
return null;
});
if (res) {
console.log(res);
toast.success('Memory added successfully');
show = false;
dispatch('save');
}
const submitHandler = () => {
loading = false;
console.log('submitHandler');
};
};
</script>
</script>
...
@@ -48,7 +68,7 @@
...
@@ -48,7 +68,7 @@
>
>
<div class="">
<div class="">
<textarea
<textarea
bind:value={
memory
}
bind:value={
content
}
class=" bg-transparent w-full text-sm resize-none rounded-xl p-3 outline outline-1 outline-gray-100 dark:outline-gray-800"
class=" bg-transparent w-full text-sm resize-none rounded-xl p-3 outline outline-1 outline-gray-100 dark:outline-gray-800"
rows="3"
rows="3"
placeholder={$i18n.t('Enter a detail about yourself for your LLMs to recall')}
placeholder={$i18n.t('Enter a detail about yourself for your LLMs to recall')}
...
...
src/lib/components/chat/Settings/Personalization/ManageModal.svelte
View file @
a8c4588f
...
@@ -7,6 +7,9 @@
...
@@ -7,6 +7,9 @@
import Modal from '$lib/components/common/Modal.svelte';
import Modal from '$lib/components/common/Modal.svelte';
import AddMemoryModal from './AddMemoryModal.svelte';
import AddMemoryModal from './AddMemoryModal.svelte';
import { deleteMemoryById, getMemories } from '$lib/apis/memories';
import Tooltip from '$lib/components/common/Tooltip.svelte';
import { error } from '@sveltejs/kit';
const i18n = getContext('i18n');
const i18n = getContext('i18n');
...
@@ -18,7 +21,7 @@
...
@@ -18,7 +21,7 @@
$: if (show) {
$: if (show) {
(async () => {
(async () => {
// chat
s = await get
ArchivedChatList
(localStorage.token);
memorie
s = await get
Memories
(localStorage.token);
})();
})();
}
}
</script>
</script>
...
@@ -65,20 +68,50 @@
...
@@ -65,20 +68,50 @@
</thead>
</thead>
<tbody>
<tbody>
{#each memories as memory}
{#each memories as memory}
<tr class="border-b dark:border-gray-800">
<tr class="border-b dark:border-gray-800 items-center">
<td class="px-3 py-2"> {memory.name} </td>
<td class="px-3 py-1"> {memory.content} </td>
<td class="px-3 py-2 hidden md:flex">
<td class=" px-3 py-1 hidden md:flex h-[2.5rem]">
{dayjs(memory.created_at).format($i18n.t('MMMM DD, YYYY'))}
<div class="my-auto">
{dayjs(memory.created_at * 1000).format($i18n.t('MMMM DD, YYYY'))}
</div>
</td>
</td>
<td class="px-3 py-2 text-right">
<td class="px-3 py-1">
<button
<div class="flex justify-end w-full">
class="text-xs text-gray-500 dark:text-gray-400"
<Tooltip content="Delete">
on:click={() => {
<button
// showMemory(memory);
class="self-center w-fit text-sm px-2 py-2 hover:bg-black/5 dark:hover:bg-white/5 rounded-xl"
}}
on:click={async () => {
>
const res = await deleteMemoryById(
{$i18n.t('View')}
localStorage.token,
</button>
memory.id
).catch((error) => {
toast.error(error);
return null;
});
if (res) {
toast.success('Memory deleted successfully');
memories = await getMemories(localStorage.token);
}
}}
>
<svg
xmlns="http://www.w3.org/2000/svg"
fill="none"
viewBox="0 0 24 24"
stroke-width="1.5"
stroke="currentColor"
class="w-4 h-4"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
d="m14.74 9-.346 9m-4.788 0L9.26 9m9.968-3.21c.342.052.682.107 1.022.166m-1.022-.165L18.16 19.673a2.25 2.25 0 0 1-2.244 2.077H8.084a2.25 2.25 0 0 1-2.244-2.077L4.772 5.79m14.456 0a48.108 48.108 0 0 0-3.478-.397m-12 .562c.34-.059.68-.114 1.022-.165m0 0a48.11 48.11 0 0 1 3.478-.397m7.5 0v-.916c0-1.18-.91-2.164-2.09-2.201a51.964 51.964 0 0 0-3.32 0c-1.18.037-2.09 1.022-2.09 2.201v.916m7.5 0a48.667 48.667 0 0 0-7.5 0"
/>
</svg>
</button>
</Tooltip>
</div>
</td>
</td>
</tr>
</tr>
{/each}
{/each}
...
@@ -112,4 +145,9 @@
...
@@ -112,4 +145,9 @@
</div>
</div>
</Modal>
</Modal>
<AddMemoryModal bind:show={showAddMemoryModal} />
<AddMemoryModal
bind:show={showAddMemoryModal}
on:save={async () => {
memories = await getMemories(localStorage.token);
}}
/>
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