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
Specify additional output data to include in the model response.
59
+
60
+
```yaml
61
+
Type: String[]
62
+
Required: False
63
+
Position: Named
64
+
```
65
+
66
+
### -Stream
67
+
If set, the model response data will be streamed to the client.
68
+
69
+
```yaml
70
+
Type: SwitchParameter
71
+
Required: False
72
+
Position: Named
73
+
```
74
+
75
+
### -StreamOutputType
76
+
Specifying the format that the function output. This parameter is only valid for the stream output. This parameter is only valid for the stream output.
77
+
- `text` : Output only text deltas that the model generated. (Default)
78
+
- `object` : Output all events that the API respond.
79
+
80
+
```yaml
81
+
Type: String
82
+
Accepted values: text, object
83
+
Required: False
84
+
Position: Named
85
+
Default value: text
86
+
```
87
+
88
+
### -StartingAfter
89
+
The sequence number of the event after which to start streaming. This parameter is only valid for the stream output.
90
+
91
+
```yaml
92
+
Type: Int32
93
+
Required: False
94
+
Position: Named
95
+
```
96
+
97
+
### -OutputRawResponse
98
+
If specifies this switch, an output of this function to be a raw response value from the API. (Normally JSON formatted string.)
99
+
100
+
```yaml
101
+
Type: SwitchParameter
102
+
Required: False
103
+
Position: Named
104
+
```
105
+
52
106
### -TimeoutSec
53
107
Specifies how long the request can be pending before it times out.
0 commit comments