SigmaNight / basiliskLLM

🐍 Where LLMs Unite
GNU General Public License v2.0
12 stars 6 forks source link

Feature request: web view presentation for message history #150

Open jscholes opened 2 months ago

jscholes commented 2 months ago

I believe wxPython now supports Edge WebView2 on Windows. It would be great to be able to toggle on a preference in BasiliskLLM to have the output area be presented as a browseable web view, in addition to the multi-line, read-only plain text control that's there now. This would also require the Markdown responses from models to be parsed into HTML.

AAClause commented 2 months ago

Thanks for this suggestion. I plan to look into this after merging PR #136, which already adds the capability to display specific message in a webview, provided they are correctly formatted in Markdown. However, a potential challenge is that responses are not always in Markdown. Therefore, we need to implement a reliable method to determine if a response is properly formatted in Markdown...