meta-llama / llama-stack-apps
Agentic components of the Llama Stack APIs
https://github.com/meta-llama/llama-stack-apps
Agentic components of the Llama Stack APIs
https://github.com/meta-llama/llama-stack-apps
GitHub
GitHub - meta-llama/llama-stack-apps: Agentic components of the Llama Stack APIs
Agentic components of the Llama Stack APIs. Contribute to meta-llama/llama-stack-apps development by creating an account on GitHub.
We're thinking of rewriting our go / java API in python, what do we need to think about?
https://www.reddit.com/r/Python/comments/1gdavp9/were_thinking_of_rewriting_our_go_java_api_in/
https://www.reddit.com/r/Python/comments/1gdavp9/were_thinking_of_rewriting_our_go_java_api_in/
Reddit
From the Python community on Reddit
Explore this post and more from the Python community
You Should Probably Pay Attention to Tokenizers
This article emphasizes the importance of understanding tokenizers in AI applications, particularly for Retrieval-augmented generation (RAG) systems. The author demonstrates how different tokenizers handle various types of text input, including emojis and misspelled words, and explains how tokenization affects embedding quality and overall performance in natural language processing tasks.
https://cybernetist.com/2024/10/21/you-should-probably-pay-attention-to-tokenizers/
This article emphasizes the importance of understanding tokenizers in AI applications, particularly for Retrieval-augmented generation (RAG) systems. The author demonstrates how different tokenizers handle various types of text input, including emojis and misspelled words, and explains how tokenization affects embedding quality and overall performance in natural language processing tasks.
https://cybernetist.com/2024/10/21/you-should-probably-pay-attention-to-tokenizers/
Cybernetist
You Should Probably Pay Attention to Tokenizers
Last week I was helping a friend of mine to get one of his new apps off the ground. I can’t speak much about it at the moment,
other than like most apps nowadays it has some AI sprinkled over …
other than like most apps nowadays it has some AI sprinkled over …
Python Threading Tutorial: Basic to Advanced (Multithreading, Pool Executors, Daemon, Lock, Events)
https://www.reddit.com/r/Python/comments/1gj177a/python_threading_tutorial_basic_to_advanced/
https://www.reddit.com/r/Python/comments/1gj177a/python_threading_tutorial_basic_to_advanced/
Reddit
From the Python community on Reddit: Python Threading Tutorial: Basic to Advanced (Multithreading, Pool Executors, Daemon, Lock…
Explore this post and more from the Python community
PyBay 2024 Videos
The talks from PyBay 2024 are now available online.
https://www.youtube.com/playlist?list=PL85KuAjbN_gvx5b_BgLVcKfccnlZAVPMk
The talks from PyBay 2024 are now available online.
https://www.youtube.com/playlist?list=PL85KuAjbN_gvx5b_BgLVcKfccnlZAVPMk
YouTube
PyBay 2024
PyBay is an annual conference gathering of Pythonistas put on by the Bay Area Python Association. PyBay 2024 was our 9th annual event, held on September 21, ...
From Python to CPU instructions: Part 1
In the first part of a two-part series, we’ll compare the same program written in C and Python to reveal what Python hides from us.
https://dilovan.substack.com/p/from-python-to-cpu-instructions-part
In the first part of a two-part series, we’ll compare the same program written in C and Python to reveal what Python hides from us.
https://dilovan.substack.com/p/from-python-to-cpu-instructions-part
Thoughts on Data
From Python to CPU instructions: Part 1
This post, is what happens, when you get an intrusive thought about how your computer works, in the middle of the night.
Avaiga / taipy
Turns Data and AI algorithms into production-ready web applications in no time.
https://github.com/Avaiga/taipy
Turns Data and AI algorithms into production-ready web applications in no time.
https://github.com/Avaiga/taipy
GitHub
GitHub - Avaiga/taipy: Turns Data and AI algorithms into production-ready web applications in no time.
Turns Data and AI algorithms into production-ready web applications in no time. - Avaiga/taipy
Investigation of a Workbench UI Latency Issue
Netflix engineers investigated a JupyterLab UI latency issue in their Workbench product, tracing it to an unexpected interaction between a resource usage extension and memory allocation. The root cause was identified as the extension's performance degrading linearly with increased virtual memory usage, despite available physical memory.
https://netflixtechblog.com/investigation-of-a-workbench-ui-latency-issue-faa017b4653d
Netflix engineers investigated a JupyterLab UI latency issue in their Workbench product, tracing it to an unexpected interaction between a resource usage extension and memory allocation. The root cause was identified as the extension's performance degrading linearly with increased virtual memory usage, despite available physical memory.
https://netflixtechblog.com/investigation-of-a-workbench-ui-latency-issue-faa017b4653d
Medium
Investigation of a Workbench UI Latency Issue
By: Hechao Li and Marcelo Mayworm
Adding keyboard shortcuts to the Python REPL
The article discusses how to enhance the Python REPL (Read-Eval-Print Loop) by adding custom keyboard shortcuts to improve efficiency and user experience. It provides step-by-step instructions for implementing these shortcuts, enabling users to navigate and execute commands more effectively.
https://treyhunner.com/2024/10/adding-keyboard-shortcuts-to-the-python-repl/
The article discusses how to enhance the Python REPL (Read-Eval-Print Loop) by adding custom keyboard shortcuts to improve efficiency and user experience. It provides step-by-step instructions for implementing these shortcuts, enabling users to navigate and execute commands more effectively.
https://treyhunner.com/2024/10/adding-keyboard-shortcuts-to-the-python-repl/
Treyhunner
Adding keyboard shortcuts to the Python REPL
I talked about the new Python 3.13 REPL a few months ago and after 3.13 was released.
I think it’s awesome. I’d like to share a secret …
I think it’s awesome. I’d like to share a secret …
Zero Downtime Django Deployments with Multistep Database Changes
Preventing downtime during deployments is crucial for maintaining service availability and ensuring a positive user experience. Blue-green deployments have emerged as a popular strategy to achieve this goal. However, they introduce challenges, especially when dealing with database changes. This article delves into what blue-green deployments are, why database changes can be tricky in thi...
https://johnnymetz.com/posts/multistep-database-changes/
Preventing downtime during deployments is crucial for maintaining service availability and ensuring a positive user experience. Blue-green deployments have emerged as a popular strategy to achieve this goal. However, they introduce challenges, especially when dealing with database changes. This article delves into what blue-green deployments are, why database changes can be tricky in thi...
https://johnnymetz.com/posts/multistep-database-changes/
Johnny Metz
Zero Downtime Django Deployments with Multistep Database Changes
Preventing downtime during deployments is crucial for maintaining service availability and ensuring a positive user experience. Blue-green deployments have emerged as a popular strategy to achieve this goal. However, they introduce challenges, especially…