Skip to content

Commit

Permalink
[Go] fix system role capability (#603)
Browse files Browse the repository at this point in the history
Fixes #541.
  • Loading branch information
jba authored Jul 12, 2024
1 parent 61a83ca commit 2e83e9b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions go/plugins/googleai/googleai.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,14 +39,14 @@ var (
basicText = ai.ModelCapabilities{
Multiturn: true,
Tools: true,
SystemRole: false,
SystemRole: true,
Media: false,
}

multimodal = ai.ModelCapabilities{
Multiturn: true,
Tools: true,
SystemRole: false,
SystemRole: true,
Media: true,
}

Expand Down
4 changes: 2 additions & 2 deletions go/plugins/vertexai/vertexai.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,14 +35,14 @@ var (
basicText = ai.ModelCapabilities{
Multiturn: true,
Tools: true,
SystemRole: false,
SystemRole: true,
Media: false,
}

multimodal = ai.ModelCapabilities{
Multiturn: true,
Tools: true,
SystemRole: false,
SystemRole: true,
Media: true,
}

Expand Down

0 comments on commit 2e83e9b

Please sign in to comment.