mirror of
https://github.com/googleapis/genai-toolbox.git
synced 2026-02-18 02:51:58 -05:00
Refactors parameter logic to allow for more complex functionality (e.g. arrays) in the future. --------- Co-authored-by: Wenxin Du <117315983+duwenxin99@users.noreply.github.com>
106 lines
3.0 KiB
Go
106 lines
3.0 KiB
Go
// Copyright 2024 Google LLC
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
package tools
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"strings"
|
|
|
|
"github.com/googleapis/genai-toolbox/internal/sources"
|
|
)
|
|
|
|
const CloudSQLPgSQLGenericKind string = "cloud-sql-postgres-generic"
|
|
|
|
// validate interface
|
|
var _ Config = CloudSQLPgGenericConfig{}
|
|
|
|
type CloudSQLPgGenericConfig struct {
|
|
Name string `yaml:"name"`
|
|
Kind string `yaml:"kind"`
|
|
Source string `yaml:"source"`
|
|
Description string `yaml:"description"`
|
|
Statement string `yaml:"statement"`
|
|
Parameters Parameters `yaml:"parameters"`
|
|
}
|
|
|
|
func (cfg CloudSQLPgGenericConfig) toolKind() string {
|
|
return CloudSQLPgSQLGenericKind
|
|
}
|
|
|
|
func (cfg CloudSQLPgGenericConfig) Initialize(srcs map[string]sources.Source) (Tool, error) {
|
|
// verify source exists
|
|
rawS, ok := srcs[cfg.Source]
|
|
if !ok {
|
|
return nil, fmt.Errorf("no source named %q configured", cfg.Source)
|
|
}
|
|
|
|
// verify the source is the right kind
|
|
s, ok := rawS.(sources.CloudSQLPgSource)
|
|
if !ok {
|
|
return nil, fmt.Errorf("sources for %q tools must be of kind %q", CloudSQLPgSQLGenericKind, sources.CloudSQLPgKind)
|
|
}
|
|
|
|
// finish tool setup
|
|
t := CloudSQLPgGenericTool{
|
|
Name: cfg.Name,
|
|
Kind: CloudSQLPgSQLGenericKind,
|
|
Source: s,
|
|
Statement: cfg.Statement,
|
|
Parameters: cfg.Parameters,
|
|
manifest: ToolManifest{cfg.Description, generateManifests(cfg.Parameters)},
|
|
}
|
|
return t, nil
|
|
}
|
|
|
|
// validate interface
|
|
var _ Tool = CloudSQLPgGenericTool{}
|
|
|
|
type CloudSQLPgGenericTool struct {
|
|
Name string `yaml:"name"`
|
|
Kind string `yaml:"kind"`
|
|
Source sources.CloudSQLPgSource
|
|
Statement string
|
|
Parameters Parameters `yaml:"parameters"`
|
|
manifest ToolManifest
|
|
}
|
|
|
|
func (t CloudSQLPgGenericTool) Invoke(params []any) (string, error) {
|
|
fmt.Printf("Invoked tool %s\n", t.Name)
|
|
results, err := t.Source.Pool.Query(context.Background(), t.Statement, params...)
|
|
if err != nil {
|
|
return "", fmt.Errorf("unable to execute query: %w", err)
|
|
}
|
|
|
|
var out strings.Builder
|
|
for results.Next() {
|
|
v, err := results.Values()
|
|
if err != nil {
|
|
return "", fmt.Errorf("unable to parse row: %w", err)
|
|
}
|
|
out.WriteString(fmt.Sprintf("%s", v))
|
|
}
|
|
|
|
return fmt.Sprintf("Stub tool call for %q! Parameters parsed: %q \n Output: %s", t.Name, params, out.String()), nil
|
|
}
|
|
|
|
func (t CloudSQLPgGenericTool) ParseParams(data map[string]any) ([]any, error) {
|
|
return ParseParams(t.Parameters, data)
|
|
}
|
|
|
|
func (t CloudSQLPgGenericTool) Manifest() ToolManifest {
|
|
return t.manifest
|
|
}
|