| 43 | } |
| 44 | |
| 45 | QString SystemPromptBuilder::layer(const QString &name) const |
| 46 | { |
| 47 | for (const auto &pair : m_layers) { |
| 48 | if (pair.first == name) return pair.second; |
| 49 | } |
| 50 | return {}; |
| 51 | } |
| 52 | |
| 53 | QStringList SystemPromptBuilder::layerNames() const |
| 54 | { |
nothing calls this directly
no outgoing calls
no test coverage detected