| 76 | } |
| 77 | |
| 78 | int TokenUtils::estimateFilesTokens(const QList<Context::ContentFile> &files) |
| 79 | { |
| 80 | int total = 0; |
| 81 | for (const auto &file : files) { |
| 82 | total += estimateFileTokens(file); |
| 83 | } |
| 84 | return total; |
| 85 | } |
| 86 | |
| 87 | } // namespace QodeAssist::Context |
nothing calls this directly
no outgoing calls
no test coverage detected