Skip to content

Commit 25c42e5

Browse files
committed
Azure foundry change
1 parent f151027 commit 25c42e5

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

src/components/projects/projectId/attributes/attributeId/LLM/models/AzureFoundry.tsx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,10 @@ export default function AzureFoundry(props: LLmPropsAzureFoundry) {
1919
<label className="block mb-2 text-sm font-medium text-gray-900">Foundry URL</label>
2020
<LocalStorageDropdown disabled={props.disabled} buttonName={props.llmConfig.apiBase ?? 'Select URL'} searchDefaultValue={props.llmConfig.apiBase} storageKey='AzureFoundryApiBase' onOptionSelected={(o) => props.setLlmConfig({ ...props.llmConfig, apiBase: o })} />
2121
</div>
22+
<div>
23+
<label className="block mb-2 text-sm font-medium text-gray-900">Foundry Model</label>
24+
<LocalStorageDropdown disabled={props.disabled} buttonName={props.llmConfig.model ?? 'Select Model'} searchDefaultValue={props.llmConfig.model} storageKey='AzureFoundryModel' onOptionSelected={(o) => props.setLlmConfig({ ...props.llmConfig, model: o })} />
25+
</div>
2226
{props.onlyEssential ? null : <>
2327

2428
<div className="grid grid-cols-2 xl:grid-cols-3 gap-2">

submodules/javascript-functions

submodules/tailwind-config

0 commit comments

Comments
 (0)