You can now find the full application code in the video description. (or here: github.com/JohannesJolkkonen/llm-report-generation/ ) Remember to read the README, to understand what API-credentials you need for running the application.
@Hector-zr2lq5 ай бұрын
The quiality of the videos rhar you post are just impressive, perfect videos, im just wondering if theres a way to build this app but entirely local to run in an ipad is it possible to build it ? Im trying to build an HIPPA prove app for a local doctor who wants the ia take the conversation and generate a report
@johannesjolkkonen5 ай бұрын
@@Hector-zr2lq Thank you. I'm not very familiar with iOS/mobile development, but I'm pretty sure it would be possible, including local llms running on ipads or such. But it's not at all necessary (or worth it, in my opinion) to go down that route. It's perfectly possible to build HIPAA apps on the cloud, using platforms such as Microsoft Azure, where you can also run OpenAI's models. That's probably where you want to look, and perhaps get in touch with their sales for more specific requirements.
@Hector-zr2lq5 ай бұрын
Doing some research about NVIDIA NIM have you use it?
@johannesjolkkonen5 ай бұрын
Thanks everyone for the positive feedback! As many are asking, will share the code within the next 1-2 days, just want to structure it a bit better and write a short README first
@hklcrissun5 ай бұрын
Thank you very much Johannes for sharing! Looking forward!
@dangauerke5 ай бұрын
Thanks Johannes!
@DeepakVijaykumar-v9i5 ай бұрын
Excellent work Johannes! Looking forward to play with the code when you are ready to share. Thanks !!
@AG3D-b4 күн бұрын
The quality of this video is amazing! I have only a handfull of subscriptions and I immediatly subscribed to your channel after watching this video. No ads, no bullshit. Just clear and very interesting information. Wow!
@johannesjolkkonen3 күн бұрын
Thank you, much appreciated!
@john_blues5 ай бұрын
Thanks for showing a practical business use case. Very helpful.
@babusivaprakasam9846Ай бұрын
You are Pro mate!. Respect your effort in making. Well done. We have a built a similar solution but configurable for new templates.
@Independent_AI5 ай бұрын
Sharing code is invaluable. ♥️
@aradhanachaturvedi33522 ай бұрын
Thanks for this video, we have also similar tool for report generation. However I would like to know how can we generalize this for different types of report? We are using simple RAG to handle generalization you have any other suggestions?because every report can have different section and writing code for all makes it difficult?
@VisibleProjects5 ай бұрын
This is awesome Johannes - I think the approach you've taken (and crediting Jason Liu's work) is valid - the report itself has significant value. How can you 'protect' the data that is provided? The company information that is being queried in the LLM contains what might be sensitive company information - how do you know that it isn't being exposed for access by competitors or others?
@johannesjolkkonen5 ай бұрын
Thank you! Regarding data protection, there's no particular risk of such exposure with LLMs. OpenAI and Anthropic both have it in their terms to not train models on API inputs or outputs, and also have robust security compliances (including SOC2 and HIPAA, which are 2 of the most common certifications that companies look for.) (links: trust.openai.com/, support.anthropic.com/en/collections/4078534-privacy-legal) There's also the option to use OpenAI's models via Azure, and Anthropic's via AWS. The guarantees are technically the same as above, but these major cloud platforms just have a longer track-record of trust and security behind them. So that's typically the go-to with more sensitive clients, like in my last 2 projects which were done for a bank and a major healthcare provider. But for most situations, using the APIs directly is perfectly fine. No more risky than any other SaaS, CRM or database the company is already using for their data. Might make a more detailed video about this at some point, as it is something that comes up quite often
@artur505 ай бұрын
@@johannesjolkkonenwill it be possible to run it with local stuff such as Ollama or LM studio ? OpenAI compatible API solution provided in the code?
@johannesjolkkonen5 ай бұрын
@@artur50 Yup, all the LLMs used here (OpenAI, Anthropic, Groq for Llama3.1) follow the same OpenAI 'standard', so works with Ollama/LMstudio with very minimal adjustments
@medomed11055 ай бұрын
It is very interesting ❤ Thanks so much If there is a possibility to explain the project in detail, it will be appreciated
@muhammadimranrafique47785 ай бұрын
Thank you so much , excited to build AI applications and automations for our business.plz share repo link.
@Independent_AI5 ай бұрын
Excellent job 👏🏻
@bhaskarreddy29905 ай бұрын
Can u share the GitHub link of the project?
@petersmith81535 ай бұрын
Will you release the source? Would save me shit loads of timr
@johannesjolkkonen5 ай бұрын
@@petersmith8153 Done, repo is now in the description and pinned comment (:
@AA-rd6nm5 ай бұрын
Amazing work🎉🎉
@nsimiInconissimi5 ай бұрын
Hi, Is it possible to use programmes like "Make" or "Zapier" to automate this kind of process ? Thank you .
@johannesjolkkonen5 ай бұрын
Not really, no. While you can run custom code on those platforms, that custom code can't use any external libraries (such as DocxTemplater, which is crucial here for the actual document creation). Then there's also stuff around handling the data structures, doing parallel API calls and validating the LLM-outputs, just to name a few, that I think would be impossible to do in no/low-code