Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ pwshBedrock is designed to streamline the process of building generative AI appl
- **Custom Conversations:** Supports custom formats for conversations, allowing for tailored interactions.
- **Context Control:** Maintain continuous and coherent interactions with models through effective context management.
- **Image Generation:** Leverage powerful image generative capabilities to both create and transform images.
- **Video Generation:** Leverage powerful video generative capabilities to create videos.
- **Document Support:** Upload common document types directly to the model to provide context or generate summaries.
- **Vision:**: Provide medial files directly to the model for context and evaluation.
- **Cost Estimation:** Estimates the cost of your AI engagements, helping you keep a tab on model engagement.
Expand Down Expand Up @@ -142,6 +143,15 @@ Invoke-CohereCommandRModel -Message 'Explain zero-point energy.' -ModelID 'coher
#------------------------------------------------------------------------------------------------
```

##### DeepSeek Models

```powershell
#------------------------------------------------------------------------------------------------
# Sends a text message to the on-demand Cohere Command R model in the specified AWS region and returns the response.
Invoke-DeepSeekModel -Message 'Explain zero-point energy.' -ModelID 'deepseek.r1-v1:0' -Credential $awsCredential -Region 'us-west-2'
#------------------------------------------------------------------------------------------------
```

##### Luma AI Models

```powershell
Expand Down
6 changes: 6 additions & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.2.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.65.0]

- Module changes:
- DeepSeek
- Added new function `Invoke-DeepSeekModel` to support text model: `deepseek.r1-v1:0`

## [0.60.0]

- Module changes:
Expand Down
Loading