[全量] 初始化项目代码、配置、文档及Agent协同harness
92
chat_web_front/src/assets/MessageStyle.less
Normal file
@@ -0,0 +1,92 @@
|
||||
.markdown-body {
|
||||
background-color: transparent;
|
||||
font-size: 16px;
|
||||
line-height: 28px;
|
||||
color: black;
|
||||
word-wrap: break-word;
|
||||
*{
|
||||
line-height: 1.5rem;
|
||||
}
|
||||
strong{
|
||||
font-family: "PingFangSC-Bold";
|
||||
}
|
||||
p {
|
||||
white-space: pre-wrap;
|
||||
}
|
||||
|
||||
ol {
|
||||
list-style-type: decimal;
|
||||
}
|
||||
|
||||
ul {
|
||||
list-style-type: disc;
|
||||
}
|
||||
|
||||
pre code,
|
||||
pre tt {
|
||||
line-height: 1.65;
|
||||
}
|
||||
|
||||
.highlight pre,
|
||||
pre {
|
||||
background-color: #f9fafd;
|
||||
}
|
||||
|
||||
code.hljs {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.code-block {
|
||||
&-wrapper {
|
||||
position: relative;
|
||||
padding-top: 24px;
|
||||
}
|
||||
|
||||
&-header {
|
||||
position: absolute;
|
||||
top: 5px;
|
||||
right: 0;
|
||||
width: 100%;
|
||||
padding: 0 1rem;
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
align-items: center;
|
||||
color: #b3b3b3;
|
||||
|
||||
&__copy {
|
||||
cursor: pointer;
|
||||
margin-left: 0.5rem;
|
||||
user-select: none;
|
||||
|
||||
&:hover {
|
||||
color: #65a665;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
html.dark {
|
||||
|
||||
.message-reply {
|
||||
.whitespace-pre-wrap {
|
||||
white-space: pre-wrap;
|
||||
color: var(--n-text-color);
|
||||
}
|
||||
}
|
||||
|
||||
.highlight pre,
|
||||
pre {
|
||||
background-color: #282c34;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (max-width: 533px) {
|
||||
.markdown-body .code-block-wrapper {
|
||||
padding: unset;
|
||||
code {
|
||||
padding: 24px 16px 16px 16px;
|
||||
}
|
||||
}
|
||||
}
|
||||
BIN
chat_web_front/src/assets/font/PingFang Bold.ttf
Normal file
BIN
chat_web_front/src/assets/font/PingFang Medium.ttf
Normal file
BIN
chat_web_front/src/assets/font/PingFang Regular.ttf
Normal file
18
chat_web_front/src/assets/font/font.css
Normal file
@@ -0,0 +1,18 @@
|
||||
@font-face {
|
||||
font-family: "PingFangSC-Bold";
|
||||
src: url('PingFang Bold.ttf');
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
@font-face {
|
||||
font-family: "PingFangSC-Medium";
|
||||
src: url('PingFang Medium.ttf');
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
@font-face {
|
||||
font-family: "PingFangSC-Regular";
|
||||
src: url('PingFang Regular.ttf');
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
1102
chat_web_front/src/assets/github-markdown.less
Normal file
206
chat_web_front/src/assets/highlight.less
Normal file
@@ -0,0 +1,206 @@
|
||||
html.dark {
|
||||
pre code.hljs {
|
||||
display: block;
|
||||
overflow-x: auto;
|
||||
padding: 1em
|
||||
}
|
||||
|
||||
code.hljs {
|
||||
padding: 3px 5px
|
||||
}
|
||||
|
||||
.hljs {
|
||||
color: #abb2bf;
|
||||
background: #282c34
|
||||
}
|
||||
|
||||
.hljs-keyword,
|
||||
.hljs-operator,
|
||||
.hljs-pattern-match {
|
||||
color: #f92672
|
||||
}
|
||||
|
||||
.hljs-function,
|
||||
.hljs-pattern-match .hljs-constructor {
|
||||
color: #61aeee
|
||||
}
|
||||
|
||||
.hljs-function .hljs-params {
|
||||
color: #a6e22e
|
||||
}
|
||||
|
||||
.hljs-function .hljs-params .hljs-typing {
|
||||
color: #fd971f
|
||||
}
|
||||
|
||||
.hljs-module-access .hljs-module {
|
||||
color: #7e57c2
|
||||
}
|
||||
|
||||
.hljs-constructor {
|
||||
color: #e2b93d
|
||||
}
|
||||
|
||||
.hljs-constructor .hljs-string {
|
||||
color: #9ccc65
|
||||
}
|
||||
|
||||
.hljs-comment,
|
||||
.hljs-quote {
|
||||
color: #b18eb1;
|
||||
font-style: italic
|
||||
}
|
||||
|
||||
.hljs-doctag,
|
||||
.hljs-formula {
|
||||
color: #c678dd
|
||||
}
|
||||
|
||||
.hljs-deletion,
|
||||
.hljs-name,
|
||||
.hljs-section,
|
||||
.hljs-selector-tag,
|
||||
.hljs-subst {
|
||||
color: #e06c75
|
||||
}
|
||||
|
||||
.hljs-literal {
|
||||
color: #56b6c2
|
||||
}
|
||||
|
||||
.hljs-addition,
|
||||
.hljs-attribute,
|
||||
.hljs-meta .hljs-string,
|
||||
.hljs-regexp,
|
||||
.hljs-string {
|
||||
color: #98c379
|
||||
}
|
||||
|
||||
.hljs-built_in,
|
||||
.hljs-class .hljs-title,
|
||||
.hljs-title.class_ {
|
||||
color: #e6c07b
|
||||
}
|
||||
|
||||
.hljs-attr,
|
||||
.hljs-number,
|
||||
.hljs-selector-attr,
|
||||
.hljs-selector-class,
|
||||
.hljs-selector-pseudo,
|
||||
.hljs-template-variable,
|
||||
.hljs-type,
|
||||
.hljs-variable {
|
||||
color: #d19a66
|
||||
}
|
||||
|
||||
.hljs-bullet,
|
||||
.hljs-link,
|
||||
.hljs-meta,
|
||||
.hljs-selector-id,
|
||||
.hljs-symbol,
|
||||
.hljs-title {
|
||||
color: #61aeee
|
||||
}
|
||||
|
||||
.hljs-emphasis {
|
||||
font-style: italic
|
||||
}
|
||||
|
||||
.hljs-strong {
|
||||
font-weight: 700
|
||||
}
|
||||
|
||||
.hljs-link {
|
||||
text-decoration: underline
|
||||
}
|
||||
}
|
||||
|
||||
html {
|
||||
pre code.hljs {
|
||||
display: block;
|
||||
overflow-x: auto;
|
||||
padding: 1em
|
||||
}
|
||||
|
||||
code.hljs {
|
||||
padding: 3px 5px;
|
||||
&::-webkit-scrollbar {
|
||||
height: 4px;
|
||||
}
|
||||
}
|
||||
|
||||
.hljs {
|
||||
color: #383a42;
|
||||
background: #fafafa
|
||||
}
|
||||
|
||||
.hljs-comment,
|
||||
.hljs-quote {
|
||||
color: #a0a1a7;
|
||||
font-style: italic
|
||||
}
|
||||
|
||||
.hljs-doctag,
|
||||
.hljs-formula,
|
||||
.hljs-keyword {
|
||||
color: #a626a4
|
||||
}
|
||||
|
||||
.hljs-deletion,
|
||||
.hljs-name,
|
||||
.hljs-section,
|
||||
.hljs-selector-tag,
|
||||
.hljs-subst {
|
||||
color: #e45649
|
||||
}
|
||||
|
||||
.hljs-literal {
|
||||
color: #0184bb
|
||||
}
|
||||
|
||||
.hljs-addition,
|
||||
.hljs-attribute,
|
||||
.hljs-meta .hljs-string,
|
||||
.hljs-regexp,
|
||||
.hljs-string {
|
||||
color: #50a14f
|
||||
}
|
||||
|
||||
.hljs-attr,
|
||||
.hljs-number,
|
||||
.hljs-selector-attr,
|
||||
.hljs-selector-class,
|
||||
.hljs-selector-pseudo,
|
||||
.hljs-template-variable,
|
||||
.hljs-type,
|
||||
.hljs-variable {
|
||||
color: #986801
|
||||
}
|
||||
|
||||
.hljs-bullet,
|
||||
.hljs-link,
|
||||
.hljs-meta,
|
||||
.hljs-selector-id,
|
||||
.hljs-symbol,
|
||||
.hljs-title {
|
||||
color: #4078f2
|
||||
}
|
||||
|
||||
.hljs-built_in,
|
||||
.hljs-class .hljs-title,
|
||||
.hljs-title.class_ {
|
||||
color: #c18401
|
||||
}
|
||||
|
||||
.hljs-emphasis {
|
||||
font-style: italic
|
||||
}
|
||||
|
||||
.hljs-strong {
|
||||
font-weight: 700
|
||||
}
|
||||
|
||||
.hljs-link {
|
||||
text-decoration: underline
|
||||
}
|
||||
}
|
||||
BIN
chat_web_front/src/assets/images/applications/right.png
Normal file
|
After Width: | Height: | Size: 384 B |
BIN
chat_web_front/src/assets/images/chat/ai.png
Normal file
|
After Width: | Height: | Size: 6.0 KiB |
BIN
chat_web_front/src/assets/images/chat/application.png
Normal file
|
After Width: | Height: | Size: 108 KiB |
BIN
chat_web_front/src/assets/images/chat/carouselStudy.png
Normal file
|
After Width: | Height: | Size: 86 KiB |
BIN
chat_web_front/src/assets/images/chat/carouselTranslation.png
Normal file
|
After Width: | Height: | Size: 509 KiB |
BIN
chat_web_front/src/assets/images/chat/carouselWriting.png
Normal file
|
After Width: | Height: | Size: 74 KiB |
BIN
chat_web_front/src/assets/images/chat/chatLogo.png
Normal file
|
After Width: | Height: | Size: 255 KiB |
BIN
chat_web_front/src/assets/images/chat/close.png
Normal file
|
After Width: | Height: | Size: 375 B |
BIN
chat_web_front/src/assets/images/chat/collect.png
Normal file
|
After Width: | Height: | Size: 893 B |
BIN
chat_web_front/src/assets/images/chat/collected.png
Normal file
|
After Width: | Height: | Size: 579 B |
BIN
chat_web_front/src/assets/images/chat/copy.png
Normal file
|
After Width: | Height: | Size: 595 B |
BIN
chat_web_front/src/assets/images/chat/deepThink.png
Normal file
|
After Width: | Height: | Size: 785 B |
BIN
chat_web_front/src/assets/images/chat/deepThinkActive.png
Normal file
|
After Width: | Height: | Size: 2.0 KiB |
BIN
chat_web_front/src/assets/images/chat/del.png
Normal file
|
After Width: | Height: | Size: 556 B |
BIN
chat_web_front/src/assets/images/chat/file.png
Normal file
|
After Width: | Height: | Size: 588 B |
BIN
chat_web_front/src/assets/images/chat/history.png
Normal file
|
After Width: | Height: | Size: 1.4 KiB |
BIN
chat_web_front/src/assets/images/chat/history/addChat.png
Normal file
|
After Width: | Height: | Size: 587 B |
BIN
chat_web_front/src/assets/images/chat/history/clear-input.png
Normal file
|
After Width: | Height: | Size: 730 B |
BIN
chat_web_front/src/assets/images/chat/history/clear.png
Normal file
|
After Width: | Height: | Size: 433 B |
BIN
chat_web_front/src/assets/images/chat/history/close.png
Normal file
|
After Width: | Height: | Size: 199 B |
BIN
chat_web_front/src/assets/images/chat/history/del.png
Normal file
|
After Width: | Height: | Size: 270 B |
BIN
chat_web_front/src/assets/images/chat/history/delActive.png
Normal file
|
After Width: | Height: | Size: 262 B |
BIN
chat_web_front/src/assets/images/chat/history/edit.png
Normal file
|
After Width: | Height: | Size: 548 B |
BIN
chat_web_front/src/assets/images/chat/history/editActive.png
Normal file
|
After Width: | Height: | Size: 498 B |
BIN
chat_web_front/src/assets/images/chat/history/fold.png
Normal file
|
After Width: | Height: | Size: 268 B |
BIN
chat_web_front/src/assets/images/chat/history/searchHis.png
Normal file
|
After Width: | Height: | Size: 536 B |
BIN
chat_web_front/src/assets/images/chat/history/unfold.png
Normal file
|
After Width: | Height: | Size: 252 B |
BIN
chat_web_front/src/assets/images/chat/historyed.png
Normal file
|
After Width: | Height: | Size: 1.3 KiB |
BIN
chat_web_front/src/assets/images/chat/jump.png
Normal file
|
After Width: | Height: | Size: 301 B |
BIN
chat_web_front/src/assets/images/chat/logo.png
Normal file
|
After Width: | Height: | Size: 255 KiB |
BIN
chat_web_front/src/assets/images/chat/newChat.png
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
chat_web_front/src/assets/images/chat/newChated.png
Normal file
|
After Width: | Height: | Size: 1.0 KiB |
BIN
chat_web_front/src/assets/images/chat/refresh.png
Normal file
|
After Width: | Height: | Size: 864 B |
BIN
chat_web_front/src/assets/images/chat/scenaried.png
Normal file
|
After Width: | Height: | Size: 815 B |
BIN
chat_web_front/src/assets/images/chat/scenarioImg.png
Normal file
|
After Width: | Height: | Size: 728 B |
BIN
chat_web_front/src/assets/images/chat/select.png
Normal file
|
After Width: | Height: | Size: 213 B |
BIN
chat_web_front/src/assets/images/chat/send.png
Normal file
|
After Width: | Height: | Size: 982 B |
BIN
chat_web_front/src/assets/images/chat/sendWhite.png
Normal file
|
After Width: | Height: | Size: 916 B |
BIN
chat_web_front/src/assets/images/chat/stopChat.png
Normal file
|
After Width: | Height: | Size: 819 B |
BIN
chat_web_front/src/assets/images/chat/user.png
Normal file
|
After Width: | Height: | Size: 2.6 KiB |
BIN
chat_web_front/src/assets/images/chat/workspace.png
Normal file
|
After Width: | Height: | Size: 100 KiB |
BIN
chat_web_front/src/assets/images/close.png
Normal file
|
After Width: | Height: | Size: 375 B |
BIN
chat_web_front/src/assets/images/left.png
Normal file
|
After Width: | Height: | Size: 385 B |
BIN
chat_web_front/src/assets/images/login/loginBg.png
Normal file
|
After Width: | Height: | Size: 1.3 MiB |
BIN
chat_web_front/src/assets/images/login/project-logo.png
Normal file
|
After Width: | Height: | Size: 74 KiB |
BIN
chat_web_front/src/assets/images/login/project-logo2.png
Normal file
|
After Width: | Height: | Size: 93 KiB |
BIN
chat_web_front/src/assets/images/login/projectLogo.png
Normal file
|
After Width: | Height: | Size: 70 KiB |
BIN
chat_web_front/src/assets/images/login/projectLogo2.png
Normal file
|
After Width: | Height: | Size: 78 KiB |
BIN
chat_web_front/src/assets/images/message/copy.png
Normal file
|
After Width: | Height: | Size: 549 B |
BIN
chat_web_front/src/assets/images/message/doc.png
Normal file
|
After Width: | Height: | Size: 1.5 KiB |
BIN
chat_web_front/src/assets/images/message/docx.png
Normal file
|
After Width: | Height: | Size: 1.7 KiB |
BIN
chat_web_front/src/assets/images/message/jpg.png
Normal file
|
After Width: | Height: | Size: 1.3 KiB |
BIN
chat_web_front/src/assets/images/message/md.png
Normal file
|
After Width: | Height: | Size: 1.3 KiB |
BIN
chat_web_front/src/assets/images/message/messageLoad.gif
Normal file
|
After Width: | Height: | Size: 15 KiB |
BIN
chat_web_front/src/assets/images/message/pdf.png
Normal file
|
After Width: | Height: | Size: 1.3 KiB |
BIN
chat_web_front/src/assets/images/message/png.png
Normal file
|
After Width: | Height: | Size: 1.4 KiB |
BIN
chat_web_front/src/assets/images/message/xls.png
Normal file
|
After Width: | Height: | Size: 1.4 KiB |
BIN
chat_web_front/src/assets/images/message/xlsx.png
Normal file
|
After Width: | Height: | Size: 1.7 KiB |
BIN
chat_web_front/src/assets/images/operates/application-active.png
Normal file
|
After Width: | Height: | Size: 1.9 KiB |
BIN
chat_web_front/src/assets/images/operates/application.png
Normal file
|
After Width: | Height: | Size: 1.7 KiB |
BIN
chat_web_front/src/assets/images/operates/interlocution.png
Normal file
|
After Width: | Height: | Size: 1.0 KiB |
BIN
chat_web_front/src/assets/images/operates/interlocutioned.png
Normal file
|
After Width: | Height: | Size: 1018 B |
BIN
chat_web_front/src/assets/images/operates/material-active.png
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
chat_web_front/src/assets/images/operates/material.png
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
chat_web_front/src/assets/images/operates/quit.png
Normal file
|
After Width: | Height: | Size: 499 B |
BIN
chat_web_front/src/assets/images/operates/study.png
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
chat_web_front/src/assets/images/operates/studyed.png
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
chat_web_front/src/assets/images/operates/title.png
Normal file
|
After Width: | Height: | Size: 12 KiB |
BIN
chat_web_front/src/assets/images/operates/to_lang.png
Normal file
|
After Width: | Height: | Size: 154 B |
BIN
chat_web_front/src/assets/images/operates/translation.png
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
chat_web_front/src/assets/images/operates/translationed.png
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
chat_web_front/src/assets/images/operates/user.png
Normal file
|
After Width: | Height: | Size: 2.6 KiB |
BIN
chat_web_front/src/assets/images/operates/writing.png
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
chat_web_front/src/assets/images/operates/writinged.png
Normal file
|
After Width: | Height: | Size: 1.0 KiB |
BIN
chat_web_front/src/assets/images/reading/create.png
Normal file
|
After Width: | Height: | Size: 347 B |
BIN
chat_web_front/src/assets/images/reading/del.png
Normal file
|
After Width: | Height: | Size: 369 B |
BIN
chat_web_front/src/assets/images/reading/empty.png
Normal file
|
After Width: | Height: | Size: 63 KiB |
BIN
chat_web_front/src/assets/images/reading/empty_literatures.png
Normal file
|
After Width: | Height: | Size: 30 KiB |
BIN
chat_web_front/src/assets/images/reading/folder.png
Normal file
|
After Width: | Height: | Size: 1000 B |
BIN
chat_web_front/src/assets/images/reading/note.png
Normal file
|
After Width: | Height: | Size: 786 B |
BIN
chat_web_front/src/assets/images/reading/note_active.png
Normal file
|
After Width: | Height: | Size: 828 B |
BIN
chat_web_front/src/assets/images/reading/note_del.png
Normal file
|
After Width: | Height: | Size: 549 B |
BIN
chat_web_front/src/assets/images/reading/note_update.png
Normal file
|
After Width: | Height: | Size: 511 B |
BIN
chat_web_front/src/assets/images/reading/operates.png
Normal file
|
After Width: | Height: | Size: 215 B |
BIN
chat_web_front/src/assets/images/reading/remove.png
Normal file
|
After Width: | Height: | Size: 544 B |
BIN
chat_web_front/src/assets/images/reading/tips.png
Normal file
|
After Width: | Height: | Size: 670 B |
BIN
chat_web_front/src/assets/images/reading/upload_fail.png
Normal file
|
After Width: | Height: | Size: 560 B |
BIN
chat_web_front/src/assets/images/reading/upload_remove.png
Normal file
|
After Width: | Height: | Size: 544 B |
BIN
chat_web_front/src/assets/images/reading/upload_success.png
Normal file
|
After Width: | Height: | Size: 577 B |
BIN
chat_web_front/src/assets/images/right.png
Normal file
|
After Width: | Height: | Size: 384 B |
BIN
chat_web_front/src/assets/images/search.png
Normal file
|
After Width: | Height: | Size: 826 B |
BIN
chat_web_front/src/assets/images/translate/close.png
Normal file
|
After Width: | Height: | Size: 695 B |
BIN
chat_web_front/src/assets/images/translate/docx.png
Normal file
|
After Width: | Height: | Size: 1.7 KiB |