* feat(agent): shared state, allow to track conversations globally Signed-off-by: Ettore Di Giacinto <mudler@localai.io> * Cleanup Signed-off-by: Ettore Di Giacinto <mudler@localai.io> * track conversations initiated by the bot Signed-off-by: Ettore Di Giacinto <mudler@localai.io> --------- Signed-off-by: Ettore Di Giacinto <mudler@localai.io>
155 lines
4.0 KiB
Go
155 lines
4.0 KiB
Go
package actions
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
|
|
"github.com/google/go-github/v69/github"
|
|
"github.com/mudler/LocalAGI/core/types"
|
|
"github.com/mudler/LocalAGI/pkg/config"
|
|
"github.com/sashabaranov/go-openai/jsonschema"
|
|
)
|
|
|
|
type GithubIssuesCloser struct {
|
|
token, repository, owner, customActionName string
|
|
client *github.Client
|
|
}
|
|
|
|
func NewGithubIssueCloser(config map[string]string) *GithubIssuesCloser {
|
|
client := github.NewClient(nil).WithAuthToken(config["token"])
|
|
return &GithubIssuesCloser{
|
|
client: client,
|
|
token: config["token"],
|
|
repository: config["repository"],
|
|
owner: config["owner"],
|
|
customActionName: config["customActionName"],
|
|
}
|
|
}
|
|
|
|
func (g *GithubIssuesCloser) Run(ctx context.Context, sharedState *types.AgentSharedState, params types.ActionParams) (types.ActionResult, error) {
|
|
result := struct {
|
|
Repository string `json:"repository"`
|
|
Owner string `json:"owner"`
|
|
IssueNumber int `json:"issue_number"`
|
|
}{}
|
|
err := params.Unmarshal(&result)
|
|
if err != nil {
|
|
fmt.Printf("error: %v", err)
|
|
|
|
return types.ActionResult{}, err
|
|
}
|
|
|
|
if g.repository != "" {
|
|
result.Repository = g.repository
|
|
}
|
|
|
|
if g.owner != "" {
|
|
result.Owner = g.owner
|
|
}
|
|
// _, _, err = g.client.Issues.CreateComment(
|
|
// g.context,
|
|
// result.Owner, result.Repository,
|
|
// result.IssueNumber, &github.IssueComment{
|
|
// //Body: &result.Text,
|
|
// },
|
|
// )
|
|
// if err != nil {
|
|
// fmt.Printf("error: %v", err)
|
|
|
|
// return "", err
|
|
// }
|
|
|
|
_, _, err = g.client.Issues.Edit(ctx, result.Owner, result.Repository, result.IssueNumber, &github.IssueRequest{
|
|
State: github.String("closed"),
|
|
})
|
|
|
|
if err != nil {
|
|
fmt.Printf("error: %v", err)
|
|
|
|
return types.ActionResult{}, err
|
|
}
|
|
|
|
resultString := fmt.Sprintf("Closed issue %d in repository %s/%s", result.IssueNumber, result.Owner, result.Repository)
|
|
if err != nil {
|
|
resultString = fmt.Sprintf("Error closing issue %d in repository %s/%s: %v", result.IssueNumber, result.Owner, result.Repository, err)
|
|
}
|
|
return types.ActionResult{Result: resultString}, err
|
|
}
|
|
|
|
func (g *GithubIssuesCloser) Definition() types.ActionDefinition {
|
|
actionName := "close_github_issue"
|
|
if g.customActionName != "" {
|
|
actionName = g.customActionName
|
|
}
|
|
if g.repository != "" && g.owner != "" {
|
|
return types.ActionDefinition{
|
|
Name: types.ActionDefinitionName(actionName),
|
|
Description: "Closes a Github issue.",
|
|
Properties: map[string]jsonschema.Definition{
|
|
"issue_number": {
|
|
Type: jsonschema.Number,
|
|
Description: "The issue number to close",
|
|
},
|
|
},
|
|
Required: []string{"issue_number"},
|
|
}
|
|
}
|
|
|
|
return types.ActionDefinition{
|
|
Name: types.ActionDefinitionName(actionName),
|
|
Description: "Closes a Github issue.",
|
|
Properties: map[string]jsonschema.Definition{
|
|
"repository": {
|
|
Type: jsonschema.String,
|
|
Description: "The repository to close the issue in.",
|
|
},
|
|
"owner": {
|
|
Type: jsonschema.String,
|
|
Description: "The owner of the repository.",
|
|
},
|
|
"issue_number": {
|
|
Type: jsonschema.Number,
|
|
Description: "The issue number to close",
|
|
},
|
|
},
|
|
Required: []string{"issue_number", "repository", "owner"},
|
|
}
|
|
}
|
|
|
|
func (a *GithubIssuesCloser) Plannable() bool {
|
|
return true
|
|
}
|
|
|
|
// GithubIssueCloserConfigMeta returns the metadata for GitHub Issue Closer action configuration fields
|
|
func GithubIssueCloserConfigMeta() []config.Field {
|
|
return []config.Field{
|
|
{
|
|
Name: "token",
|
|
Label: "GitHub Token",
|
|
Type: config.FieldTypeText,
|
|
Required: true,
|
|
HelpText: "GitHub API token with repository access",
|
|
},
|
|
{
|
|
Name: "repository",
|
|
Label: "Repository",
|
|
Type: config.FieldTypeText,
|
|
Required: true,
|
|
HelpText: "GitHub repository name",
|
|
},
|
|
{
|
|
Name: "owner",
|
|
Label: "Owner",
|
|
Type: config.FieldTypeText,
|
|
Required: true,
|
|
HelpText: "GitHub repository owner",
|
|
},
|
|
{
|
|
Name: "customActionName",
|
|
Label: "Custom Action Name",
|
|
Type: config.FieldTypeText,
|
|
HelpText: "Custom name for this action",
|
|
},
|
|
}
|
|
}
|