noczero
c41261e72b
feat: PDF generator to export chat
2024-10-13 11:20:09 +07:00
Timothy J. Baek
5a96fcbeaf
enh: enable selecting individual files from collection
2024-10-12 02:31:10 -07:00
Timothy Jaeryang Baek
db35ea0ae1
Merge pull request #6129 from open-webui/main
...
refac
2024-10-11 12:11:47 -07:00
Timothy J. Baek
ba2df1c33a
refac
2024-10-11 00:00:13 -07:00
Timothy J. Baek
acb5dcf30a
refac: tags
2024-10-10 23:22:53 -07:00
Timothy J. Baek
e8babe62bc
refac
2024-10-10 12:51:00 -07:00
Jeetesh Chellani
a2e889c8bb
fix: set oauth token secure and samesite per config
2024-10-09 14:50:48 +03:00
Timothy J. Baek
37fdb0ea2e
refac: move search to backend
2024-10-08 23:37:37 -07:00
Timothy J. Baek
d7a00af576
refac: convert chat.chat to json data type
2024-10-08 22:02:48 -07:00
Timothy J. Baek
0da0e12096
refac: file download
2024-10-08 20:16:17 -07:00
Timothy J. Baek
da1e88a427
enh: __task_body__ param
2024-10-06 14:56:49 -07:00
Sylvere Richard
9706b76b36
feat: db pool config #5935
2024-10-06 17:20:10 +02:00
Timothy J. Baek
0bd88090bb
refac: DOCS_DIR deprecated
2024-10-05 01:45:22 -07:00
Timothy J. Baek
a909aa1c20
enh: sync directory
2024-10-04 18:44:57 -07:00
Timothy J. Baek
e3889522d6
refac
2024-10-04 18:28:48 -07:00
Timothy J. Baek
79c005a041
refac: deprecate docs_dir
2024-10-04 18:22:55 -07:00
Timothy J. Baek
a6c797d4c2
refac: process docs dir
2024-10-04 17:22:00 -07:00
Timothy J. Baek
5017ca90ff
refac
2024-10-04 16:16:16 -07:00
Timothy J. Baek
8f22e911e0
fix: empty knowledge delete issue
2024-10-04 11:11:53 -07:00
Timothy Jaeryang Baek
ebc7da6f82
Merge pull request #5861 from open-webui/projects
...
feat: knowledge/projects
2024-10-04 10:00:47 +02:00
Timothy J. Baek
8013c152d0
feat: edit file content support
2024-10-04 00:46:32 -07:00
Timothy J. Baek
17c772831d
refac
2024-10-04 00:23:14 -07:00
Timothy J. Baek
05970157f6
refac
2024-10-03 23:06:47 -07:00
Timothy J. Baek
d834bd2a18
refac
2024-10-03 22:35:43 -07:00
Timothy J. Baek
e9b68524e8
refac
2024-10-03 22:24:05 -07:00
Timothy J. Baek
b291271df3
refac
2024-10-03 22:22:22 -07:00
Timothy J. Baek
78413d0c2e
enh: add/remove file from knowledge
2024-10-03 06:46:20 -07:00
Timothy J. Baek
15a3c6b171
refac
2024-10-03 06:45:15 -07:00
Timothy J. Baek
351b1dbf31
refac
2024-10-02 21:14:58 -07:00
Timothy J. Baek
a2eadb30f5
refac
2024-10-02 20:42:10 -07:00
Timothy J. Baek
4aca1e86ad
refac
2024-10-02 06:19:09 -07:00
Timothy J. Baek
08969ecf89
refac: rename projects -> knowledge
2024-10-01 22:45:04 -07:00
Timothy J. Baek
5933d7a216
enh: sort by descending order
2024-10-01 21:35:18 -07:00
Timothy J. Baek
1b7d363d32
refac
2024-10-01 21:32:59 -07:00
Timothy J. Baek
c5eb0a9732
refac: documents -> projects
2024-10-01 17:35:35 -07:00
Timothy J. Baek
fb083237cd
refac
2024-10-01 14:00:19 -07:00
Timothy J. Baek
a0fb4a9b84
refac
2024-10-01 13:13:39 -07:00
Timothy J. Baek
5c9dd25459
refac: files migration
2024-10-01 11:01:26 -07:00
Timothy J. Baek
0907c32e10
refac
2024-10-01 09:51:58 -07:00
Timothy J. Baek
9d2ed3d2be
refac
2024-09-28 02:56:56 +02:00
Timothy J. Baek
5b7cf88915
refac
2024-09-28 01:28:45 +02:00
Etienne Perot
fdd27aa321
fix: close temporary file after creating it.
...
This fixes "The process cannot access the file
because it is being used by another process"
errors on Windows.
The file is still automatically deleted by the
`os.unlink` call later in the function.
Updates #5606
Fixes #5642
2024-09-23 23:22:47 -07:00
Timothy J. Baek
00f6b4bf09
refac
2024-09-21 15:35:35 +02:00
Timothy J. Baek
9126ceac08
fix: WEBUI_AUTH=False not working issue
2024-09-21 15:33:34 +02:00
Timothy J. Baek
eb9ad47ef8
refac: temp tools & functions files
2024-09-20 00:12:52 +02:00
Etienne Perot
6477bf37fe
fix: restore __file__
variable for imported toolkits and functions
...
Commit cf86ba7786
changed the way toolkits
and functions were imported to use `exec`, whereas they previously were
written to files and `import`ed. The use of `exec` means that
module-global variables such as `__file__` are no longer defined.
This breaks https://github.com/EtiennePerot/open-webui-code-execution
(code execution tool for Open WebUI), as the module needs to re-execute
its own code in a subprocess in order to properly sandbox itself. This
is done using `__file__` in order to know where the module's code is
located.
This PR creates a temporary in-memory file that contains the imported
toolkit or function's code and exists only during the import process.
Then it injects the path to this in-memory file as the `__file__`
variable in the `exec` context. This restores the ability for the
toolkit or function being imported to rely on `__file__`.
2024-09-18 01:08:30 -07:00
Timothy J. Baek
db0c576f48
refac
2024-09-16 07:14:17 +02:00
Timothy J. Baek
d0df2cbe53
fix: disable "enable new sign ups" not working issue
2024-09-14 23:13:52 +01:00
Timothy J. Baek
47e9c12fc2
refac
2024-09-13 00:41:20 -04:00
Timothy J. Baek
522afbb0a0
refac
2024-09-10 04:37:06 +01:00