Skip to content

Commit 0b52627

Browse files
committed
Add missing header
1 parent 850e043 commit 0b52627

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

toolcall/toolcall-handler.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
#include "toolcall-params.h"
44
#include <string>
5-
#include <variant>
5+
#include <optional>
66
#include <memory>
77
#include <vector>
88
#include <condition_variable>
@@ -77,9 +77,9 @@ namespace toolcall
7777
}
7878

7979
virtual result_set call(const std::string & request) override {
80-
return {
81-
{"text", request, "text/plain", std::nullopt, false}
82-
};
80+
return result_set {
81+
{"text", request, "text/plain", std::nullopt, false}
82+
};
8383
}
8484

8585
private:

0 commit comments

Comments
 (0)