Christopher

Results 15 comments of Christopher

I know Markdown is a very common thing with it's simple formatting, and looks nice on a screen. But as a writer or just doing research, it would be great...

After trying all of the apps out there for AI, mostly for helping with creative writing, FreeChat is appealing to have something local and somehow use my own files along...

Only 2 providers work for me: OpenAI and Ollama. I see this for Anthropic and Groq: ``` python -B cls1.py Traceback (most recent call last): File "/Users/cleesmith/aisuite/cls1.py", line 16, in...

I guees I could add something like this to convert_output.py ... ``` import re import textwrap def add_paragraphs(transcribed_text, sentences_per_paragraph=5, line_width=70): # normalize spaces transcribed_text = re.sub(r'\s+', ' ', transcribed_text).strip() #...

Native mode and ui.download does work on my Windows 10 laptop: ```py from nicegui import ui, app app.native.settings['ALLOW_DOWNLOADS'] = True # ui.button("Download", on_click=lambda: ui.download(b'Demo text','demo_file.txt')) ui.button("Download", on_click=lambda: ui.download(b'Demo text')) ui.run(native=True)...