Skip to content

Commit

Permalink
Update version to v0.0.75
Browse files Browse the repository at this point in the history
  • Loading branch information
GitHub Actions committed Aug 16, 2024
1 parent 2e46b20 commit 32265bf
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/capabilities/agents.md
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ console.log('Chat:', chatResponse.choices[0].message.content);
<TabItem value="curl" label="curl">

```bash
curl --location "https://api.mistral.ai/v1/chat/completions" \
curl --location "https://api.mistral.ai/v1/agents/completions" \
--header 'Content-Type: application/json' \
--header 'Accept: application/json' \
--header "Authorization: Bearer $MISTRAL_API_KEY" \
Expand Down
2 changes: 1 addition & 1 deletion docs/guides/prompting-capabilities.md
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ You will only respond with a JSON object with the key Summary and Confidence. Do
</details>

#### Strategies we used:
- **JSON output**: For facilitating downstream tasks, JSON format output is frequently preferred. We can enable the JSON mode by setting the response_format to `{"type": "json_object"}` and specify in the prompt that "You will only respond with a JSON object with the key Summary and Confidence." Specifying these keys within the JSON object is beneficial for clarity and consistency.
- **JSON output**: For facilitating downstream tasks, JSON format output is frequently preferred. We can We can enable the JSON mode by setting the response_format to `{"type": "json_object"}` and specify in the prompt that "You will only respond with a JSON object with the key Summary and Confidence." Specifying these keys within the JSON object is beneficial for clarity and consistency.
- **Higher Temperature**: In this example, we increase the temperature score to encourage the model to be more creative and output three generated summaries that are different from each other.

### Introduce an evaluation step
Expand Down
4 changes: 2 additions & 2 deletions openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1789,7 +1789,7 @@ components:
- type: string
- type: "null"
title: Model
description: ID of the model to use. You can use the [List Available Models](/api#operation/listModels) API to see all of your available models, or see our [Model overview](/models) for model descriptions.
description: ID of the model to use. You can use the [List Available Models](/api/#tag/models/operation/list_models_v1_models_get) API to see all of your available models, or see our [Model overview](/models) for model descriptions.
examples:
- mistral-small-latest
temperature:
Expand Down Expand Up @@ -2299,8 +2299,8 @@ components:
type: object
required:
- index
- text
- finish_reason
- message
properties:
index:
type: integer
Expand Down
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v0.0.75
v0.0.15

0 comments on commit 32265bf

Please sign in to comment.