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

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

4 changes: 2 additions & 2 deletions apps/web/src/api/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -355,9 +355,9 @@ export interface ControlPlaneModel extends PublicModel {
}

export interface SearchConfig {
provider: 'disabled' | 'tavily' | 'microsoft-grounding' | 'jina';
provider: 'disabled' | 'tavily' | 'microsoft-web-iq' | 'jina';
tavily: { apiKey: string };
microsoftGrounding: { apiKey: string };
microsoftWebIq: { apiKey: string };
jina: { apiKey: string };
passthroughOpenAiSearch: { enabled: boolean; upstreamId: string; model: string };
}
Expand Down
2 changes: 1 addition & 1 deletion apps/web/src/components/settings/ImportSection.vue
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ interface ExportPayload {

// The dashboard only round-trips the current export format. Older exports are
// rejected rather than silently coerced.
const EXPORT_VERSION = 17 as const;
const EXPORT_VERSION = 18 as const;

const api = useApi();

Expand Down
10 changes: 5 additions & 5 deletions apps/web/src/components/settings/SearchConfigSection.vue
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,11 @@ const PROVIDER_OPTIONS: ProviderOption[] = [
set: (config, apiKey) => ({ ...config, tavily: { apiKey } }),
},
{
value: 'microsoft-grounding',
label: 'Microsoft Grounding',
description: 'Gateway-managed Microsoft Grounding key.',
apiKey: config => config.microsoftGrounding.apiKey,
set: (config, apiKey) => ({ ...config, microsoftGrounding: { apiKey } }),
value: 'microsoft-web-iq',
label: 'Microsoft Web IQ',
description: 'Gateway-managed Microsoft Web IQ API key.',
apiKey: config => config.microsoftWebIq.apiKey,
set: (config, apiKey) => ({ ...config, microsoftWebIq: { apiKey } }),
},
{
value: 'jina',
Expand Down
2 changes: 1 addition & 1 deletion apps/web/src/pages/dashboard/settings.vue
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import { useUpstreamsStore } from '../../composables/useUpstreams.ts';
const defaultSearchConfig: SearchConfig = {
provider: 'disabled',
tavily: { apiKey: '' },
microsoftGrounding: { apiKey: '' },
microsoftWebIq: { apiKey: '' },
jina: { apiKey: '' },
passthroughOpenAiSearch: { enabled: false, upstreamId: '', model: '' },
};
Expand Down

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

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

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

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

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

Loading