Commit 5e7b2b48 authored by Alp Deniz Ogut's avatar Alp Deniz Ogut
Browse files

Revert "Stricter unwanted line filter on feed & category summaries"

This reverts commit e88ae4f0.
parent 77db0f25
Pipeline #14943 passed with stages
in 1 minute and 46 seconds
Showing with 1 addition and 1 deletion
+1 -1
......@@ -309,7 +309,7 @@ class RSSImporter(PluginBase):
logger.error(f"Error during chat request stream: {e}")
return None
# strip out the lines without bullet points (*)
summary = re.sub(r"^[^* ]+", "", summary, flags=re.MULTILINE)
summary = re.sub(r"^[^*]+", "", summary, flags=re.MULTILINE)
return summary
def feed_chat(self, index_name, messages, category_text=None):
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment