You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Docs/Request-Response.md
+36-6Lines changed: 36 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -37,7 +37,9 @@ Request-Response
37
37
[-FileSearchVectorStoreIds <String[]>]
38
38
[-FileSearchMaxNumberOfResults <Int32>]
39
39
[-FileSearchRanker <String>]
40
-
[-FileSearchScoreThreshold <Double>]
40
+
[-FileSearchScoreThreshold <Float>]
41
+
[-FileSearchHybridSearchEmbeddingWeight <Float>]
42
+
[-FileSearchHybridSearchTextWeight <Float>]
41
43
[-UseWebSearch]
42
44
[-WebSearchType <String>]
43
45
[-WebSearchContextSize <String>]
@@ -64,6 +66,7 @@ Request-Response
64
66
[-ConnectorRequireApproval <String>]
65
67
[-ConnectorAuthorization <String>]
66
68
[-UseCodeInterpreter]
69
+
[-CodeInterpreterMemoryLimit <String>]
67
70
[-ContainerId <String>]
68
71
[-ContainerFileIds <String[]>]
69
72
[-UseImageGeneration]
@@ -79,9 +82,9 @@ Request-Response
79
82
[-UseLocalShell]
80
83
[-Include <String[]>]
81
84
[-Truncation <String>]
82
-
[-Temperature <Double>]
85
+
[-Temperature <Float>]
83
86
[-TopLogprobs <Int32>]
84
-
[-TopP <Double>]
87
+
[-TopP <Float>]
85
88
[-Store <Boolean>]
86
89
[-Background]
87
90
[-Stream]
@@ -373,7 +376,25 @@ Position: Named
373
376
The score threshold for the file search, a number between 0 and 1. Numbers closer to 1 will attempt to return only the most relevant results, but may return fewer results.
374
377
375
378
```yaml
376
-
Type: Double
379
+
Type: Float
380
+
Required: False
381
+
Position: Named
382
+
```
383
+
384
+
### -FileSearchHybridSearchEmbeddingWeight
385
+
The weight of the embedding in the reciprocal ranking fusion.
386
+
387
+
```yaml
388
+
Type: Float
389
+
Required: False
390
+
Position: Named
391
+
```
392
+
393
+
### -FileSearchHybridSearchTextWeight
394
+
The weight of the text in the reciprocal ranking fusion.
395
+
396
+
```yaml
397
+
Type: Float
377
398
Required: False
378
399
Position: Named
379
400
```
@@ -623,6 +644,15 @@ Required: False
623
644
Position: Named
624
645
```
625
646
647
+
### -CodeInterpreterMemoryLimit
648
+
{{No description provided}}
649
+
650
+
```yaml
651
+
Type: String
652
+
Required: False
653
+
Position: Named
654
+
```
655
+
626
656
### -ContainerId
627
657
The code interpreter container. Can be a container ID or `auto` to use the default container.
628
658
@@ -769,7 +799,7 @@ Default value: disabled
769
799
What sampling temperature to use, between 0 and 2. Higher values like 0.8 will make the output more random.
770
800
771
801
```yaml
772
-
Type: Double
802
+
Type: Float
773
803
Required: False
774
804
Position: Named
775
805
```
@@ -788,7 +818,7 @@ Position: Named
788
818
An alternative to sampling with temperature, called nucleus sampling, where the model considers the results of the tokens with top_p probability mass. So 0.1 means only the tokens comprising the top 10% probability mass are considered.
@@ -56,7 +59,7 @@ Set the realtime session's configuration.
56
59
### Example 1
57
60
```powershell
58
61
PS C:\> Set-RealtimeSessionConfiguration `
59
-
-Modalities 'audio' `
62
+
-OutputModalities 'audio' `
60
63
-Voice 'marin' `
61
64
-EnableInputAudioTranscription $true `
62
65
-EnableTurnDetection $true
@@ -183,7 +186,7 @@ Position: Named
183
186
Default value: -1
184
187
```
185
188
186
-
### -Modalities
189
+
### -OutputModalities
187
190
The set of modalities the model can respond with.
188
191
189
192
```yaml
@@ -350,6 +353,33 @@ Required: False
350
353
Position: Named
351
354
```
352
355
356
+
### -Truncation
357
+
The truncation strategy to use for the session. `auto` is the default truncation strategy. `disabled` will disable truncation and emit errors when the conversation exceeds the input token limit.
358
+
359
+
```yaml
360
+
Type: String
361
+
Required: False
362
+
Position: Named
363
+
```
364
+
365
+
### -TruncationRetentionRatio
366
+
Fraction of post-instruction conversation tokens to retain (`0.0` - `1.0`) when the conversation exceeds the input token limit.
367
+
368
+
```yaml
369
+
Type: Float
370
+
Required: False
371
+
Position: Named
372
+
```
373
+
374
+
### -TruncationTokenLimitsPostInstructions
375
+
Maximum tokens allowed in the conversation after instructions (which including tool definitions).
0 commit comments