| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- package message
- import (
- "fmt"
- "strings"
- "testing"
- )
- func makeTestAttachments(n int, contentSize int) []Attachment {
- attachments := make([]Attachment, n)
- content := []byte(strings.Repeat("x", contentSize))
- for i := range n {
- attachments[i] = Attachment{
- FilePath: fmt.Sprintf("/path/to/file%d.txt", i),
- MimeType: "text/plain",
- Content: content,
- }
- }
- return attachments
- }
- func BenchmarkPromptWithTextAttachments(b *testing.B) {
- cases := []struct {
- name string
- numFiles int
- contentSize int
- }{
- {"1file_100bytes", 1, 100},
- {"5files_1KB", 5, 1024},
- {"10files_10KB", 10, 10 * 1024},
- {"20files_50KB", 20, 50 * 1024},
- }
- for _, tc := range cases {
- attachments := makeTestAttachments(tc.numFiles, tc.contentSize)
- prompt := "Process these files"
- b.Run(tc.name, func(b *testing.B) {
- b.ReportAllocs()
- for range b.N {
- _ = PromptWithTextAttachments(prompt, attachments)
- }
- })
- }
- }
|