Finish moving types

This commit is contained in:
mudler
2025-03-23 21:17:59 +01:00
committed by Ettore Di Giacinto
parent f0b8bfb4f4
commit 75a8d63e83
50 changed files with 568 additions and 467 deletions

View File

@@ -4,7 +4,7 @@ import (
"context"
"os"
. "github.com/mudler/LocalAgent/core/action"
"github.com/mudler/LocalAgent/core/types"
. "github.com/mudler/LocalAgent/services/actions"
. "github.com/onsi/ginkgo/v2"
@@ -15,7 +15,7 @@ var _ = Describe("GenImageAction", func() {
var (
ctx context.Context
action *GenImageAction
params ActionParams
params types.ActionParams
config map[string]string
)
@@ -37,7 +37,7 @@ var _ = Describe("GenImageAction", func() {
Describe("Run", func() {
It("should generate an image with valid prompt and size", func() {
params = ActionParams{
params = types.ActionParams{
"prompt": "test prompt",
"size": "256x256",
}
@@ -48,7 +48,7 @@ var _ = Describe("GenImageAction", func() {
})
It("should return an error if the prompt is not provided", func() {
params = ActionParams{
params = types.ActionParams{
"size": "256x256",
}