Skip to content

Commit

Permalink
Update version to v0.0.74
Browse files Browse the repository at this point in the history
  • Loading branch information
GitHub Actions committed Aug 12, 2024
1 parent af6ff02 commit 78bd648
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 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
2 changes: 1 addition & 1 deletion openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2299,7 +2299,7 @@ components:
type: object
required:
- index
- text
- message
- finish_reason
properties:
index:
Expand Down
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v0.0.74
v0.0.15

0 comments on commit 78bd648

Please sign in to comment.