Skip to content

Commit

Permalink
bump chart
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeljguarino committed Dec 6, 2024
1 parent 1cbb936 commit a32ff04
Show file tree
Hide file tree
Showing 6 changed files with 2 additions and 7 deletions.
2 changes: 1 addition & 1 deletion charts/console-rapid/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
name: console-rapid
description: rapid channel chart for the plural console (used for testing)
appVersion: 0.10.42
version: 0.3.74
version: 0.3.75
dependencies:
- name: kas
version: 0.1.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,6 @@ spec:
- VERTEX
type: string
toolProvider:
default: OPENAI
description: Provider to use for tool calling, in case you want
to use a different LLM more optimized to those tasks
enum:
Expand Down
1 change: 0 additions & 1 deletion go/controller/api/v1alpha1/deploymentsettings_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,6 @@ type AISettings struct {
// Provider to use for tool calling, in case you want to use a different LLM more optimized to those tasks
//
// +kubebuilder:validation:Enum=OPENAI;ANTHROPIC;OLLAMA;AZURE;BEDROCK;VERTEX
// +kubebuilder:default=OPENAI
// +kubebuilder:validation:Optional
ToolProvider *console.AiProvider `json:"toolProvider,omitempty"`

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,6 @@ spec:
- VERTEX
type: string
toolProvider:
default: OPENAI
description: Provider to use for tool calling, in case you want
to use a different LLM more optimized to those tasks
enum:
Expand Down
3 changes: 1 addition & 2 deletions lib/console/ai/provider.ex
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,7 @@ defmodule Console.AI.Provider do
do: handle_tool_calls(result, tools)
end

def summary(text),
do: completion([{:user, text}], preface: @summary)
def summary(text), do: completion([{:user, text}], preface: @summary)

defp tool_client(%DeploymentSettings{ai: %AI{tool_provider: p}} = settings) when not is_nil(p),
do: client(put_in(settings.ai.provider, p))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,6 @@ spec:
- VERTEX
type: string
toolProvider:
default: OPENAI
description: Provider to use for tool calling, in case you want
to use a different LLM more optimized to those tasks
enum:
Expand Down

0 comments on commit a32ff04

Please sign in to comment.