Sertaç Özercan

384 posts

Sertaç Özercan banner
Sertaç Özercan

Sertaç Özercan

@sozercan

👋 Software Engineering Manager @Azure

San Francisco, CA Beigetreten Nisan 2008
527 Folgt517 Follower
Sertaç Özercan retweetet
AlternativeTo
AlternativeTo@AlternativeTo·
An open-source YouTube Music client for macOS built with Swift and SwiftUI, featuring Liquid Glass UI, lyrics, background audio, and on device Apple Intelligence alternativeto.net/software/kaset… @sozercan
AlternativeTo tweet media
English
3
26
286
16.5K
Daniel Nguyen
Daniel Nguyen@daniel_nguyenx·
Me: My startup is profitable now. 100% bootstrapped. My non-tech friends:
Daniel Nguyen tweet media
English
59
20
1.3K
132.5K
@cpuguy83.bsky.social
@cpuguy83.bsky.social@cpuguy83·
Docs are so when people complain "why isn't this written down somewhere?" you can invalidate their ire with a link.
English
1
0
4
523
Sertaç Özercan
Sertaç Özercan@sozercan·
#Llama3 is out! 🦙🦙🦙 Get started to run with AIKit easily with or without GPU, without additional tooling, and #Kubernetes support: 𝗱𝗼𝗰𝗸𝗲𝗿 𝗿𝘂𝗻 -𝗱 --𝗿𝗺 -𝗽 𝟴𝟬𝟴𝟬:𝟴𝟬𝟴𝟬 𝗴𝗵𝗰𝗿.𝗶𝗼/𝘀𝗼𝘇𝗲𝗿𝗰𝗮𝗻/𝗹𝗹𝗮𝗺𝗮𝟯:𝟴𝗯 For more info 👉sozercan.github.io/aikit/
English
0
0
2
301
Alessandro Perilli
Alessandro Perilli@perilli·
@simonw Partially related: I'd love to see ready-to-deploy Docker images for all these LLMs with nothing but the API entry point. You can set it up one by yourself, but wouldn't be great if we had a library of those to choose from for endpoint deployments?
English
2
0
3
1.4K
Simon Willison
Simon Willison@simonw·
Which of the LLM API providers have the new Mixtral model?
English
19
10
172
111.3K
Sertaç Özercan retweetet
David Justice
David Justice@davidjustice·
My team @Microsoft in @Azure is hiring for a Sr. Engineer role to help build novel hypervisor isolated functions using Hyper-V, KVM, and WebAssembly. Most of the work you'd do would likely be in Rust, a little C, and probably a bit of assembly. Sound fun? jobs.careers.microsoft.com/global/en/job/…
English
6
45
135
35K
Scott Hanselman 🌮
Scott Hanselman 🌮@shanselman·
@adymitruk @JeremyCMorgan @kubuntu sure, it's a line or two regardless docker run -d --gpus=all -v ollama:/root/.ollama -p 11434:11434 --name ollama ollama/ollama docker exec -it ollama ollama run llama2
Eesti
2
1
8
8.3K
Sertaç Özercan
Sertaç Özercan@sozercan·
@ibuildthecloud @AlexJonesax I would consider: - change cadence to be less frequent - consider not merging until before release - choose what you want to merge like security fixes - group relevant updates together like k8s.io deps or GHA - consider auto merge if you are confident with CI
English
0
0
1
22
Darren Shepherd
Darren Shepherd@ibuildthecloud·
@AlexJonesax Do you have a solution? I hate this. I just stopped enabling renovate.
English
5
0
0
933
Alex
Alex@AlexJonesax·
This is 90% of OSS maintainers time spent
Alex tweet media
English
1
0
7
3K
Sertaç Özercan retweetet
Andy Roberts
Andy Roberts@andyr8939·
Spent the day looking at Project Copacetic and my mind is blown! It works so well, and everything I have thrown at it has worked and patched. Going to get this into our deployment pipelines asap! Take a look! #CloudFamily #Kubernetes github.com/project-copace…
English
3
6
16
1.6K
Patrick Loeber
Patrick Loeber@patloeber·
Want to run LLMs locally on your Laptop?🤖💻 Here's a quick overview of the 5 best frameworks to run LLMs locally: 1. Ollama Ollama allows you to run LLMs locally through your command line and is probably the easiest framework to get started with. Just use the installer or the command line to install it. Then you can type `ollama run modelname` and it starts an interactive session where you can send prompts. It supports all important models like llama2, mistral, vicunia, falcon, and many more. And trying out new models is as easy as running `ollama pull modelname`. 🔗github.com/jmorganca/olla… 2. GPT4All A free-to-use, locally running, privacy-aware chatbot. This is kind of a ChatGPT clone that comes with a nice UI and installers for every major operating system. You can also download embedding models and upload local documents that the model can use to retrieve information. 🔗github.com/nomic-ai/gpt4a… 3. PrivateGPT Similar to GPT4All, PrivateGPT also comes with a nice UI to chat with LLMs. Its focus does not lie on trying out many different models, but rather on interacting with your own documents 100% privately. It provides a nice @Gradio frontend where you can easily upload your files and then query the documents. 🔗github.com/imartinez/priv… 4. Llama.cpp LLama.cpp, created by @ggerganov, is a port of Facebook's LLaMA model in C/C++. This is probably the goat of all local LLM frameworks and to my knowledge was the first project that allowed to run LLMs easily on a MacBook.🐐 Today, it not only supports the first Llama model but also all other major LLMs. It’s also worth mentioning that thanks to this project there is a new model format - GGUF - that is used in all previously mentioned frameworks, too. So this project enables the other frameworks. It is a bit more tricky to get this running since you have to clone the repo and build it from source, and also have to obtain the model weights separately and run some scripts to convert it to the correct format. The easiest way I’ve found to get started is to download these already converted and quantized Llama 2 models from @huggingface, thanks to @TheBlokeAI: huggingface.co/TheBloke/Llama… 🔗github.com/ggerganov/llam… 5. LangChain @langchain LangChain is a framework for developing applications powered by LLMs and is not focused solely on running LLMs locally. But among its many features it also provides a whole guide about running LLMs locally. It shows how to import Ollama, Llama.cpp, and GPT4All into Langchain to build more complex applications on top of it. This approach involves more coding but it also offers the most flexibility. 🔗#llms" target="_blank" rel="nofollow noopener">python.langchain.com/docs/guides/lo… --- If you enjoyed this thread, I also have a video version with a short demo of every framework: youtu.be/5WCvGyPpWwg
YouTube video
YouTube
English
22
108
576
126K
jrrickard
jrrickard@jrrickard·
@sozercan @cpuguy83 We improved ours by adding eyes to it, so when it crashes it’s even funnier
jrrickard tweet media
English
1
0
1
50
@cpuguy83.bsky.social
@cpuguy83.bsky.social@cpuguy83·
Today the roomba didn't even make it off the charging station before it crashed (as in the software).
English
1
0
0
268