Is that what it is using to render and manipulate MS Office documents? That'd explain the poor rendering of some of my files. Bundling all of LibreOffice seems like a pretty huge dependency.
Computer use is slow and can take control of the application focus. I’ll be doing things while Claude runs in the background. Suddenly it decides to open the app and try to do something + screenshot it.
I don't know how many times I've had to yell at codex or claude to use/implement headless versions of whatever it's doing at the time, interrupts me trying to multitask and play Battlefield or Factorio while they work :P
don't try Dyson sphere project (/s, its acrually really great), but maybe try x4 foundations, I'm contemplating how I might have my agent help manage my empire
If you've ever actually gone down this route you will try exactly this realize how much of a cluster f these products are and just use libre.
I did the exact same thing in my AI system. Spent an ENOURMOUS amount of time trying everything I could and in the end libre was the only thing even somewhat functional.
Easily 2 months of my life lost to these god forsaken systems. APIs and CLIs sound reasonable until you actually attempt anything in this space.
Computer use is exactly the same thing. Go try this: go to a google doc and dev tools check out the dom and now do the same for a word doc. Eye gouging pain of trying to get anything to work.
I don't think that's anywhere near equivalent. That's for reading and writing Microsoft Office docs. It has no office functionality. LibreOffice has a full API, for example to run calculations on spreadsheets [1].
The goal of bringing in dependencies is so you don't have to duplicate the functionality, in this case, crafted over decades of effort.
For a docker image of mine I was bundling the full version of LibreOffice as well but I managed to get some space savings by bundling just the no-gui version.
I have a skill that instructs ChatGPT/Codex to verify the rendering using the Mac versions of Microsoft Office. Even without registering, you still can open files read-only, which is enough. Apparently Office refuses to open some Open Office XML documents that LibreOffice is fine with, so that's another reason to use this. After a few times, Codex ended up storing some memories to stop producing broken files in the first place.
What's ironic about this is, afaik there's no programmatic way to get a screenshot of a PowerPoint on windows other than opening up PowerPoint and screenshotting it. I only discovered this when I first tried out Anthropics official PowerPoint skill when it came out this winter.
If anything happens from this, I hope it forces Microsoft to address some of its long standing hostile to power users issues so they can stay relevant in the world of AI tooling.
This can absolutely be done programmatically. I just added the ability to do that using PowerPoint for Windows yesterday in my uv/python tool `markdown-pptx`. Codex added the functionality in less than 5 minutes.
I still don’t understand why with all their cash these companies dont redo their apps in Rust or native. They are all so heavy and dog slow. There are already some very fast cross platform (wasm too!) libraries that can do what poppler does as well as parse and produce various office file formats. Because 2gb is crazy town, these things could be around 100mb, just throw some tokens at the problem.
Just throw some tokens at the problem. I’ve vibed up a Rust Crux hybrid app that runs well on macOS, iPad and wasm and does some pretty complex xml manipulation and other document work. Absolutely smokes electron and you get native UI.
I mean, aside from all the NP Hard sub problems (I might not be reading your satire though), the real hard problem is that a "product" is not just software, but an ecosystem and a promise of maintenance of the abstract user experience & quality of it.
A full implementation/rewrite of something like word, which is pretty complex and the quantity of edge cases is insane, in a relatively short amount of time, months, is very hard.
If they succeed with AI it will be huge: it's basically not possible to do it today with humans, no matter how many people you put on the job.
"ports like this" skips the part about Microsoft/enterprise software having a known and well tested surface area, the few examples we've seen are exceptional cases I suspect
Especially when there are three different versions, and each has a different team, and they all can work together at the same time. Crazy amount of tech supporting it that breaks a humans context let alone a models context.
On top of everyone else’s great points, if you make your own “fork” of something, then you have to consistently maintain it. Which can be done with tokens, but an extra cost with something that’s not as user tested.
Ah good point, I thought this was coming across from the "recreate" your own approach. I would fully agree with you on using native frameworks, though the eletron desktop is a great "entry" onto desktops ensuring companies only have to update 1 source, as opposed to natives everywhere.
You should go actually try to make any basic automation work around these systems.
They purposely obscured, google doc is another example they completly hide the dom!
I spent months fighting word processing systems and ended up shipping libre. There's almost zero alternatives without that becoming your entire company.
Indeed, but that likely wouldn't have stopped someone from submitting it with a misleading title. HN is known to get a lot of misleading titles submitted and to have to change them. The <title> tag is better, it doesn't say "a full copy". In the screenshot it shows "headless" in the filename. I would simply add the tiny detail of headless to the <title> and use this title for HN: Codex Bundles Headless LibreOffice
Walnut is the .NET and OpenXML backend. I think the point parent was trying to make it that it shouldn't be surprising Codex bundles runtimes for damn near everything.
Someone may need to explain to me what is wrong with this sorry. Is it because it bloats the app with functionality that some users will never use? I feel like that is fairly usual for productivity/business apps generally.
It does, however, introduce a potentially enormous attack surface into ChatGPT, along with creative opportunities for less security conscious individuals and LLMs.
Oh right, yeah I agree. It's the kind of thing I can imagine the harness downloading in the background anyway (or instructing the user to do) at some point so I can see the sense in just skipping that bit. Kind of comforting they just do it the same way the rest of us do - if it ain't broke and so on.
Yes, that's what I mean - maybe that didn't come across cos I said "bloats". I work for a business that builds web apps for corporates - LibreOffice is bundled in most of the repos of ours that I've seen, a bit like Imagick is in the broader sector.
Does that really mean that it's bundling those apps from the start or did it just download and install them at some point to do some local work on some prompt or job you ask it to?
I don't see it making much sense to bundle it. I'm sure a LOT of LLM prompts are related with docs, excels, powerpoints etc, etc but don't really see it worth it for it to be bundled on the codex app from the get go, because otherwise, why not also install dozens of other apps?
I'm not sure. Someone who hasn't installed the ChatGPT (or Codex) apps yet could confirm this by installing the apps, seeing if that ~/.cache directory exists, then try running a prompt that needs Python or Node.js or LibreOffice and see if it downloads them when needed.
Is this perhaps because the aim is to read Office documents and there are (maybe, I don't know for sure) default components within Windows that can do that?
Notably: this did not exist after I installed the app, it existed after I ran the app and there was the long startup screen. Presumably, and I'm not sure I'm interested enough to redo it all and find out, that long startup screen involves the default skills plugins setting up their environment and one of those pulls it as a general app requirement.
I also saw this present after first run on macOS but not Windows.
Ok, it's probably not a security decision. It's a common pattern with both storage and memory management to push most reservations to initialization, in order to cluster resource insufficiency errors to a specific install-time when the user or admin can do something about it. An excessive just-in-time approach in both storage and memory would cause OOM and Disk exhaustion to occur at many different times.
I've noticed that when I have codex read/modify word files the live reasoning snippets often allude to LibreOffice, so that makes sense. I think it was a quick and dirty way for them to interface with docx and xlsx files?
I actually bundle LibreOffice with my app too and the reason is reading files, especially old xls files. Since I'm bundling it I'm now using it for everything docs related but the specific reason is those old files. I couldn't find anything else that I could just drop it and feel confident it'll just read anything I give it.
Despite the title, I'm not sure it's actually bundled. Some of the skills plugins will download it on the first run. So it depends where they are grabbing it from rather than the presence of the binary on the system, but I haven't checked that deep into where they actually grab it.
The license itself may be present in the cache folder.
Alternatively, ChatGPT might happily disclose authorship and licensing if asked.
I'm not convinced of the argument that the fact that it is not bundled at download or even at install-time, would free them of the GPL responsibilities. And at this point.
I'm also not sure HOW the devs bundled libreoffice, whether they just mentioned in a prompt (use libreoffice), or whether they hardcoded a command (like apt install libreoffice), more likely the former, considering the recursive vibecoding nature of this software.
Whole lotta words to say that I don't know whether this is a GPL violation, but interested in the answer. If it is a violation, the likely fix will probably be yet another prompt that says something like "comply with licensing", which probably already exists, so a more specific "provide attribution (in a way that doesn't bother the user)"
First Claude installed 10GB VM [0] without asking, but OpenAI ships LibreOffice.
What's next? Somebody ship their monorepo verbatim?
Honestly, not sure it's worth having those app on your localhost at all.
I ended up uninstalling all frontier labs bloated apps and start using Google AI Mode + Antigravity CLI / Claude Code sometimes.
There is a serious threat to Microsoft here, if everyone starts using AI for generating and updating Office docs. At some point Office will become just a viewer.
im stoked for that outcome, standard document tooling should not live behind subscription models anymore. i dont care that microsoft spent zillions bankrolling education systems and companies to fall into this cultural lock in over the decades
whether they like it or not spreadsheets word docs etc are just ubiquitous parts of existing in society at this point you're gonna need to reach for these tools eventually just to apply for jobs or do homework
You assume tokens will be free after these get their monopoly positions? Actual libre office is actual open source running on weak hardware. Truly free.
And I suspect we will look back at MS with nostalgia once Altman and Musk get their ai imperiums.
Satya said some time ago that they expect soon to have more agents using Microsoft software than humans, and are working on transitioning their focus from serving humans to serving agents.
So they will switch to per-agent pricing instead of per-user. Fine, but that doesn't change the fact that Microsoft Office will become a just bunch of viewers as far as human usage is concerned. As far as generating Office documents, you can do that without using any Microsoft code.
This is one that's already true and "everyone" hasn't figured it out yet. But you don't really even need Office as a viewer, PDF is fine (for printable/portable fixed-layout) or just HTML. "Office" is a product that doesn't need to exist anymore, at least for the core apps. For day-to-day office work, you probably shouldn't be using those legacy apps, you should be reviewing portable document formats and asking an agent to make the revisions that you want.
> For Microsoft, this shift means products like M365 will act as the foundational layer where AI agents operate. Users will still need places to store documents, manage projects, search files, and track workflows
I have not created or read any Word document for a very long time. I only create PowerPoint presentations a few times a year for work, which could be easily replaced with PowerPoint online or Google Slides or even just some markdown files.
But I have a license for the entire office 365 including Copilot premium.
The new app is an unbelievable mess. Settings are senselessly organized, too. The whole thing has this aesthetic slickness and then underneath it's like the people who make it have never even used it.
It's not surprising that it's pulled in absolutely massive dependencies, although I'm not sure it's the wrong call on some operating systems. LibreOffice is pretty tried and true.
Personally, I like the 3-pane organization (sidebar, chat, browser). I turned ChatGPT into my bookkeeper and social post writing/kanban space, and it works well for these script+browser workflows on desktop.
However, all of this is confusing:
- the ChatGPT/Codex split on desktop
- Chat/Work split on mobile
- how you remotely access each chat from your phone (some of my most valuable chats are buried in Remote)
- which chats propagate from device to device, and which remain on that device
Istg on windows, I can't get codex app, new chatgpt or chatgpt classic to work without hanging on even a moderately sized chat. I tried all of the different tricks people recommended but that shit just crawls. It was stable at some point, classic that is, but then it started being a laggy mess.
I've uninstalled new chatgpt/codex app. I can't access phone chats on it, I can't use the desktop allocated chat messages on it. I have to use up codex limits. I am so surprised that OpenAI ships that hot garbage on windows.
They removed the global shortcut to show a portable chat overlay. That one entrypoint must've been the source of at least 80% of my chats, yet apparently it was considered too vestigial to keep.
The thing that blows my mind about it is that they straight up copied Claude Code and tried to frame it as some sort of incredible accomplishment. There are no new ideas, no insightful UI/UX paradigms, no killer features. They say money can't buy taste. The ChatGPT/Codex app is proof that it cannot buy creativity either.
spinning up an entire copy of libreoffice sounds super heavy?, if someone here is actually using chatgpt to edit docx documents then they can feel free to use us.
vespper.com
Imagine the enormous complexity of office file formats if your business is literally building coding models/agents and still you choose to bundle LibreOffice.
Also in the newest app I think the transcription feature is unusable. Ok, I can have a shortcut to start and stop recording. Wow, cool! Ok, but where did the transcription go? In my clipboard? To my cursor? Hey? :(
(I made a similar comment in a different post by Simon Willison yesterday about GPT Work)
I am unsure the direction that AI assisted document creation work will go in. I am opinionated and building something in the space. In this reply I discuss my view + what I have been building.
My opinion is: We now have AI, this new amazing flexible tool. We can throw it at any problem. But in terms of document creation we have a choice between old fashioned siloed document formats (.pptx, .pdf, .xlsx, .docx, etc.) and a freshly rendered - slightly randomly styled - html site with some basic javascript within it. I think these combinations are odd and do not maximise the powers of AI.
I've been building something called SmallDocs [0][1] which is a new take on work documents. It's all Markdown, but it always renders (100% privately) on the SmallDocs site. This means the SmallDocs renderer can convert recognised Markdown combinations into powerful traditional document formats [2]. For example, we convert a ```cells block into an in-line spreadsheet you can export to Excel.
This gives an agent the ability to express itself with a great deal of depth and flexibility. For example, your agent can produce a single data analysis "SmallDoc" with text, charts, spreadsheets, etc. [3] I find that combining formats quickens the speed I can understand a topic.
SmallDocs also have standardised and pretty boring styling. This means you spend less time understanding the layout of a flashy HTML page and more time on the content.
I also believe a pre-determined rendering engine has a lot of advantages over a freslhy built HTML artifact. It allows you to build in lot's of useful defaults that the agent doesn't have to code from scratch. These can be small things, for example, every time your agent renders a Markdown table in SmallDocs you can instantly copy it as a CSV or a PNG. And these can be bigger things, such as a rich slides DSL with solid styling defaults, which saves your agents a lot of tokens and results in consistently attractive HTML slides [4]. (Slides can also be automatically exported to .pdf and .pptx.)
I've been at it for a few months, and am still working on the project. I am looking for feedback and open source collaborators. Thanks for reading!
Now someone please use ChatGPT/Codex or Claude Code to rewrite the entire LibreOffice source into a single Rust binary already! Just like Jarred Sumner did for Bun [1] or Carmine Paolino did for Fastpotify [2] - granted there are some rough edges for sure, but the slim diet trimmed down and performance gains were wrothy.
Last time I used the Windows version it pegged all my cores at 100% usage for some reason. The machine became unusable. Instead I used Codex with JetBrains Rider (doing a C# project) and it worked flawlessly.
Would be nice if they donate to LibreOffice then, to improve the support of various MS Office features in files, as well as comparison/diffing features. Win-win to everyone.
Surely "the right thing to do" includes some element of the authors' explicitly stated preferences about how they wish to be treated.
In this case, they chose -- explicitly -- to NOT require any payment or contribution from anyone.
Your feelings about what constitutes "the right thing to do" are apparently different from those of the authors. You believe you know better than they themselves do how they should be treated.
> Surely "the right thing to do" includes some element of the authors' explicitly stated preferences about how they wish to be treated.
It does! And they wish to get donations. There's a button right at the top on the site making that clear.
> In this case, they chose -- explicitly -- to NOT require any payment or contribution from anyone.
Yes, so what? It is true that they wished to not require payment. That is one of their wishes, but they have more than one wish. And if they required payment, that wouldn't be a donation anyway.
They clearly would like donations, but choose not to require any payments.
Your line of reasoning seems to be along the lines of "anything not forbidden is compulsory" which is not a good place. Having the choice to donate but not being required to is good.
And yes, I think that if OpenAI is choosing to include an entire copy of LibreOffice in their product, it is definitely the right thing to do to sling them a donation. Note that the moral thing to do is not always the required thing to do, or even the legal thing to do.
More like, don't expect anything if not forced. Most people only generally pay for things if there is no other option. It's about what's moral (even then debatable as everyone has different morals) versus what's realistic to expect.
pseudosavant | 8 hours ago
nomel | 8 hours ago
What's the alternative library you see?
verdverm | 8 hours ago
tyre | 8 hours ago
verdverm | 8 hours ago
https://devblogs.microsoft.com/microsoft365dev/getting-start...
https://github.com/googleworkspace/cli
ChickeNES | 7 hours ago
verdverm | 6 hours ago
johnsmith1840 | 4 hours ago
I did the exact same thing in my AI system. Spent an ENOURMOUS amount of time trying everything I could and in the end libre was the only thing even somewhat functional.
Easily 2 months of my life lost to these god forsaken systems. APIs and CLIs sound reasonable until you actually attempt anything in this space.
Computer use is exactly the same thing. Go try this: go to a google doc and dev tools check out the dom and now do the same for a word doc. Eye gouging pain of trying to get anything to work.
simongg | 8 hours ago
nomel | 6 hours ago
The goal of bringing in dependencies is so you don't have to duplicate the functionality, in this case, crafted over decades of effort.
[1] https://wiki.documentfoundation.org/Documentation/SDKGuide/C...
MikeTheGreat | 8 hours ago
JLO64 | 8 hours ago
zamadatix | 7 hours ago
OutOfHere | 8 hours ago
tiahura | 8 hours ago
telotortium | 7 hours ago
I generated the skill originally for ChatGPT 5.5, so some of these may not strictly be necessary anymore with later models. But posting here in case others find it useful: https://gist.github.com/telotortium/844386f762c4b3bab49999ba...
bs7280 | 7 hours ago
If anything happens from this, I hope it forces Microsoft to address some of its long standing hostile to power users issues so they can stay relevant in the world of AI tooling.
pseudosavant | 5 hours ago
https://github.com/pseudosavant/markdown-pptx/
cpursley | 8 hours ago
sudo_cowsay | 8 hours ago
cpursley | 8 hours ago
Ref: https://redbadger.github.io/crux/
verdverm | 8 hours ago
sigbottle | 8 hours ago
vb-8448 | 8 hours ago
doc_ick | 8 hours ago
vb-8448 | 5 hours ago
If they succeed with AI it will be huge: it's basically not possible to do it today with humans, no matter how many people you put on the job.
doc_ick | an hour ago
It would be impressive of AI to make a 80% rewrite, though I fully doubt it would cover the 100% rewrite (disregarding long term support as well).
Why do you think it’s impossible for humans to rewrite word, especially even humans made it in the first place?
cpursley | 7 hours ago
verdverm | 6 hours ago
johnsmith1840 | 4 hours ago
These guys puposely obscure controls and understanding of these products 100% to prevent you doing a port.
Just go open a microsoft word doc in the browser and look at the dom.
Despair! Horror!
doc_ick | an hour ago
doc_ick | 8 hours ago
cpursley | 7 hours ago
doc_ick | 6 hours ago
nomel | 8 hours ago
andai | 8 hours ago
nikanj | 8 hours ago
tmp10423288442 | 7 hours ago
quotemstr | 8 hours ago
(Also, "Rust or native" is a strange dichotomy. What's not native about Rust?)
kennywinker | 8 hours ago
cpursley | 7 hours ago
johnsmith1840 | 4 hours ago
They purposely obscured, google doc is another example they completly hide the dom!
I spent months fighting word processing systems and ended up shipping libre. There's almost zero alternatives without that becoming your entire company.
simonw | 8 hours ago
MattDamonSpace | 8 hours ago
mrob | 8 hours ago
embedding-shape | 8 hours ago
TZubiri | 7 hours ago
justsomehnguy | 8 hours ago
switchbak | 7 hours ago
...
For those that can't see the sarcasm: https://en.wikipedia.org/wiki/Godwin%27s_law
benatkin | 6 hours ago
dvrp | 8 hours ago
bcanzanella | 8 hours ago
djriley | 8 hours ago
alex-moon | 8 hours ago
simonw | 8 hours ago
winstonp | 8 hours ago
nialse | 8 hours ago
alex-moon | 8 hours ago
OutOfHere | 8 hours ago
alex-moon | 8 hours ago
lgl | 8 hours ago
I don't see it making much sense to bundle it. I'm sure a LOT of LLM prompts are related with docs, excels, powerpoints etc, etc but don't really see it worth it for it to be bundled on the codex app from the get go, because otherwise, why not also install dozens of other apps?
simonw | 8 hours ago
zatkin | 8 hours ago
% ls ~/.cache/codex-runtimes/codex-primary-runtime/dependencies/native/libreoffice-headless
libreoffice manifest.json
embedding-shape | 8 hours ago
dofm | 6 hours ago
melagonster | 3 hours ago
zamadatix | 8 hours ago
I also saw this present after first run on macOS but not Windows.
ValentineC | 7 hours ago
More notably, I don't use Computer Use or any of the fancy features, just Codex for agentic coding.
RomanHauksson | 8 hours ago
because other apps are less likely to be useful, and there's diminishing returns
quotemstr | 8 hours ago
TZubiri | 7 hours ago
trentor | 8 hours ago
iAMkenough | 8 hours ago
jrflo | 8 hours ago
esperent | 8 hours ago
vb-8448 | 8 hours ago
Is this a MPL 2.0 violation?
thesdev | 8 hours ago
vb-8448 | 8 hours ago
zamadatix | 8 hours ago
TZubiri | 7 hours ago
Alternatively, ChatGPT might happily disclose authorship and licensing if asked.
I'm not convinced of the argument that the fact that it is not bundled at download or even at install-time, would free them of the GPL responsibilities. And at this point.
I'm also not sure HOW the devs bundled libreoffice, whether they just mentioned in a prompt (use libreoffice), or whether they hardcoded a command (like apt install libreoffice), more likely the former, considering the recursive vibecoding nature of this software.
Whole lotta words to say that I don't know whether this is a GPL violation, but interested in the answer. If it is a violation, the likely fix will probably be yet another prompt that says something like "comply with licensing", which probably already exists, so a more specific "provide attribution (in a way that doesn't bother the user)"
zamadatix | 6 hours ago
prmoustache | an hour ago
I don't need a lot of words to say it can't be a GPL violation since Libreoffice is distributed under the MPL v2.0 license.
https://www.libreoffice.org/licenses/
https://www.mozilla.org/en-US/MPL/license-policy/
ars | 6 hours ago
m3kw9 | 8 hours ago
dvduval | 8 hours ago
mirzap | 7 hours ago
LtWorf | 7 hours ago
paaloeye | 7 hours ago
Honestly, not sure it's worth having those app on your localhost at all. I ended up uninstalling all frontier labs bloated apps and start using Google AI Mode + Antigravity CLI / Claude Code sometimes.
[0] https://github.com/anthropics/claude-code/issues/22543
zitterbewegung | 7 hours ago
petilon | 7 hours ago
trueno | 7 hours ago
whether they like it or not spreadsheets word docs etc are just ubiquitous parts of existing in society at this point you're gonna need to reach for these tools eventually just to apply for jobs or do homework
watwut | 6 hours ago
And I suspect we will look back at MS with nostalgia once Altman and Musk get their ai imperiums.
dist-epoch | 7 hours ago
Satya said some time ago that they expect soon to have more agents using Microsoft software than humans, and are working on transitioning their focus from serving humans to serving agents.
https://www.news18.com/business/satya-nadella-announces-micr...
petilon | 7 hours ago
cromka | 7 hours ago
yakz | 6 hours ago
dist-epoch | 6 hours ago
They bet on the online office suite (M365).
kelvinjps10 | 7 hours ago
fg137 | 6 hours ago
But I have a license for the entire office 365 including Copilot premium.
Guess why?
articulatepang | 4 hours ago
jags-v | 4 hours ago
isityettime | 7 hours ago
It's not surprising that it's pulled in absolutely massive dependencies, although I'm not sure it's the wrong call on some operating systems. LibreOffice is pretty tried and true.
yeutterg | 7 hours ago
However, all of this is confusing:
- the ChatGPT/Codex split on desktop
- Chat/Work split on mobile
- how you remotely access each chat from your phone (some of my most valuable chats are buried in Remote)
- which chats propagate from device to device, and which remain on that device
jbird99 | 6 hours ago
senectus1 | 4 hours ago
written-beyond | 6 hours ago
Istg on windows, I can't get codex app, new chatgpt or chatgpt classic to work without hanging on even a moderately sized chat. I tried all of the different tricks people recommended but that shit just crawls. It was stable at some point, classic that is, but then it started being a laggy mess.
I've uninstalled new chatgpt/codex app. I can't access phone chats on it, I can't use the desktop allocated chat messages on it. I have to use up codex limits. I am so surprised that OpenAI ships that hot garbage on windows.
johaugum | 5 hours ago
But even on the Windows machine, if you Tailscale into a free tier VM for the workloads, you'd probably have a much better time.
Just leave Codex itself on your machine, if you set up computer use it will happily set up all of this for you while you have lunch.
Razengan | 5 hours ago
..like excuse me? Where the fuck else would we post feedback about it?
RestartKernel | 4 hours ago
enraged_camel | 2 hours ago
steve1977 | 45 minutes ago
lennart-rth | 7 hours ago
topaztee | 7 hours ago
woadwarrior01 | 6 hours ago
https://x.com/bdsqlsz/status/2067964486615810369
joquarky | 5 hours ago
wilg | 7 hours ago
monneyboi | 6 hours ago
gfalcao | 6 hours ago
Lucasoato | 6 hours ago
FailMore | 6 hours ago
I am unsure the direction that AI assisted document creation work will go in. I am opinionated and building something in the space. In this reply I discuss my view + what I have been building.
My opinion is: We now have AI, this new amazing flexible tool. We can throw it at any problem. But in terms of document creation we have a choice between old fashioned siloed document formats (.pptx, .pdf, .xlsx, .docx, etc.) and a freshly rendered - slightly randomly styled - html site with some basic javascript within it. I think these combinations are odd and do not maximise the powers of AI.
I've been building something called SmallDocs [0][1] which is a new take on work documents. It's all Markdown, but it always renders (100% privately) on the SmallDocs site. This means the SmallDocs renderer can convert recognised Markdown combinations into powerful traditional document formats [2]. For example, we convert a ```cells block into an in-line spreadsheet you can export to Excel.
This gives an agent the ability to express itself with a great deal of depth and flexibility. For example, your agent can produce a single data analysis "SmallDoc" with text, charts, spreadsheets, etc. [3] I find that combining formats quickens the speed I can understand a topic.
SmallDocs also have standardised and pretty boring styling. This means you spend less time understanding the layout of a flashy HTML page and more time on the content.
I also believe a pre-determined rendering engine has a lot of advantages over a freslhy built HTML artifact. It allows you to build in lot's of useful defaults that the agent doesn't have to code from scratch. These can be small things, for example, every time your agent renders a Markdown table in SmallDocs you can instantly copy it as a CSV or a PNG. And these can be bigger things, such as a rich slides DSL with solid styling defaults, which saves your agents a lot of tokens and results in consistently attractive HTML slides [4]. (Slides can also be automatically exported to .pdf and .pptx.)
I've been at it for a few months, and am still working on the project. I am looking for feedback and open source collaborators. Thanks for reading!
[0] https://smalldocs.org
[1] https://github.com/espressoplease/smalldocs
[2] https://smalldocs.org/blogs/what-is-a-smalldoc
[3] https://smalldocs.org/s/46fWiAyF77T9c7tqYwAQqp#k=j78ZEOOrgo8...
[4] https://smalldocs.org/s/QrmeWMsULGS871nXQYOacB#k=ubOHH9QtTWp...
(And something totally different, your agent can also use SmallDocs to walk you through code files: https://smalldocs.org/s/JsI_-tWSH0UpSd_YXxVLPm#k=G5jLCYA4JUX...)
devy | 5 hours ago
[1] https://bun.com/blog/bun-in-rust [2] https://fastpotify.rocks/
what | 2 hours ago
Why?
robomartin | 4 hours ago
xvilka | 2 hours ago
pocksuppet | an hour ago
dumberquestions | an hour ago
mplewis | an hour ago
fangspire | an hour ago
Dylan16807 | 56 minutes ago
ultrarunner | 46 minutes ago
marcus_holmes | 44 minutes ago
It was illegal to harbour escaped slaves. Or hide Jews from the Gestapo.
Laws have nothing to do with morality. Or justice.
rdbl27 | an hour ago
In this case, they chose -- explicitly -- to NOT require any payment or contribution from anyone.
Your feelings about what constitutes "the right thing to do" are apparently different from those of the authors. You believe you know better than they themselves do how they should be treated.
Dylan16807 | an hour ago
It does! And they wish to get donations. There's a button right at the top on the site making that clear.
> In this case, they chose -- explicitly -- to NOT require any payment or contribution from anyone.
Yes, so what? It is true that they wished to not require payment. That is one of their wishes, but they have more than one wish. And if they required payment, that wouldn't be a donation anyway.
mastazi | 56 minutes ago
> Please respond to the strongest plausible interpretation of what someone says, not a weaker one that's easier to criticize. Assume good faith.
marcus_holmes | 46 minutes ago
Your line of reasoning seems to be along the lines of "anything not forbidden is compulsory" which is not a good place. Having the choice to donate but not being required to is good.
And yes, I think that if OpenAI is choosing to include an entire copy of LibreOffice in their product, it is definitely the right thing to do to sling them a donation. Note that the moral thing to do is not always the required thing to do, or even the legal thing to do.
satvikpendem | 40 minutes ago
marcus_holmes | 29 minutes ago
People will absolutely pay for things voluntarily if you ask them, without forcing them to.
[0] https://www.theguardian.com/membership/2018/nov/12/katharine...
In a nutshell - voluntary funding by readership. No paywall. You can read as many stories as you like for free, and donate if you want. It works.
satvikpendem | an hour ago
j16sdiz | 25 minutes ago