Skip to content

Commit 605d7e4

Browse files
authored
Revamp TorchAgent UI (#6817)
## Summary - modern chat layout and bubbles - bottom-pinned input stays active while streaming - auto-scroll logic scoped to chat window - remove WelcomeSection and update styles - add unit tests for chat UI ## Testing - `yarn tsc` - `yarn test` ------ https://chatgpt.com/codex/tasks/task_e_6857d82d9764833388d3bfa6e2be5142
1 parent 98654da commit 605d7e4

File tree

12 files changed

+1001
-418
lines changed

12 files changed

+1001
-418
lines changed
Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
1-
CREATE TABLE misc.torchagent_feedback (
2-
`user` String,
3-
`session_id` String,
4-
`feedback` Int8,
5-
`time_inserted` DateTime64(0, 'UTC')
6-
)
7-
ENGINE = SharedMergeTree('/clickhouse/tables/{uuid}/{shard}', '{replica}')
8-
PARTITION BY toYYYYMM(time_inserted)
9-
ORDER BY (user, session_id, time_inserted)
10-
SETTINGS index_granularity = 8192
1+
CREATE TABLE
2+
misc.torchagent_feedback (
3+
`user` String,
4+
`session_id` String,
5+
`torchagent_feedback` String,
6+
`feedback` Int8,
7+
`time_inserted` DateTime64 (0, 'UTC')
8+
) ENGINE = SharedMergeTree ('/clickhouse/tables/{uuid}/{shard}', '{replica}')
9+
PARTITION BY
10+
toYYYYMM (time_inserted)
11+
ORDER BY
12+
(user, session_id, time_inserted) SETTINGS index_granularity = 8192

0 commit comments

Comments
 (0)