Timothy Jaeryang Baek
5d2e725f81
refac
2025-04-06 16:53:30 -07:00
Timothy Jaeryang Baek
be20e6dec0
refac: message edit
Deploy to HuggingFace Spaces / check-secret (push) Waiting to run
Deploy to HuggingFace Spaces / deploy (push) Blocked by required conditions
Create and publish Docker images with specific build args / build-main-image (linux/amd64) (push) Waiting to run
Create and publish Docker images with specific build args / build-main-image (linux/arm64) (push) Waiting to run
Create and publish Docker images with specific build args / build-cuda-image (linux/amd64) (push) Waiting to run
Create and publish Docker images with specific build args / build-cuda-image (linux/arm64) (push) Waiting to run
Create and publish Docker images with specific build args / build-ollama-image (linux/amd64) (push) Waiting to run
Create and publish Docker images with specific build args / build-ollama-image (linux/arm64) (push) Waiting to run
Create and publish Docker images with specific build args / merge-main-images (push) Blocked by required conditions
Create and publish Docker images with specific build args / merge-cuda-images (push) Blocked by required conditions
Create and publish Docker images with specific build args / merge-ollama-images (push) Blocked by required conditions
Python CI / Format Backend (3.11) (push) Waiting to run
Frontend Build / Format & Build Frontend (push) Waiting to run
Frontend Build / Frontend Unit Tests (push) Waiting to run
2025-04-03 13:43:45 -06:00
Timothy Jaeryang Baek
ba77a72925
refac: styling
Deploy to HuggingFace Spaces / check-secret (push) Waiting to run
Deploy to HuggingFace Spaces / deploy (push) Blocked by required conditions
Create and publish Docker images with specific build args / build-main-image (linux/amd64) (push) Waiting to run
Create and publish Docker images with specific build args / build-main-image (linux/arm64) (push) Waiting to run
Create and publish Docker images with specific build args / build-cuda-image (linux/amd64) (push) Waiting to run
Create and publish Docker images with specific build args / build-cuda-image (linux/arm64) (push) Waiting to run
Create and publish Docker images with specific build args / build-ollama-image (linux/amd64) (push) Waiting to run
Create and publish Docker images with specific build args / build-ollama-image (linux/arm64) (push) Waiting to run
Create and publish Docker images with specific build args / merge-main-images (push) Blocked by required conditions
Create and publish Docker images with specific build args / merge-cuda-images (push) Blocked by required conditions
Create and publish Docker images with specific build args / merge-ollama-images (push) Blocked by required conditions
Python CI / Format Backend (3.11) (push) Waiting to run
Frontend Build / Format & Build Frontend (push) Waiting to run
Frontend Build / Frontend Unit Tests (push) Waiting to run
2025-04-03 01:00:40 -07:00
Timothy Jaeryang Baek
e0ec2cdeb0
refac: $user
2025-03-31 20:32:12 -07:00
Timothy Jaeryang Baek
05dfb9cecd
refac: floating buttons behaviour in shared chat
2025-03-31 00:57:16 -07:00
Timothy Jaeryang Baek
3be626bef3
feat: goto message
2025-03-29 17:48:57 -07:00
Timothy Jaeryang Baek
c700126c17
refac: html rendering
2025-03-29 16:52:49 -07:00
Timothy Jaeryang Baek
c2ff73c3e1
refac
2025-03-29 14:59:03 -07:00
Timothy Jaeryang Baek
115f34069a
refac: tool call display
2025-03-28 12:18:27 -07:00
Timothy Jaeryang Baek
79e4f8a7bc
refac
2025-03-26 20:47:52 -07:00
Timothy Jaeryang Baek
d047eb46cc
refac
2025-03-20 17:54:13 -07:00
Timothy Jaeryang Baek
6c4352de07
fix: table cells format
2025-03-18 17:53:11 -07:00
Timothy Jaeryang Baek
3186aeac08
chore: format
2025-03-18 06:39:37 -07:00
Timothy Jaeryang Baek
54d5281256
refac
2025-03-15 18:41:04 +00:00
Timothy Jaeryang Baek
b6e56c0e5a
refac
2025-03-15 18:00:18 +00:00
Timothy Jaeryang Baek
c57db1828f
fix
2025-03-15 16:25:21 +00:00
Timothy Jaeryang Baek
b5e74f4eae
refac
2025-03-15 16:15:37 +00:00
Timothy Jaeryang Baek
f1a84f45c8
Merge pull request #11699 from shaun-gallagher-octane/markdown-alert-renderer
...
feat: Markdown alert renderer
2025-03-15 02:12:16 +00:00
Timothy Jaeryang Baek
7723705707
enh: always collapse code block
2025-03-15 02:01:59 +00:00
Timothy Jaeryang Baek
dbf051ff4e
enh: always expand details option
2025-03-15 01:56:04 +00:00
Shaun Gallagher
2065580a5f
feat: Use AlertRenderer in blockquote evaluation
2025-03-14 15:22:56 -04:00
Shaun Gallagher
8bc797fe6a
feat: Add renderer for Markdown alerts
2025-03-14 15:22:27 -04:00
Timothy Jaeryang Baek
0e7164b4f5
Merge pull request #11520 from icsy7867/main
...
Added decodeURIcomponent function to several locations.
2025-03-11 10:33:41 +00:00
root
3fb477618e
Added decodeURIcomponent function to several locations.
2025-03-10 17:40:40 -04:00
Timothy Jaeryang Baek
324cd94c53
refac: user message delete
2025-03-08 17:03:08 +00:00
orenzhang
b61ea393b4
refactor(lint): code lint
2025-03-07 20:03:53 +08:00
orenzhang
dc04123330
Merge branch 'dev' into i18n_translation
2025-03-07 20:03:33 +08:00
orenzhang
72ea6dd9f1
refactor(lint): code lint
2025-03-07 19:59:09 +08:00
orenzhang
92fb1109b6
i18n(common): add i18n translation
2025-03-06 20:16:34 +08:00
Perry Li
9cc9df3018
fix(chat): resolve duplicate collapsible IDs causing citation modal failures
...
Fix an issue where clicking inline citations in subsequent chat messages failed to open the citation modal when multiple collapsible sections are present.
The root cause was duplicate "collapsible-sources" IDs assigned to all Collapsible components. This led document.getElementById() to always return the first instance, preventing subsequent messages from opening their CitationModal.
Changes:
- Modify Collapsible ID generation in Citations.svelte to use unique IDs with "collapsible-${message.id}" pattern
- Update ResponseMessage.svelte's onSourceClick handler to reference the dynamic collapsible IDs
- Ensure proper citation modal binding for each chat message's sources
Affected components:
- Collapsible (expandable content sections)
- CitationsModal (citation detail popup)
This ensures each chat message's sources are independently collapsible and maintains proper citation modal binding throughout message history.
2025-03-06 10:10:53 +00:00
Timothy Jaeryang Baek
5e78a5c510
enh: enable_code_execution toggle
...
Co-Authored-By: recrudesce <6450799+recrudesce@users.noreply.github.com>
2025-03-05 19:06:28 -08:00
Timothy Jaeryang Baek
15cbccc8f5
enh: code block collapse
2025-03-03 21:10:15 -08:00
Timothy Jaeryang Baek
d844fc7edb
refac: inline citation handling
2025-03-03 19:48:00 -08:00
Timothy Jaeryang Baek
331caad5b8
fix
2025-02-28 07:36:56 -08:00
Timothy Jaeryang Baek
ef734833a5
fix
2025-02-26 21:22:51 -08:00
Timothy Jaeryang Baek
57010901e6
enh: bypass embedding and retrieval
2025-02-26 15:42:19 -08:00
Timothy Jaeryang Baek
802f8809dd
fix: codeblock
2025-02-23 21:39:34 -08:00
Timothy Jaeryang Baek
737b1723c7
refac
2025-02-23 14:12:41 -08:00
Timothy Jaeryang Baek
8f3fcdcf5c
refac
2025-02-22 02:00:06 -08:00
Timothy Jaeryang Baek
794919e91d
refac
2025-02-22 01:22:17 -08:00
Timothy Jaeryang Baek
667d26ca12
refac
2025-02-22 01:16:58 -08:00
Timothy Jaeryang Baek
9bada6421e
refac: code block image styling
2025-02-21 16:39:56 -08:00
Timothy Jaeryang Baek
eeb00a5ca2
chore: format
2025-02-20 01:01:29 -08:00
Timothy Jaeryang Baek
fe5c4b95d5
enh: configurable jupyter execution timeout
2025-02-19 17:05:37 -08:00
Timothy Jaeryang Baek
dab6396ebe
fix: inline citations
2025-02-19 00:35:01 -08:00
Timothy Jaeryang Baek
a6a7c548d5
refac: code block styling
2025-02-18 20:24:04 -08:00
Timothy Jaeryang Baek
003968f06a
enh: jupyter matplotlib support
2025-02-18 20:15:16 -08:00
Timothy Jaeryang Baek
84af508525
Merge branch 'dev' into feat/hide-citations-in-message
2025-02-18 19:37:03 -08:00
Timothy Jaeryang Baek
a33214ab6b
Merge pull request #10304 from ttv20/dev
...
i18n: Improve RTL text handling in chat and sidebar with auto-direction #2
2025-02-18 19:31:12 -08:00
Alex Gleason
5639ba423b
Fix "Cannot read properties of undefined (reading 'startsWith')"
2025-02-18 18:47:56 -06:00