-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: 🐝 Update SDK - Generate MISTRALAI-GCP-SDK 1.3.0 (#43)
* ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.434.7 * support for futur naming scheme --------- Co-authored-by: speakeasybot <[email protected]> Co-authored-by: gaspardBT <[email protected]>
- Loading branch information
1 parent
5b905fb
commit 19605ac
Showing
63 changed files
with
809 additions
and
601 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
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-gcp/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-gcp/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.