Timothy Jaeryang Baek
f25b7b73b4
refac: openai additional headers support
2025-10-03 00:23:26 -05:00
Timothy Jaeryang Baek
7e70f8d2c1
refac
2025-10-02 17:45:05 -05:00
Tim Jaeryang Baek
227139aa33
Merge pull request #16863 from silentoplayz/ollama-cancel-and-toast-cleanup
...
feat: improve Ollama model management modal
2025-10-02 17:41:21 -05:00
Timothy Jaeryang Baek
339e95e9d7
refac/enh: docling params
2025-10-02 16:28:06 -05:00
Timothy Jaeryang Baek
79afb7afdb
refac: model selector
2025-10-02 13:03:33 -05:00
Timothy Jaeryang Baek
8f41835352
refac
2025-10-02 11:48:56 -05:00
Timothy Jaeryang Baek
c8c6a48b94
refac
2025-10-02 04:09:17 -05:00
Timothy Jaeryang Baek
5d5b42d3f5
refac/enh: openai tts additional params support
2025-10-02 03:52:29 -05:00
Timothy Jaeryang Baek
6c4deed37a
refac/fix: direct connection floating action buttons
2025-10-02 02:21:21 -05:00
Timothy Jaeryang Baek
b6538b2cdd
refac: styling
2025-10-02 02:19:01 -05:00
Timothy Jaeryang Baek
39675434f6
refac: external tool validation
2025-10-02 01:29:44 -05:00
Timothy Jaeryang Baek
028f29556f
refac
2025-10-01 22:51:57 -05:00
Timothy Jaeryang Baek
3a601e0fc3
refac/fix: temp chat
2025-10-01 22:49:25 -05:00
Timothy Jaeryang Baek
af34e414e1
refac
2025-10-01 22:05:42 -05:00
Timothy Jaeryang Baek
9677871ce7
refac
2025-10-01 21:57:34 -05:00
Timothy Jaeryang Baek
d87a2315ce
refac
2025-10-01 21:56:37 -05:00
Timothy Jaeryang Baek
97faeccebf
refac
2025-10-01 21:56:32 -05:00
Timothy Jaeryang Baek
e2ca7b8632
feat: model_ids per folder
2025-10-01 20:50:04 -05:00
Timothy Jaeryang Baek
557367cf48
refac: message input mobile detection behaviour
2025-10-01 20:02:27 -05:00
Timothy Jaeryang Baek
03498bd2fd
refac
2025-10-01 19:31:47 -05:00
Tim Jaeryang Baek
2f923e47ec
Merge pull request #17941 from silentoplayz/vertical-and-horizontal-overview
...
feat: Implement toggling for vertical and horizontal flow layouts
2025-10-01 19:27:13 -05:00
Timothy Jaeryang Baek
b1c196ed83
fix: non rich text handling
2025-10-01 12:39:49 -05:00
silentoplayz
80cbdbb535
feat: Implement toggling for vertical and horizontal flow layouts
...
This commit introduces the necessary logic and UI controls to allow users to switch the Flow component layout between vertical and horizontal orientations.
* **`Flow.svelte` Refactoring:**
* Updates logic for calculating level offsets and node positions to consistently respect the current flow orientation.
* Adds a control panel using `<Controls>` and `<SwitchButton>` components.
* Provides user interface elements to easily switch the flow layout between horizontal and vertical orientations.
2025-09-30 16:09:55 -04:00
Timothy Jaeryang Baek
8c662c65a9
refac: disable direct models from model editors
2025-09-29 22:59:28 -05:00
Timothy Jaeryang Baek
fcc3d9ed2b
fix: non rich text input copy
2025-09-29 22:45:38 -05:00
Timothy Jaeryang Baek
58efa18f96
fix: ai hallucination
2025-09-29 21:37:38 -05:00
Timothy Jaeryang Baek
887772db22
fix: default permissions not being loaded
2025-09-29 21:36:07 -05:00
Timothy Jaeryang Baek
e7fa86aa26
chore: format
2025-09-29 00:58:21 -05:00
Timothy Jaeryang Baek
51a138aec3
refac: edit user modal
2025-09-29 00:51:06 -05:00
Timothy Jaeryang Baek
aee7aaae68
refac
2025-09-29 00:35:21 -05:00
Timothy Jaeryang Baek
8656bfc5f4
refac
2025-09-29 00:03:03 -05:00
Tim Jaeryang Baek
d37f108ccd
Merge pull request #17848 from Classic298/feat/group-permission-warning
...
Feat/chore: Add warning for conflicting group permissions / Refactored Permissions.svelte
2025-09-28 23:51:52 -05:00
Timothy Jaeryang Baek
88aca2e4d8
chore: format
2025-09-28 23:42:38 -05:00
Timothy Jaeryang Baek
234aa69753
refac
2025-09-28 22:16:11 -05:00
Timothy Jaeryang Baek
f58fc753e3
feat/enh: embed citation
2025-09-28 22:15:47 -05:00
Tim Jaeryang Baek
1c418a7f83
Merge pull request #17871 from silentoplayz/backend-json-model-import
...
feat: move JSON model import to backend for massive speedup
2025-09-28 19:25:40 -05:00
silentoplayz
fe28097817
feat: refactor model import to a single backend endpoint
...
This refactors the model import functionality to improve performance and user experience by centralizing the logic on the backend.
Previously, the frontend would parse an imported JSON file and send an individual API request for each model, which was slow and inefficient.
This change introduces a new backend endpoint, `/api/v1/models/import`, that accepts a list of model objects. The frontend now reads the selected JSON file, parses it, and sends the entire payload to the backend in a single request. The backend then processes this list, creating or updating models as necessary.
This commit also includes the following fixes:
- Handles cases where the imported JSON contains models without `meta` or `params` fields by providing default empty values.
2025-09-28 18:49:42 -04:00
Timothy Jaeryang Baek
7bae9053ac
refac: copy behaviour
2025-09-28 17:10:11 -05:00
silentoplayz
231d182c35
feat: move JSON model import to backend
...
This moves the JSON model import functionality to the backend. Instead of the frontend parsing the JSON file and sending multiple requests, it now uploads the file to a new endpoint (/api/v1/models/import), which processes the file and imports the models. This improves efficiency and provides better user feedback.
2025-09-28 18:09:58 -04:00
Timothy Jaeryang Baek
7e8ee46d2c
refac
2025-09-28 15:18:12 -05:00
Timothy Jaeryang Baek
da6748a68f
refac
2025-09-28 14:59:30 -05:00
Classic298
cf20f04bdc
Update Permissions.svelte
2025-09-28 21:33:40 +02:00
Classic298
67b3929954
Delete src/lib/components/common/Warning.svelte
2025-09-28 21:27:31 +02:00
Classic298
ad9cae32dc
Delete src/lib/components/icons/ExclamationTriangle.svelte
2025-09-28 21:27:20 +02:00
Classic298
a4e0c10f34
Delete src/lib/components/admin/Users/Groups/PermissionSwitch.svelte
2025-09-28 21:27:06 +02:00
Timothy Jaeryang Baek
4f06f29348
refac
2025-09-28 13:22:39 -05:00
Timothy Jaeryang Baek
4c2c58214c
refac
2025-09-28 13:09:09 -05:00
Tim Jaeryang Baek
9a8c9ecb4d
Merge pull request #17823 from ITOTI-Y/main
...
fix: correct messageId parameter in createMessagesList call
2025-09-28 12:57:56 -05:00
Timothy Jaeryang Baek
95462a394a
refac
2025-09-28 12:54:31 -05:00
Tim Jaeryang Baek
11fd0735d1
Merge pull request #17851 from Classic298/feat-toggle-chat-title-in-browser-tab
...
feat: add toggle to show/hide chat title in browser tab
2025-09-28 12:53:19 -05:00