Export types on get settings query
This commit is contained in:
parent
224a14292c
commit
675ed84e2f
1 changed files with 3 additions and 3 deletions
|
|
@ -4,18 +4,18 @@ import {
|
||||||
useQueryClient,
|
useQueryClient,
|
||||||
} from "@tanstack/react-query";
|
} from "@tanstack/react-query";
|
||||||
|
|
||||||
interface AgentSettings {
|
export interface AgentSettings {
|
||||||
llm_model?: string;
|
llm_model?: string;
|
||||||
system_prompt?: string;
|
system_prompt?: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface IngestSettings {
|
export interface IngestSettings {
|
||||||
embedding_model?: string;
|
embedding_model?: string;
|
||||||
chunk_size?: number;
|
chunk_size?: number;
|
||||||
chunk_overlap?: number;
|
chunk_overlap?: number;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface Settings {
|
export interface Settings {
|
||||||
flow_id?: string;
|
flow_id?: string;
|
||||||
ingest_flow_id?: string;
|
ingest_flow_id?: string;
|
||||||
langflow_edit_url?: string;
|
langflow_edit_url?: string;
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue