Skip to content

Commit ce2bfb5

Browse files
committed
Fix lint.
Signed-off-by: Jeremy lewi <jeremy@lewi.us>
1 parent 9c18112 commit ce2bfb5

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pkg/agent/ai/agent.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@ type Agent struct {
6666
type AgentOptions struct {
6767
VectorStores []string
6868
Client *openai.Client
69+
6970
// Instructions are the prompt to use when generating responses
7071
Instructions string
7172

@@ -105,7 +106,7 @@ func NewAgent(opts AgentOptions) (*Agent, error) {
105106
}
106107
toolsForContext[agentv1.GenerateRequest_CONTEXT_SLACK] = runTools
107108

108-
log.Info("Creating Agent", "options", opts)
109+
log.Info("Creating Agent", "vectorStores", opts.VectorStores, "instructions", opts.Instructions, "oauthOpenAIOrganization", opts.OAuthOpenAIOrganization, "oauthOpenAIProject", opts.OAuthOpenAIProject)
109110

110111
return &Agent{
111112
Client: opts.Client,

0 commit comments

Comments
 (0)