Skip to content

Commit fcfea4a

Browse files
authored
[sdk_v2] improves error handling in js sdk (#435)
1 parent 65dbd33 commit fcfea4a

25 files changed

Lines changed: 537 additions & 188 deletions

sdk_v2/js/docs/classes/AudioClient.md

Lines changed: 16 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
# Class: AudioClient
88

9-
Defined in: [openai/audioClient.ts:40](https://github.com/microsoft/Foundry-Local/blob/03d8abe494b495f2cafc516bcebbbb66a9b6662f/sdk_v2/js/src/openai/audioClient.ts#L40)
9+
Defined in: [openai/audioClient.ts:40](https://github.com/microsoft/Foundry-Local/blob/a42a7bf2423d2b1da6cca82531f4977f139aef46/sdk_v2/js/src/openai/audioClient.ts#L40)
1010

1111
Client for performing audio operations (transcription, translation) with a loaded model.
1212
Follows the OpenAI Audio API structure.
@@ -17,10 +17,13 @@ Follows the OpenAI Audio API structure.
1717

1818
> **new AudioClient**(`modelId`, `coreInterop`): `AudioClient`
1919
20-
Defined in: [openai/audioClient.ts:50](https://github.com/microsoft/Foundry-Local/blob/03d8abe494b495f2cafc516bcebbbb66a9b6662f/sdk_v2/js/src/openai/audioClient.ts#L50)
20+
Defined in: [openai/audioClient.ts:54](https://github.com/microsoft/Foundry-Local/blob/a42a7bf2423d2b1da6cca82531f4977f139aef46/sdk_v2/js/src/openai/audioClient.ts#L54)
2121

2222
**`Internal`**
2323

24+
Restricted to internal use because CoreInterop is an internal implementation detail.
25+
Users should create clients via the Model.createAudioClient() factory method.
26+
2427
#### Parameters
2528

2629
##### modelId
@@ -41,7 +44,7 @@ Defined in: [openai/audioClient.ts:50](https://github.com/microsoft/Foundry-Loca
4144

4245
> **settings**: [`AudioClientSettings`](AudioClientSettings.md)
4346
44-
Defined in: [openai/audioClient.ts:47](https://github.com/microsoft/Foundry-Local/blob/03d8abe494b495f2cafc516bcebbbb66a9b6662f/sdk_v2/js/src/openai/audioClient.ts#L47)
47+
Defined in: [openai/audioClient.ts:47](https://github.com/microsoft/Foundry-Local/blob/a42a7bf2423d2b1da6cca82531f4977f139aef46/sdk_v2/js/src/openai/audioClient.ts#L47)
4548

4649
Configuration settings for audio operations.
4750

@@ -51,7 +54,7 @@ Configuration settings for audio operations.
5154

5255
> **transcribe**(`audioFilePath`): `Promise`\<`any`\>
5356
54-
Defined in: [openai/audioClient.ts:60](https://github.com/microsoft/Foundry-Local/blob/03d8abe494b495f2cafc516bcebbbb66a9b6662f/sdk_v2/js/src/openai/audioClient.ts#L60)
57+
Defined in: [openai/audioClient.ts:75](https://github.com/microsoft/Foundry-Local/blob/a42a7bf2423d2b1da6cca82531f4977f139aef46/sdk_v2/js/src/openai/audioClient.ts#L75)
5558

5659
Transcribes audio into the input language.
5760

@@ -69,13 +72,17 @@ Path to the audio file to transcribe.
6972

7073
The transcription result.
7174

75+
#### Throws
76+
77+
Error - If audioFilePath is invalid or transcription fails.
78+
7279
***
7380

7481
### transcribeStreaming()
7582

7683
> **transcribeStreaming**(`audioFilePath`, `callback`): `Promise`\<`void`\>
7784
78-
Defined in: [openai/audioClient.ts:77](https://github.com/microsoft/Foundry-Local/blob/03d8abe494b495f2cafc516bcebbbb66a9b6662f/sdk_v2/js/src/openai/audioClient.ts#L77)
85+
Defined in: [openai/audioClient.ts:98](https://github.com/microsoft/Foundry-Local/blob/a42a7bf2423d2b1da6cca82531f4977f139aef46/sdk_v2/js/src/openai/audioClient.ts#L98)
7986

8087
Transcribes audio into the input language using streaming.
8188

@@ -98,3 +105,7 @@ A callback function that receives each chunk of the streaming response.
98105
`Promise`\<`void`\>
99106

100107
A promise that resolves when the stream is complete.
108+
109+
#### Throws
110+
111+
Error - If audioFilePath or callback are invalid, or streaming fails.

sdk_v2/js/docs/classes/AudioClientSettings.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
# Class: AudioClientSettings
88

9-
Defined in: [openai/audioClient.ts:3](https://github.com/microsoft/Foundry-Local/blob/03d8abe494b495f2cafc516bcebbbb66a9b6662f/sdk_v2/js/src/openai/audioClient.ts#L3)
9+
Defined in: [openai/audioClient.ts:3](https://github.com/microsoft/Foundry-Local/blob/a42a7bf2423d2b1da6cca82531f4977f139aef46/sdk_v2/js/src/openai/audioClient.ts#L3)
1010

1111
## Constructors
1212

@@ -24,23 +24,23 @@ Defined in: [openai/audioClient.ts:3](https://github.com/microsoft/Foundry-Local
2424

2525
> `optional` **language**: `string`
2626
27-
Defined in: [openai/audioClient.ts:4](https://github.com/microsoft/Foundry-Local/blob/03d8abe494b495f2cafc516bcebbbb66a9b6662f/sdk_v2/js/src/openai/audioClient.ts#L4)
27+
Defined in: [openai/audioClient.ts:4](https://github.com/microsoft/Foundry-Local/blob/a42a7bf2423d2b1da6cca82531f4977f139aef46/sdk_v2/js/src/openai/audioClient.ts#L4)
2828

2929
***
3030

3131
### temperature?
3232

3333
> `optional` **temperature**: `number`
3434
35-
Defined in: [openai/audioClient.ts:5](https://github.com/microsoft/Foundry-Local/blob/03d8abe494b495f2cafc516bcebbbb66a9b6662f/sdk_v2/js/src/openai/audioClient.ts#L5)
35+
Defined in: [openai/audioClient.ts:5](https://github.com/microsoft/Foundry-Local/blob/a42a7bf2423d2b1da6cca82531f4977f139aef46/sdk_v2/js/src/openai/audioClient.ts#L5)
3636

3737
## Methods
3838

3939
### \_serialize()
4040

4141
> **\_serialize**(): `object`
4242
43-
Defined in: [openai/audioClient.ts:11](https://github.com/microsoft/Foundry-Local/blob/03d8abe494b495f2cafc516bcebbbb66a9b6662f/sdk_v2/js/src/openai/audioClient.ts#L11)
43+
Defined in: [openai/audioClient.ts:11](https://github.com/microsoft/Foundry-Local/blob/a42a7bf2423d2b1da6cca82531f4977f139aef46/sdk_v2/js/src/openai/audioClient.ts#L11)
4444

4545
**`Internal`**
4646

sdk_v2/js/docs/classes/Catalog.md

Lines changed: 22 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
# Class: Catalog
88

9-
Defined in: [catalog.ts:11](https://github.com/microsoft/Foundry-Local/blob/03d8abe494b495f2cafc516bcebbbb66a9b6662f/sdk_v2/js/src/catalog.ts#L11)
9+
Defined in: [catalog.ts:11](https://github.com/microsoft/Foundry-Local/blob/a42a7bf2423d2b1da6cca82531f4977f139aef46/sdk_v2/js/src/catalog.ts#L11)
1010

1111
Represents a catalog of AI models available in the system.
1212
Provides methods to discover, list, and retrieve models and their variants.
@@ -17,7 +17,7 @@ Provides methods to discover, list, and retrieve models and their variants.
1717

1818
> **new Catalog**(`coreInterop`, `modelLoadManager`): `Catalog`
1919
20-
Defined in: [catalog.ts:20](https://github.com/microsoft/Foundry-Local/blob/03d8abe494b495f2cafc516bcebbbb66a9b6662f/sdk_v2/js/src/catalog.ts#L20)
20+
Defined in: [catalog.ts:20](https://github.com/microsoft/Foundry-Local/blob/a42a7bf2423d2b1da6cca82531f4977f139aef46/sdk_v2/js/src/catalog.ts#L20)
2121

2222
#### Parameters
2323

@@ -41,7 +41,7 @@ Defined in: [catalog.ts:20](https://github.com/microsoft/Foundry-Local/blob/03d8
4141

4242
> **get** **name**(): `string`
4343
44-
Defined in: [catalog.ts:30](https://github.com/microsoft/Foundry-Local/blob/03d8abe494b495f2cafc516bcebbbb66a9b6662f/sdk_v2/js/src/catalog.ts#L30)
44+
Defined in: [catalog.ts:30](https://github.com/microsoft/Foundry-Local/blob/a42a7bf2423d2b1da6cca82531f4977f139aef46/sdk_v2/js/src/catalog.ts#L30)
4545

4646
Gets the name of the catalog.
4747

@@ -57,7 +57,7 @@ The name of the catalog.
5757

5858
> **getCachedModels**(): `Promise`\<[`ModelVariant`](ModelVariant.md)[]\>
5959
60-
Defined in: [catalog.ts:108](https://github.com/microsoft/Foundry-Local/blob/03d8abe494b495f2cafc516bcebbbb66a9b6662f/sdk_v2/js/src/catalog.ts#L108)
60+
Defined in: [catalog.ts:126](https://github.com/microsoft/Foundry-Local/blob/a42a7bf2423d2b1da6cca82531f4977f139aef46/sdk_v2/js/src/catalog.ts#L126)
6161

6262
Retrieves a list of all locally cached model variants.
6363
This method is asynchronous as it may involve file I/O or querying the underlying core.
@@ -74,7 +74,7 @@ A Promise that resolves to an array of cached ModelVariant objects.
7474

7575
> **getLoadedModels**(): `Promise`\<[`ModelVariant`](ModelVariant.md)[]\>
7676
77-
Defined in: [catalog.ts:134](https://github.com/microsoft/Foundry-Local/blob/03d8abe494b495f2cafc516bcebbbb66a9b6662f/sdk_v2/js/src/catalog.ts#L134)
77+
Defined in: [catalog.ts:152](https://github.com/microsoft/Foundry-Local/blob/a42a7bf2423d2b1da6cca82531f4977f139aef46/sdk_v2/js/src/catalog.ts#L152)
7878

7979
Retrieves a list of all currently loaded model variants.
8080
This operation is asynchronous because checking the loaded status may involve querying
@@ -90,9 +90,9 @@ A Promise that resolves to an array of loaded ModelVariant objects.
9090

9191
### getModel()
9292

93-
> **getModel**(`alias`): `Promise`\<[`Model`](Model.md) \| `undefined`\>
93+
> **getModel**(`alias`): `Promise`\<[`Model`](Model.md)\>
9494
95-
Defined in: [catalog.ts:87](https://github.com/microsoft/Foundry-Local/blob/03d8abe494b495f2cafc516bcebbbb66a9b6662f/sdk_v2/js/src/catalog.ts#L87)
95+
Defined in: [catalog.ts:88](https://github.com/microsoft/Foundry-Local/blob/a42a7bf2423d2b1da6cca82531f4977f139aef46/sdk_v2/js/src/catalog.ts#L88)
9696

9797
Retrieves a model by its alias.
9898
This method is asynchronous as it may ensure the catalog is up-to-date by fetching from a remote service.
@@ -107,17 +107,21 @@ The alias of the model to retrieve.
107107

108108
#### Returns
109109

110-
`Promise`\<[`Model`](Model.md) \| `undefined`\>
110+
`Promise`\<[`Model`](Model.md)\>
111111

112-
A Promise that resolves to the Model object if found, otherwise undefined.
112+
A Promise that resolves to the Model object if found, otherwise throws an error.
113+
114+
#### Throws
115+
116+
Error - If alias is null, undefined, or empty.
113117

114118
***
115119

116120
### getModels()
117121

118122
> **getModels**(): `Promise`\<[`Model`](Model.md)[]\>
119123
120-
Defined in: [catalog.ts:76](https://github.com/microsoft/Foundry-Local/blob/03d8abe494b495f2cafc516bcebbbb66a9b6662f/sdk_v2/js/src/catalog.ts#L76)
124+
Defined in: [catalog.ts:76](https://github.com/microsoft/Foundry-Local/blob/a42a7bf2423d2b1da6cca82531f4977f139aef46/sdk_v2/js/src/catalog.ts#L76)
121125

122126
Lists all available models in the catalog.
123127
This method is asynchronous as it may fetch the model list from a remote service or perform file I/O.
@@ -132,9 +136,9 @@ A Promise that resolves to an array of Model objects.
132136

133137
### getModelVariant()
134138

135-
> **getModelVariant**(`modelId`): `Promise`\<[`ModelVariant`](ModelVariant.md) \| `undefined`\>
139+
> **getModelVariant**(`modelId`): `Promise`\<[`ModelVariant`](ModelVariant.md)\>
136140
137-
Defined in: [catalog.ts:98](https://github.com/microsoft/Foundry-Local/blob/03d8abe494b495f2cafc516bcebbbb66a9b6662f/sdk_v2/js/src/catalog.ts#L98)
141+
Defined in: [catalog.ts:108](https://github.com/microsoft/Foundry-Local/blob/a42a7bf2423d2b1da6cca82531f4977f139aef46/sdk_v2/js/src/catalog.ts#L108)
138142

139143
Retrieves a specific model variant by its ID.
140144
This method is asynchronous as it may ensure the catalog is up-to-date by fetching from a remote service.
@@ -149,6 +153,10 @@ The unique identifier of the model variant.
149153

150154
#### Returns
151155

152-
`Promise`\<[`ModelVariant`](ModelVariant.md) \| `undefined`\>
156+
`Promise`\<[`ModelVariant`](ModelVariant.md)\>
157+
158+
A Promise that resolves to the ModelVariant object if found, otherwise throws an error.
159+
160+
#### Throws
153161

154-
A Promise that resolves to the ModelVariant object if found, otherwise undefined.
162+
Error - If modelId is null, undefined, or empty.

sdk_v2/js/docs/classes/ChatClient.md

Lines changed: 16 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
# Class: ChatClient
88

9-
Defined in: [openai/chatClient.ts:50](https://github.com/microsoft/Foundry-Local/blob/03d8abe494b495f2cafc516bcebbbb66a9b6662f/sdk_v2/js/src/openai/chatClient.ts#L50)
9+
Defined in: [openai/chatClient.ts:50](https://github.com/microsoft/Foundry-Local/blob/a42a7bf2423d2b1da6cca82531f4977f139aef46/sdk_v2/js/src/openai/chatClient.ts#L50)
1010

1111
Client for performing chat completions with a loaded model.
1212
Follows the OpenAI Chat Completion API structure.
@@ -17,10 +17,13 @@ Follows the OpenAI Chat Completion API structure.
1717

1818
> **new ChatClient**(`modelId`, `coreInterop`): `ChatClient`
1919
20-
Defined in: [openai/chatClient.ts:60](https://github.com/microsoft/Foundry-Local/blob/03d8abe494b495f2cafc516bcebbbb66a9b6662f/sdk_v2/js/src/openai/chatClient.ts#L60)
20+
Defined in: [openai/chatClient.ts:64](https://github.com/microsoft/Foundry-Local/blob/a42a7bf2423d2b1da6cca82531f4977f139aef46/sdk_v2/js/src/openai/chatClient.ts#L64)
2121

2222
**`Internal`**
2323

24+
Restricted to internal use because CoreInterop is an internal implementation detail.
25+
Users should create clients via the Model.createChatClient() factory method.
26+
2427
#### Parameters
2528

2629
##### modelId
@@ -41,7 +44,7 @@ Defined in: [openai/chatClient.ts:60](https://github.com/microsoft/Foundry-Local
4144

4245
> **settings**: [`ChatClientSettings`](ChatClientSettings.md)
4346
44-
Defined in: [openai/chatClient.ts:57](https://github.com/microsoft/Foundry-Local/blob/03d8abe494b495f2cafc516bcebbbb66a9b6662f/sdk_v2/js/src/openai/chatClient.ts#L57)
47+
Defined in: [openai/chatClient.ts:57](https://github.com/microsoft/Foundry-Local/blob/a42a7bf2423d2b1da6cca82531f4977f139aef46/sdk_v2/js/src/openai/chatClient.ts#L57)
4548

4649
Configuration settings for chat completions.
4750

@@ -51,7 +54,7 @@ Configuration settings for chat completions.
5154

5255
> **completeChat**(`messages`): `Promise`\<`any`\>
5356
54-
Defined in: [openai/chatClient.ts:70](https://github.com/microsoft/Foundry-Local/blob/03d8abe494b495f2cafc516bcebbbb66a9b6662f/sdk_v2/js/src/openai/chatClient.ts#L70)
57+
Defined in: [openai/chatClient.ts:96](https://github.com/microsoft/Foundry-Local/blob/a42a7bf2423d2b1da6cca82531f4977f139aef46/sdk_v2/js/src/openai/chatClient.ts#L96)
5558

5659
Performs a synchronous chat completion.
5760

@@ -69,13 +72,17 @@ An array of message objects (e.g., { role: 'user', content: 'Hello' }).
6972

7073
The chat completion response object.
7174

75+
#### Throws
76+
77+
Error - If messages are invalid or completion fails.
78+
7279
***
7380

7481
### completeStreamingChat()
7582

7683
> **completeStreamingChat**(`messages`, `callback`): `Promise`\<`void`\>
7784
78-
Defined in: [openai/chatClient.ts:88](https://github.com/microsoft/Foundry-Local/blob/03d8abe494b495f2cafc516bcebbbb66a9b6662f/sdk_v2/js/src/openai/chatClient.ts#L88)
85+
Defined in: [openai/chatClient.ts:120](https://github.com/microsoft/Foundry-Local/blob/a42a7bf2423d2b1da6cca82531f4977f139aef46/sdk_v2/js/src/openai/chatClient.ts#L120)
7986

8087
Performs a streaming chat completion.
8188

@@ -98,3 +105,7 @@ A callback function that receives each chunk of the streaming response.
98105
`Promise`\<`void`\>
99106

100107
A promise that resolves when the stream is complete.
108+
109+
#### Throws
110+
111+
Error - If messages or callback are invalid, or streaming fails.

sdk_v2/js/docs/classes/ChatClientSettings.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
# Class: ChatClientSettings
88

9-
Defined in: [openai/chatClient.ts:3](https://github.com/microsoft/Foundry-Local/blob/03d8abe494b495f2cafc516bcebbbb66a9b6662f/sdk_v2/js/src/openai/chatClient.ts#L3)
9+
Defined in: [openai/chatClient.ts:3](https://github.com/microsoft/Foundry-Local/blob/a42a7bf2423d2b1da6cca82531f4977f139aef46/sdk_v2/js/src/openai/chatClient.ts#L3)
1010

1111
## Constructors
1212

@@ -24,71 +24,71 @@ Defined in: [openai/chatClient.ts:3](https://github.com/microsoft/Foundry-Local/
2424

2525
> `optional` **frequencyPenalty**: `number`
2626
27-
Defined in: [openai/chatClient.ts:4](https://github.com/microsoft/Foundry-Local/blob/03d8abe494b495f2cafc516bcebbbb66a9b6662f/sdk_v2/js/src/openai/chatClient.ts#L4)
27+
Defined in: [openai/chatClient.ts:4](https://github.com/microsoft/Foundry-Local/blob/a42a7bf2423d2b1da6cca82531f4977f139aef46/sdk_v2/js/src/openai/chatClient.ts#L4)
2828

2929
***
3030

3131
### maxTokens?
3232

3333
> `optional` **maxTokens**: `number`
3434
35-
Defined in: [openai/chatClient.ts:5](https://github.com/microsoft/Foundry-Local/blob/03d8abe494b495f2cafc516bcebbbb66a9b6662f/sdk_v2/js/src/openai/chatClient.ts#L5)
35+
Defined in: [openai/chatClient.ts:5](https://github.com/microsoft/Foundry-Local/blob/a42a7bf2423d2b1da6cca82531f4977f139aef46/sdk_v2/js/src/openai/chatClient.ts#L5)
3636

3737
***
3838

3939
### n?
4040

4141
> `optional` **n**: `number`
4242
43-
Defined in: [openai/chatClient.ts:6](https://github.com/microsoft/Foundry-Local/blob/03d8abe494b495f2cafc516bcebbbb66a9b6662f/sdk_v2/js/src/openai/chatClient.ts#L6)
43+
Defined in: [openai/chatClient.ts:6](https://github.com/microsoft/Foundry-Local/blob/a42a7bf2423d2b1da6cca82531f4977f139aef46/sdk_v2/js/src/openai/chatClient.ts#L6)
4444

4545
***
4646

4747
### presencePenalty?
4848

4949
> `optional` **presencePenalty**: `number`
5050
51-
Defined in: [openai/chatClient.ts:8](https://github.com/microsoft/Foundry-Local/blob/03d8abe494b495f2cafc516bcebbbb66a9b6662f/sdk_v2/js/src/openai/chatClient.ts#L8)
51+
Defined in: [openai/chatClient.ts:8](https://github.com/microsoft/Foundry-Local/blob/a42a7bf2423d2b1da6cca82531f4977f139aef46/sdk_v2/js/src/openai/chatClient.ts#L8)
5252

5353
***
5454

5555
### randomSeed?
5656

5757
> `optional` **randomSeed**: `number`
5858
59-
Defined in: [openai/chatClient.ts:9](https://github.com/microsoft/Foundry-Local/blob/03d8abe494b495f2cafc516bcebbbb66a9b6662f/sdk_v2/js/src/openai/chatClient.ts#L9)
59+
Defined in: [openai/chatClient.ts:9](https://github.com/microsoft/Foundry-Local/blob/a42a7bf2423d2b1da6cca82531f4977f139aef46/sdk_v2/js/src/openai/chatClient.ts#L9)
6060

6161
***
6262

6363
### temperature?
6464

6565
> `optional` **temperature**: `number`
6666
67-
Defined in: [openai/chatClient.ts:7](https://github.com/microsoft/Foundry-Local/blob/03d8abe494b495f2cafc516bcebbbb66a9b6662f/sdk_v2/js/src/openai/chatClient.ts#L7)
67+
Defined in: [openai/chatClient.ts:7](https://github.com/microsoft/Foundry-Local/blob/a42a7bf2423d2b1da6cca82531f4977f139aef46/sdk_v2/js/src/openai/chatClient.ts#L7)
6868

6969
***
7070

7171
### topK?
7272

7373
> `optional` **topK**: `number`
7474
75-
Defined in: [openai/chatClient.ts:10](https://github.com/microsoft/Foundry-Local/blob/03d8abe494b495f2cafc516bcebbbb66a9b6662f/sdk_v2/js/src/openai/chatClient.ts#L10)
75+
Defined in: [openai/chatClient.ts:10](https://github.com/microsoft/Foundry-Local/blob/a42a7bf2423d2b1da6cca82531f4977f139aef46/sdk_v2/js/src/openai/chatClient.ts#L10)
7676

7777
***
7878

7979
### topP?
8080

8181
> `optional` **topP**: `number`
8282
83-
Defined in: [openai/chatClient.ts:11](https://github.com/microsoft/Foundry-Local/blob/03d8abe494b495f2cafc516bcebbbb66a9b6662f/sdk_v2/js/src/openai/chatClient.ts#L11)
83+
Defined in: [openai/chatClient.ts:11](https://github.com/microsoft/Foundry-Local/blob/a42a7bf2423d2b1da6cca82531f4977f139aef46/sdk_v2/js/src/openai/chatClient.ts#L11)
8484

8585
## Methods
8686

8787
### \_serialize()
8888

8989
> **\_serialize**(): `object`
9090
91-
Defined in: [openai/chatClient.ts:17](https://github.com/microsoft/Foundry-Local/blob/03d8abe494b495f2cafc516bcebbbb66a9b6662f/sdk_v2/js/src/openai/chatClient.ts#L17)
91+
Defined in: [openai/chatClient.ts:17](https://github.com/microsoft/Foundry-Local/blob/a42a7bf2423d2b1da6cca82531f4977f139aef46/sdk_v2/js/src/openai/chatClient.ts#L17)
9292

9393
**`Internal`**
9494

sdk_v2/js/docs/classes/Configuration.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
# Class: Configuration
88

9-
Defined in: [configuration.ts:75](https://github.com/microsoft/Foundry-Local/blob/03d8abe494b495f2cafc516bcebbbb66a9b6662f/sdk_v2/js/src/configuration.ts#L75)
9+
Defined in: [configuration.ts:75](https://github.com/microsoft/Foundry-Local/blob/a42a7bf2423d2b1da6cca82531f4977f139aef46/sdk_v2/js/src/configuration.ts#L75)
1010

1111
**`Internal`**
1212

@@ -16,7 +16,7 @@ Defined in: [configuration.ts:75](https://github.com/microsoft/Foundry-Local/blo
1616

1717
> **new Configuration**(`config`): `Configuration`
1818
19-
Defined in: [configuration.ts:78](https://github.com/microsoft/Foundry-Local/blob/03d8abe494b495f2cafc516bcebbbb66a9b6662f/sdk_v2/js/src/configuration.ts#L78)
19+
Defined in: [configuration.ts:78](https://github.com/microsoft/Foundry-Local/blob/a42a7bf2423d2b1da6cca82531f4977f139aef46/sdk_v2/js/src/configuration.ts#L78)
2020

2121
#### Parameters
2222

@@ -34,7 +34,7 @@ Defined in: [configuration.ts:78](https://github.com/microsoft/Foundry-Local/blo
3434

3535
> **params**: `object`
3636
37-
Defined in: [configuration.ts:76](https://github.com/microsoft/Foundry-Local/blob/03d8abe494b495f2cafc516bcebbbb66a9b6662f/sdk_v2/js/src/configuration.ts#L76)
37+
Defined in: [configuration.ts:76](https://github.com/microsoft/Foundry-Local/blob/a42a7bf2423d2b1da6cca82531f4977f139aef46/sdk_v2/js/src/configuration.ts#L76)
3838

3939
#### Index Signature
4040

0 commit comments

Comments
 (0)