Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion llm-service/uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ const CreateSessionForm = ({ form, dataSources }: CreateSessionFormProps) => {
style={{ width: "100%", paddingTop: 20 }}
{...layout}
onValuesChange={(
changedValues: Partial<Omit<CreateSessionRequest, "id">>,
changedValues: Partial<Omit<CreateSessionRequest, "id">>
) => {
onInferenceModelChange(changedValues, form, llmModels);
}}
Expand Down Expand Up @@ -238,7 +238,7 @@ const CreateSessionForm = ({ form, dataSources }: CreateSessionFormProps) => {
<Form.Item<CreateSessionRequest>
name="responseChunks"
initialValue={10}
label="Maximum number of documents"
label="Maximum number of document chunks"
>
<Slider marks={ResponseChunksRange} min={1} max={20} />
</Form.Item>
Expand Down
2 changes: 1 addition & 1 deletion ui/src/pages/RagChatTab/Settings/ChatSettingsModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,7 @@ const ChatSettingsModal = ({
<Form.Item
name="responseChunks"
initialValue={activeSession.responseChunks}
label="Maximum number of documents"
label="Maximum number of document chunks"
>
<Slider marks={ResponseChunksRange} min={1} max={20} />
</Form.Item>
Expand Down
2 changes: 1 addition & 1 deletion ui/src/pages/Settings/MetadataDBFields.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ const MetadataDatabaseFields = ({
optionType="button"
buttonStyle="solid"
options={[
{ value: "H2", label: "Embedded" },
{ value: "H2", label: "Embedded H2" },
{ value: "PostgreSQL", label: "External PostgreSQL" },
]}
disabled={!enableModification}
Expand Down
2 changes: 1 addition & 1 deletion ui/src/pages/Settings/VectorDBFields.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ export const VectorDBFields = ({
optionType="button"
buttonStyle="solid"
options={[
{ value: "QDRANT", label: "Qdrant" },
{ value: "QDRANT", label: "Embedded Qdrant" },
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Added Embedded here for consistency.

{ value: "OPENSEARCH", label: "Cloudera Semantic Search" },
{ value: "CHROMADB", label: "ChromaDB" },
]}
Expand Down
Loading