-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
feat(webapp): deterministic grounding facts and org-wide tokens for the dashboard agent #4796
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
e22dc1a
7ec06d9
deba2ca
83cdd09
a9cbea4
5f38261
76673bc
efb6f98
b62a291
7e30696
6f4301a
14a2f68
b51892c
d758f6d
63bcba8
9a8c973
0668fc4
8a78fbd
0da46d3
0f8bd79
c34af0e
f904497
c229222
aef849f
e8af577
1e021c4
44e070e
790e115
10c3d2b
c2952a7
55f0211
64d84db
cb363e7
b5d8144
9d65091
f64c674
9c2082b
62c1940
49601a7
aa84c4b
be828ec
5c3c688
42a89b4
34d0165
ebbf6b7
cc84011
559fc0b
c4d0e06
ca97486
5c65e5f
88d0977
8f6f008
235cfc3
4a4ba67
bd65fa7
2a258e7
4ed9a87
b9285db
e0d1943
7ac6b06
61c1d14
7b5b92e
e3c2692
59528d9
fede1a0
2381a8a
2ac07b1
4eb6f62
00f3d1f
4d16ed0
1662a77
0dcfb60
fe5d785
20ee5a6
ec5068c
db98d39
d867c1b
63738d4
177d171
6fd9df4
b5caa24
9979fec
c68a33c
7e98cd3
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| --- | ||
| "@trigger.dev/core": patch | ||
| "@trigger.dev/sdk": patch | ||
| --- | ||
|
|
||
| Chat server sessions can now set a `ttl` on the runs they trigger, so a run that is never picked up expires instead of waiting indefinitely. |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| --- | ||
| area: webapp | ||
| type: fix | ||
| --- | ||
|
|
||
| Fix the assistant chat showing a full-screen error when code highlighting fails to load. It now retries automatically and falls back to plain text so the conversation stays usable. |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| --- | ||
| area: webapp | ||
| type: improvement | ||
| --- | ||
|
|
||
| The AI assistant now gives grounded answers about queues: it can name the exact runs occupying concurrency slots and which limit is blocking, report accurate queue wait times, and help across all projects in your organization. |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| --- | ||
| area: webapp | ||
| type: fix | ||
| --- | ||
|
|
||
| The dashboard agent chat no longer waits forever on a stuck response or tool call — it now shows a clear error with a "Try again" option instead of hanging silently. |
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🔍 Bounded-wait retry can resend during a live turn
Was this helpful? React with 👍 or 👎 to provide feedback.
Collaborator
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Intended bounded-wait behavior: after the first-event deadline fires, the prior turn is presumed dead and retry is an explicit user action — resending is the recovery path, not a double-send during a live turn. |
Uh oh!
There was an error while loading. Please reload this page.