* 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>
137 lines
3.8 KiB
Go
137 lines
3.8 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 GithubIssuesReader struct {
|
|
token, repository, owner, customActionName string
|
|
client *github.Client
|
|
}
|
|
|
|
func NewGithubIssueReader(config map[string]string) *GithubIssuesReader {
|
|
client := github.NewClient(nil).WithAuthToken(config["token"])
|
|
|
|
return &GithubIssuesReader{
|
|
client: client,
|
|
token: config["token"],
|
|
customActionName: config["customActionName"],
|
|
repository: config["repository"],
|
|
owner: config["owner"],
|
|
}
|
|
}
|
|
|
|
func (g *GithubIssuesReader) Run(ctx context.Context, sharedState *types.AgentSharedState, params types.ActionParams) (types.ActionResult, error) {
|
|
result := struct {
|
|
Repository string `json:"repository"`
|
|
Owner string `json:"owner"`
|
|
Label string `json:"label"`
|
|
IssueNumber int `json:"issue_number"`
|
|
}{}
|
|
err := params.Unmarshal(&result)
|
|
if err != nil {
|
|
return types.ActionResult{}, err
|
|
}
|
|
|
|
if g.repository != "" && g.owner != "" {
|
|
result.Repository = g.repository
|
|
result.Owner = g.owner
|
|
}
|
|
|
|
issue, _, err := g.client.Issues.Get(ctx, result.Owner, result.Repository, result.IssueNumber)
|
|
if err == nil && issue != nil {
|
|
return types.ActionResult{
|
|
Result: fmt.Sprintf(
|
|
"Issue %d Repository: %s\nTitle: %s\nBody: %s",
|
|
issue.GetNumber(), issue.GetRepository().GetFullName(), issue.GetTitle(), issue.GetBody()),
|
|
}, nil
|
|
}
|
|
if err != nil {
|
|
return types.ActionResult{Result: fmt.Sprintf("Error fetching issue: %s", err.Error())}, err
|
|
}
|
|
return types.ActionResult{Result: fmt.Sprintf("No issue found")}, err
|
|
}
|
|
|
|
func (g *GithubIssuesReader) Definition() types.ActionDefinition {
|
|
actionName := "read_github_issue"
|
|
if g.customActionName != "" {
|
|
actionName = g.customActionName
|
|
}
|
|
description := "Read a Github issue."
|
|
if g.repository != "" && g.owner != "" {
|
|
return types.ActionDefinition{
|
|
Name: types.ActionDefinitionName(actionName),
|
|
Description: description,
|
|
Properties: map[string]jsonschema.Definition{
|
|
"issue_number": {
|
|
Type: jsonschema.Number,
|
|
Description: "The number of the issue to read.",
|
|
},
|
|
},
|
|
Required: []string{"issue_number"},
|
|
}
|
|
}
|
|
return types.ActionDefinition{
|
|
Name: types.ActionDefinitionName(actionName),
|
|
Description: description,
|
|
Properties: map[string]jsonschema.Definition{
|
|
"issue_number": {
|
|
Type: jsonschema.Number,
|
|
Description: "The number of the issue to add the label to.",
|
|
},
|
|
"repository": {
|
|
Type: jsonschema.String,
|
|
Description: "The repository to add the label to.",
|
|
},
|
|
"owner": {
|
|
Type: jsonschema.String,
|
|
Description: "The owner of the repository.",
|
|
},
|
|
},
|
|
Required: []string{"issue_number", "repository", "owner"},
|
|
}
|
|
}
|
|
|
|
func (a *GithubIssuesReader) Plannable() bool {
|
|
return true
|
|
}
|
|
|
|
// GithubIssueReaderConfigMeta returns the metadata for GitHub Issue Reader action configuration fields
|
|
func GithubIssueReaderConfigMeta() []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",
|
|
},
|
|
}
|
|
}
|