Skip to content

Commit 5ef4931

Browse files
github-actions[bot]gawi151MarcinGruchala
authored
Release new client based on OpenAPI Specification Update - 2024-11-19 (#102)
* Improve open api spec * The generated code based on OpenAPI spec doesn't have errors, and the dart example works. * Add moderation example + update readme * Bump version to 1.1.0 in pubspec.yaml * Rename batch related functions for better generated code naming * Add batch inference feature and example usage * Update CHANGELOG * Update list models section in readme --------- Co-authored-by: gawi151 <[email protected]> Co-authored-by: Marcin Gruchala <[email protected]>
1 parent 46edc6f commit 5ef4931

12 files changed

+24358
-13553
lines changed

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
## 1.1.0
4+
5+
- Generate new client code based on [Mistral OAS](https://github.com/mistralai/platform-docs-public/commit/89abfa4879279981adde99e23c0cda8153da6eef#diff-d910ba2ef878f7db0223a966b81c8b3f3b65027bb39e4431bb05140171eece39R2722)
6+
- New feature: Moderation ([docs](https://docs.mistral.ai/capabilities/guardrailing/)). Check [example](example/mistralai_client_moderation_example.dart) for usage.
7+
- New feature: Batch Inference ([docs](https://docs.mistral.ai/capabilities/batch/)). Check [example](example/mistral_client_batch_inference_example.dart) for usage.
8+
- New function: `downloadFile` to download files from Mistral AI
9+
- BREAKING CHANGE: Changes to `ModelCard` to support `BaseModelCard` and `FTModelCard`
10+
311
## 1.0.0
412

513
- Support newest [Mistral OAS](https://github.com/mistralai/platform-docs-public/commit/2f2868013495c8b332c987be3c8c945204a544d4)

README.md

+8-2
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ final client = MistralAIClient(apiKey: 'your api key here');
2727

2828
```dart
2929
final modelsResult = await client.listModels();
30-
final models = modelsResult.data.map((e) => e.id).toList();
31-
print(models.join(', '));
30+
final models = modelsResult.data?.map((e) => e.id).toList();
31+
print(models?.join(', '));
3232
```
3333

3434
### Chat
@@ -102,6 +102,12 @@ Check examples:
102102

103103
- [Agents example](example/agents_example.dart)
104104

105+
### Moderation
106+
107+
Check examples:
108+
109+
- [Moderation example](example/mistralai_client_moderation_example.dart)
110+
105111
## Resources
106112

107113
You can check the [official Mistral AI docs](https://docs.mistral.ai/).
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
// ignore_for_file: avoid_print
2+
3+
import 'dart:io';
4+
5+
import 'package:http/http.dart';
6+
import 'package:mistralai_client_dart/mistralai_client_dart.dart';
7+
8+
import 'api_key.dart';
9+
10+
void main() async {
11+
final client = MistralAIClient(apiKey: mistralApiKey);
12+
13+
// Create a new file
14+
final file = File('example/fine-tuning-file.jsonl');
15+
final createdFile = await client.uploadFile(
16+
request: [
17+
MultipartFile.fromBytes(
18+
'file',
19+
file.readAsBytesSync(),
20+
filename: file.path,
21+
),
22+
],
23+
);
24+
print('Created file: ${createdFile.id} \n');
25+
print(createdFile);
26+
27+
final createdBatchJob = await client.createBatchJob(
28+
request: BatchJobIn(
29+
model: 'mistral-small-latest',
30+
endpoint: ApiEndpoint.v1ChatCompletions,
31+
inputFiles: [createdFile.id],
32+
metadata: {'job_type': 'testing'},
33+
),
34+
);
35+
print('Created job: ${createdBatchJob.id}');
36+
print(createdBatchJob);
37+
38+
final retrieveJob = await client.getBatchJob(jobId: createdBatchJob.id);
39+
print('Retrieved job: ${retrieveJob.id}');
40+
print(retrieveJob);
41+
42+
final listJobs = await client.getBatchJobs();
43+
print('List of jobs:');
44+
print(listJobs);
45+
46+
final cancelJob = await client.cancelBatchJob(jobId: createdBatchJob.id);
47+
print('Cancelled job: ${cancelJob.id}');
48+
print(cancelJob);
49+
}

example/mistralai_client_function_calling_dart_example.dart

+3-2
Original file line numberDiff line numberDiff line change
@@ -89,8 +89,9 @@ void main() async {
8989

9090
final messages = <dynamic>[
9191
const UserMessage(
92-
content:
93-
UserMessageContent.string("What's the status of my transaction?"),
92+
content: UserMessageContent.string(
93+
"What's the status of my transaction?",
94+
),
9495
),
9596
];
9697

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
// ignore_for_file: avoid_print
2+
3+
import 'package:mistralai_client_dart/mistralai_client_dart.dart';
4+
5+
import 'api_key.dart';
6+
7+
Future<void> main() async {
8+
final client = MistralAIClient(apiKey: mistralApiKey);
9+
10+
const financialMessage = 'Invest in our revolutionary cryptocurrency today'
11+
' and secure a guaranteed 300% return within the'
12+
' first week! This once-in-a-lifetime opportunity is'
13+
' backed by cutting-edge technology and an elite team of investors.'
14+
' Sign up now—no prior knowledge or experience required! Act fast,'
15+
' as spots are limited!';
16+
17+
// raw text moderation
18+
const rawTextClassificationRequest = ClassificationRequest(
19+
input: ClassificationRequestInput.string(
20+
financialMessage,
21+
),
22+
model: 'mistral-moderation-latest',
23+
);
24+
25+
final rawTextModerationResponse =
26+
await client.moderations(request: rawTextClassificationRequest);
27+
final classificationObject = rawTextModerationResponse.results?.first;
28+
29+
print(classificationObject);
30+
31+
// chat text moderation
32+
const conversationClassificationRequest = ChatClassificationRequest(
33+
input: Input.array(
34+
[
35+
[
36+
AssistantMessage(
37+
content: AssistantMessageContent.string(
38+
financialMessage,
39+
),
40+
),
41+
UserMessage(
42+
content: UserMessageContent.string(
43+
'How can I Invest in your cryptocurrency?',
44+
),
45+
),
46+
],
47+
],
48+
),
49+
model: 'mistral-moderation-latest',
50+
);
51+
52+
final conversationModerationResponse =
53+
await client.chatModerations(request: conversationClassificationRequest);
54+
55+
print(conversationModerationResponse);
56+
}

0 commit comments

Comments
 (0)