mirror of
https://github.com/langbot-app/LangBot.git
synced 2026-06-02 03:55:55 +00:00
* feat: add embeddings model management backend support Co-Authored-By: Junyan Qin <Chin> <rockchinq@gmail.com> * feat: add embeddings model management frontend support Co-Authored-By: Junyan Qin <Chin> <rockchinq@gmail.com> * chore: revert HttpClient URL to production setting Co-Authored-By: Junyan Qin <Chin> <rockchinq@gmail.com> * refactor: integrate embeddings models into models page with tabs Co-Authored-By: Junyan Qin <Chin> <rockchinq@gmail.com> * perf: move files * perf: remove `s` * feat: allow requester to declare supported types in manifest * feat(embedding): delete dimension and encoding format * feat: add extra_args for embedding moels * perf: i18n ref * fix: linter err * fix: lint err * fix: linter err --------- Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Co-authored-by: Junyan Qin <Chin> <rockchinq@gmail.com>
98 lines
1.5 KiB
CSS
98 lines
1.5 KiB
CSS
.cardContainer {
|
|
width: 100%;
|
|
height: 10rem;
|
|
background-color: #fff;
|
|
border-radius: 10px;
|
|
box-shadow: 0px 2px 2px 0 rgba(0, 0, 0, 0.2);
|
|
padding: 1.2rem;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.cardContainer:hover {
|
|
box-shadow: 0px 2px 8px 0 rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
.iconBasicInfoContainer {
|
|
width: 100%;
|
|
height: 100%;
|
|
display: flex;
|
|
flex-direction: row;
|
|
gap: 0.8rem;
|
|
user-select: none;
|
|
}
|
|
|
|
.iconImage {
|
|
width: 3.8rem;
|
|
height: 3.8rem;
|
|
margin: 0.2rem;
|
|
border-radius: 50%;
|
|
}
|
|
|
|
.basicInfoContainer {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.2rem;
|
|
min-width: 0;
|
|
width: 100%;
|
|
}
|
|
|
|
.basicInfoText {
|
|
font-size: 1.4rem;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.providerContainer {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
justify-content: flex-start;
|
|
gap: 0.2rem;
|
|
}
|
|
|
|
.providerIcon {
|
|
width: 1.2rem;
|
|
height: 1.2rem;
|
|
margin-top: 0.2rem;
|
|
color: #626262;
|
|
}
|
|
|
|
.providerLabel {
|
|
font-size: 1.2rem;
|
|
font-weight: 600;
|
|
color: #626262;
|
|
}
|
|
|
|
.baseURLContainer {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
justify-content: flex-start;
|
|
gap: 0.2rem;
|
|
width: calc(100% - 3rem);
|
|
}
|
|
|
|
.baseURLIcon {
|
|
width: 1.2rem;
|
|
height: 1.2rem;
|
|
color: #626262;
|
|
}
|
|
|
|
.baseURLText {
|
|
font-size: 1rem;
|
|
width: 100%;
|
|
color: #626262;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.bigText {
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
font-size: 1.4rem;
|
|
font-weight: bold;
|
|
max-width: 100%;
|
|
}
|