File tree Expand file tree Collapse file tree 1 file changed +0
-22
lines changed Expand file tree Collapse file tree 1 file changed +0
-22
lines changed Original file line number Diff line number Diff line change @@ -276,28 +276,6 @@ namespace fossil {
276
276
std::unique_ptr<char , decltype (&free)> ptr (fossil_io_soap_filter_offensive (text.c_str ()), free);
277
277
return ptr ? std::string (ptr.get ()) : std::string{};
278
278
}
279
-
280
- /* *
281
- * @brief Attempt to identify logical fallacies in the input.
282
- *
283
- * @param text The input string.
284
- * @return Description of detected fallacy or empty string.
285
- */
286
- static std::string detect_fallacy (const std::string &text) {
287
- const char * result = fossil_io_soap_detect_fallacy (text.c_str ());
288
- return result ? std::string (result) : std::string{};
289
- }
290
-
291
- /* *
292
- * @brief Generate a brief summary of the key idea in the input.
293
- *
294
- * @param text The input string.
295
- * @return Summary string.
296
- */
297
- static std::string summarize (const std::string &text) {
298
- std::unique_ptr<char , decltype (&free)> ptr (fossil_io_soap_summarize (text.c_str ()), free);
299
- return ptr ? std::string (ptr.get ()) : std::string{};
300
- }
301
279
};
302
280
303
281
} // namespace io
You can’t perform that action at this time.
0 commit comments