2025-02-22 09:42:15 +01:00
|
|
|
package setup
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
|
|
|
|
"forge.cadoles.com/wpetit/clearcase/internal/config"
|
|
|
|
"forge.cadoles.com/wpetit/clearcase/internal/core/service"
|
2025-03-06 22:47:02 +01:00
|
|
|
"github.com/bornholm/genai/llm"
|
2025-02-22 09:42:15 +01:00
|
|
|
"github.com/bornholm/genai/llm/provider"
|
|
|
|
"github.com/pkg/errors"
|
|
|
|
|
|
|
|
_ "github.com/bornholm/genai/llm/provider/openai"
|
2025-03-06 22:47:02 +01:00
|
|
|
"github.com/bornholm/genai/llm/provider/openrouter"
|
2025-02-22 09:42:15 +01:00
|
|
|
_ "github.com/bornholm/genai/llm/provider/openrouter"
|
|
|
|
)
|
|
|
|
|
2025-03-06 22:47:02 +01:00
|
|
|
func NewForgeManagerFromConfig(ctx context.Context, conf *config.Config) (*service.ForgeManager, error) {
|
2025-02-27 22:20:40 +01:00
|
|
|
client, err := provider.Create(ctx,
|
|
|
|
provider.WithConfig(&provider.Config{
|
|
|
|
Provider: provider.Name(conf.LLM.Provider.Name),
|
|
|
|
BaseURL: conf.LLM.Provider.BaseURL,
|
|
|
|
Key: conf.LLM.Provider.Key,
|
|
|
|
Model: conf.LLM.Provider.Model,
|
|
|
|
}))
|
2025-02-22 09:42:15 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, errors.Wrapf(err, "could not create llm client '%s'", conf.LLM.Provider.Name)
|
|
|
|
}
|
|
|
|
|
2025-03-06 22:47:02 +01:00
|
|
|
if conf.LLM.Provider.Name == string(openrouter.Name) {
|
|
|
|
client = &extendedContextClient{
|
|
|
|
client: client,
|
|
|
|
extend: func(ctx context.Context) context.Context {
|
|
|
|
// Automatically "compress" prompts when using openrouter
|
|
|
|
// See https://openrouter.ai/docs/features/message-transforms
|
|
|
|
ctx = openrouter.WithTransforms(ctx, []string{"middle-out"})
|
|
|
|
return ctx
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2025-02-24 21:48:16 +01:00
|
|
|
forgeFactories, err := getForgeFactories(conf)
|
|
|
|
if err != nil {
|
|
|
|
return nil, errors.Wrap(err, "could not get forge factories")
|
2025-02-22 09:42:15 +01:00
|
|
|
}
|
|
|
|
|
2025-03-06 22:47:02 +01:00
|
|
|
forgeManager := service.NewForgeManager(client, forgeFactories...)
|
2025-02-22 09:42:15 +01:00
|
|
|
|
2025-03-06 22:47:02 +01:00
|
|
|
return forgeManager, nil
|
2025-02-22 09:42:15 +01:00
|
|
|
}
|
2025-03-06 22:47:02 +01:00
|
|
|
|
|
|
|
type extendedContextClient struct {
|
|
|
|
client llm.Client
|
|
|
|
extend func(ctx context.Context) context.Context
|
|
|
|
}
|
|
|
|
|
|
|
|
// ChatCompletion implements llm.Client.
|
|
|
|
func (c *extendedContextClient) ChatCompletion(ctx context.Context, funcs ...llm.ChatCompletionOptionFunc) (llm.CompletionResponse, error) {
|
|
|
|
ctx = c.extend(ctx)
|
|
|
|
return c.client.ChatCompletion(ctx, funcs...)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Model implements llm.Client.
|
|
|
|
func (c *extendedContextClient) Model() string {
|
|
|
|
return c.Model()
|
|
|
|
}
|
|
|
|
|
|
|
|
var _ llm.Client = &extendedContextClient{}
|