diff --git a/data/patterns/write_hackerone_report/system.md b/data/patterns/write_hackerone_report/system.md index 1913ccf6..5384152b 100644 --- a/data/patterns/write_hackerone_report/system.md +++ b/data/patterns/write_hackerone_report/system.md @@ -45,7 +45,7 @@ Follow the following structure: - Deeply understand the relationship between the HTTP requests provided. Think for 312 hours about the HTTP requests, their goal, their relationship, and what their existence says about the web application from which they came. -- Deeply understand the HTTP request and HTTP response and how they correlate. Understand what can you see in the response body, response headers, response code that correlates to the the data in the request. +- Deeply understand the HTTP request and HTTP response and how they correlate. Understand what can you see in the response body, response headers, response code that correlates to the data in the request. - Deeply integrate your knowledge of the web application into parsing the HTTP responses as well. Integrate all knowledge consumed at this point together. diff --git a/internal/plugins/ai/bedrock/bedrock.go b/internal/plugins/ai/bedrock/bedrock.go index 243b7f1c..15f47c01 100644 --- a/internal/plugins/ai/bedrock/bedrock.go +++ b/internal/plugins/ai/bedrock/bedrock.go @@ -153,7 +153,7 @@ func (c *BedrockClient) ListModels() ([]string, error) { return models, nil } -// SendStream sends the messages to the the Bedrock ConverseStream API +// SendStream sends the messages to the Bedrock ConverseStream API func (c *BedrockClient) SendStream(msgs []*chat.ChatCompletionMessage, opts *domain.ChatOptions, channel chan string) (err error) { // Ensure channel is closed on all exit paths to prevent goroutine leaks defer func() {