File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -164,19 +164,19 @@ class ET_EXPERIMENTAL MultimodalInput {
164164
165165// Convenience factory functions
166166inline MultimodalInput make_text_input (const std::string& text) noexcept {
167- return { text} ;
167+ return MultimodalInput ( text) ;
168168}
169169
170170inline MultimodalInput make_text_input (std::string&& text) noexcept {
171- return { std::move (text)} ;
171+ return MultimodalInput ( std::move (text)) ;
172172}
173173
174174inline MultimodalInput make_image_input (const Image& image) noexcept {
175- return { image} ;
175+ return MultimodalInput ( image) ;
176176}
177177
178178inline MultimodalInput make_image_input (Image&& image) noexcept {
179- return { std::move (image)} ;
179+ return MultimodalInput ( std::move (image)) ;
180180}
181181
182182} // namespace executorch::extension::llm
You can’t perform that action at this time.
0 commit comments