aboutsummaryrefslogtreecommitdiffstats
path: root/streamingvisitors
diff options
context:
space:
mode:
authorHåvard Pettersen <havardpe@oath.com>2020-08-31 10:32:50 +0000
committerHåvard Pettersen <havardpe@oath.com>2020-09-01 12:45:13 +0000
commit3440f424ab11d8d8810b6f9785e6a8fad7271fe1 (patch)
treeb769b0acf1485b4b18fd51efe556c8a6b583c7bf /streamingvisitors
parent3b8f7fdff4872bd010286753f6072ec492f14a48 (diff)
handle onnx models config
Diffstat (limited to 'streamingvisitors')
-rw-r--r--streamingvisitors/src/vespa/searchvisitor/indexenvironment.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/streamingvisitors/src/vespa/searchvisitor/indexenvironment.h b/streamingvisitors/src/vespa/searchvisitor/indexenvironment.h
index ac6836b08c5..3bbfb0b23f9 100644
--- a/streamingvisitors/src/vespa/searchvisitor/indexenvironment.h
+++ b/streamingvisitors/src/vespa/searchvisitor/indexenvironment.h
@@ -73,6 +73,10 @@ public:
return vespalib::eval::ConstantValue::UP();
}
+ std::optional<vespalib::string> getOnnxModelFullPath(const vespalib::string &) const override {
+ return std::nullopt;
+ }
+
bool addField(const vespalib::string & name, bool isAttribute);
search::fef::Properties & getProperties() { return _properties; }