feat: add loading to ChatContainer and set font family to inter and add tooltip to Form.Item and download documents on the document list page (#136)
* feat: download documents on the document list page * feat: add tooltip to Form.Item * feat: set font family to inter * feat: add loading to ChatContainer
This commit is contained in:
@@ -15,7 +15,7 @@ const SimilaritySlider = ({ isTooltipShown = false }: IProps) => {
|
||||
<Form.Item<FieldType>
|
||||
label="Similarity threshold"
|
||||
name={'similarity_threshold'}
|
||||
tooltip={isTooltipShown && 'xxx'}
|
||||
tooltip={isTooltipShown && 'coming soon'}
|
||||
initialValue={0.2}
|
||||
>
|
||||
<Slider max={1} step={0.01} />
|
||||
@@ -24,7 +24,7 @@ const SimilaritySlider = ({ isTooltipShown = false }: IProps) => {
|
||||
label="Vector similarity weight"
|
||||
name={'vector_similarity_weight'}
|
||||
initialValue={0.3}
|
||||
tooltip={isTooltipShown && 'xxx'}
|
||||
tooltip={isTooltipShown && 'coming soon'}
|
||||
>
|
||||
<Slider max={1} step={0.01} />
|
||||
</Form.Item>
|
||||
|
||||
Reference in New Issue
Block a user