Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
59ac721
initial commit
SimonMilord Feb 11, 2026
8003e23
Merge branch 'main' into SFINT-6645
SimonMilord Feb 12, 2026
0677a1d
Merge branch 'main' into SFINT-6645
SimonMilord Feb 18, 2026
1ebcde8
integration of ag-ui client to generate head and follow up answers
mmitiche Feb 19, 2026
3184a97
Merge branch 'main' into SFINT-6610
mmitiche Feb 19, 2026
0b06698
answerId set correctly on head answer
mmitiche Feb 20, 2026
f70d448
Merge branch 'SFINT-6610' of https://github.com/coveo/ui-kit into SFI…
mmitiche Feb 20, 2026
719cf93
added logic to support agent steps in the state
mmitiche Feb 20, 2026
e257e10
test added
mmitiche Feb 20, 2026
c835370
added generate step
mmitiche Feb 20, 2026
eae04af
added logic and part for height
SimonMilord Feb 20, 2026
8048fb9
fixed tests
SimonMilord Feb 20, 2026
1b75e1e
Merge branch 'main' into SFINT-6645
SimonMilord Feb 20, 2026
5117908
fix tests
SimonMilord Feb 20, 2026
edea03c
Merge branch 'SFINT-6645' of https://github.com/coveo/ui-kit into SFI…
SimonMilord Feb 20, 2026
212f1c2
Merge branch 'main' of https://github.com/coveo/ui-kit into SFINT-6610
mmitiche Feb 22, 2026
2e6714a
integration of follow up ui in atomic generated answer
mmitiche Feb 23, 2026
7918754
applied some improvements
SimonMilord Feb 23, 2026
3a22e40
fix tests
SimonMilord Feb 23, 2026
320c0dc
fix tests
SimonMilord Feb 23, 2026
8a98c0d
applied feedback
SimonMilord Feb 23, 2026
5fffb1d
Merge branch 'main' into SFINT-6645
SimonMilord Feb 23, 2026
49be231
Merge branch 'main' of https://github.com/coveo/ui-kit into SFINT-6610
mmitiche Feb 25, 2026
50222d6
aligned head answer strategy and follow up strategy
mmitiche Feb 25, 2026
48365cb
better error handling when running agents
mmitiche Feb 25, 2026
989a70b
Merge branch 'main' of https://github.com/coveo/ui-kit into SFINT-6646
mmitiche Feb 25, 2026
e1f5ab8
pr feedback applied
mmitiche Feb 25, 2026
17e08c7
Merge branch 'main' of https://github.com/coveo/ui-kit into SFINT-6590
mmitiche Feb 26, 2026
6d2e49e
Merge branch 'main' of https://github.com/coveo/ui-kit into SFINT-6590
mmitiche Feb 26, 2026
b49d312
atomic prefix added
mmitiche Feb 26, 2026
c5b2003
Merge branch 'SFINT-6645' into SFINT-6590
mmitiche Feb 26, 2026
c1ebe77
Merge branch 'SFINT-6646' into ui-loop-3.0
mmitiche Feb 26, 2026
6df6701
Merge branch 'SFINT-6610' into ui-loop-3.0
mmitiche Feb 26, 2026
85a92fe
Ag ui client + UI - minus UI steps are currently ready
mmitiche Feb 26, 2026
5872164
adjustments to layout
mmitiche Feb 26, 2026
4b9331f
Merge branch 'SFINT-6590' of https://github.com/coveo/ui-kit into ui-…
mmitiche Feb 26, 2026
e614aa5
improved isAnswerGenerationOngoing condition
mmitiche Feb 26, 2026
a1c1a0b
fixed timing issue
mmitiche Feb 26, 2026
6f805d0
implementation linked with mock server
mmitiche Feb 26, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export const renderFollowUpInput: FunctionalComponent<

let isSubmitting = false;

const handleSubmit = async () => {
const handleSubmit = () => {
const input = inputRef.value;
if (!input || isSubmitting) return;

Expand All @@ -38,7 +38,7 @@ export const renderFollowUpInput: FunctionalComponent<

isSubmitting = true;
try {
await askFollowUp(inputValue);
askFollowUp(inputValue);
input.value = '';
} finally {
isSubmitting = false;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,14 @@ const baseStyle = css`
@apply hidden;
}

/**
* @prop --atomic-generated-answer-content-fixed-height: The fixed height of the generated answer content when agent-id is set.
*/
[part="generated-content-container"] > .agent-scrollable {
@apply overflow-y-auto;
height: var(--atomic-generated-answer-content-fixed-height, 50vh);
}

/* Allow query label up to 3 lines before truncating */
.query-text {
display: -webkit-box;
Expand Down
Loading
Loading