-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.434.7 (#44)
Co-authored-by: speakeasybot <[email protected]>
- Loading branch information
1 parent
e023488
commit 5b905fb
Showing
54 changed files
with
645 additions
and
440 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 4 additions & 9 deletions
13
packages/mistralai-azure/docs/models/components/arguments.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,19 @@ | ||
# Arguments | ||
|
||
## Example Usage | ||
|
||
```typescript | ||
import { Arguments } from "@mistralai/mistralai-azure/models/components"; | ||
|
||
let value: Arguments = "<value>"; | ||
``` | ||
|
||
## Supported Types | ||
|
||
### `{ [k: string]: any }` | ||
|
||
```typescript | ||
const value: { [k: string]: any } = /* values here */ | ||
const value: { [k: string]: any } = { | ||
"key": "<value>", | ||
}; | ||
``` | ||
|
||
### `string` | ||
|
||
```typescript | ||
const value: string = /* values here */ | ||
const value: string = "<value>"; | ||
``` | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
21 changes: 21 additions & 0 deletions
21
packages/mistralai-azure/docs/models/components/assistantmessagecontent.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# AssistantMessageContent | ||
|
||
|
||
## Supported Types | ||
|
||
### `string` | ||
|
||
```typescript | ||
const value: string = "<value>"; | ||
``` | ||
|
||
### `components.ContentChunk[]` | ||
|
||
```typescript | ||
const value: components.ContentChunk[] = [ | ||
{ | ||
text: "<value>", | ||
}, | ||
]; | ||
``` | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.