feat(chat): add configurable streaming output

This commit is contained in:
2026-07-17 13:34:27 +08:00
parent f7076569a7
commit 13fed0467a
11 changed files with 172 additions and 24 deletions

View File

@@ -1017,6 +1017,46 @@ textarea {
font-size: 12px;
}
.agent-stream-setting {
margin: 16px 0 0;
padding: 14px 16px;
border: 1px solid #dce7e3;
border-radius: 8px;
background: #ffffff;
}
.agent-stream-setting > .el-form-item__content {
display: flex;
align-items: center;
justify-content: space-between;
gap: 20px;
}
.agent-stream-setting-copy {
display: grid;
gap: 4px;
min-width: 0;
}
.agent-stream-setting-copy strong {
color: #263832;
font-size: 14px;
}
.agent-stream-setting-copy span {
color: #667a73;
font-size: 12px;
line-height: 1.6;
}
@media (max-width: 680px) {
.agent-stream-setting > .el-form-item__content {
align-items: flex-start;
flex-direction: column;
gap: 12px;
}
}
.agent-parameter-label {
display: inline-flex;
align-items: center;