langchain-ai / langchain
⚡ Building applications with LLMs through composability ⚡
https://github.com/langchain-ai/langchain
⚡ Building applications with LLMs through composability ⚡
https://github.com/langchain-ai/langchain
GitHub
GitHub - langchain-ai/langchain: 🦜🔗 Build context-aware reasoning applications
🦜🔗 Build context-aware reasoning applications. Contribute to langchain-ai/langchain development by creating an account on GitHub.
ProAgent
From Robotic Process Automation to Agentic Process Automation.
https://github.com/OpenBMB/ProAgent
From Robotic Process Automation to Agentic Process Automation.
https://github.com/OpenBMB/ProAgent
GitHub
GitHub - OpenBMB/ProAgent: An LLM-based Agent for the New Automation Paradigm - Agentic Process Automation
An LLM-based Agent for the New Automation Paradigm - Agentic Process Automation - OpenBMB/ProAgent
Subtitle
Open-source subtitle generation for seamless content translation.
https://github.com/innovatorved/subtitle
Open-source subtitle generation for seamless content translation.
https://github.com/innovatorved/subtitle
GitHub
GitHub - innovatorved/subtitle: Open-source subtitle generation for seamless content translation.
Open-source subtitle generation for seamless content translation. - innovatorved/subtitle
Building a Bootstrap styled form in vanilla Django
In this post, David Smith explores creating a Bootstrap-styled form in vanilla Django without relying on third-party packages. He discusses customizing form widgets, adding CSS classes, and creating a custom field template.
https://smithdc.uk/blog/2023/bootstrap_form_in_vanilla_django
In this post, David Smith explores creating a Bootstrap-styled form in vanilla Django without relying on third-party packages. He discusses customizing form widgets, adding CSS classes, and creating a custom field template.
https://smithdc.uk/blog/2023/bootstrap_form_in_vanilla_django
Show HN: Python-Type-Challenges, master Python typing with online exercises
https://python-type-challenges.zeabur.app/
https://python-type-challenges.zeabur.app/
python-type-challenges.zeabur.app
Python Type Challenges - Learn & Master Type
Hints
Hints
Learn Python typing (type hints) with interactive online
exercises!
exercises!
autometrics-py
Easily add metrics to your code that actually help you spot and debug issues in production. Built on Prometheus and OpenTelemetry.
https://github.com/autometrics-dev/autometrics-py
Easily add metrics to your code that actually help you spot and debug issues in production. Built on Prometheus and OpenTelemetry.
https://github.com/autometrics-dev/autometrics-py
GitHub
GitHub - autometrics-dev/autometrics-py: Easily add metrics to your code that actually help you spot and debug issues in production.…
Easily add metrics to your code that actually help you spot and debug issues in production. Built on Prometheus and OpenTelemetry. - autometrics-dev/autometrics-py
Running Python Parallel Applications with Sub Interpreters
Python 3.12 introduced a new API for “sub interpreters”, which are a different parallel execution model for Python that provide a nice compromise between the true parallelism of multiprocessing, but with a much faster startup time. This post will explain what a sub interpreter is, why it’s important for parallel code execution in Python and how it compares with other approaches.
https://tonybaloney.github.io/posts/sub-interpreter-web-workers.html
Python 3.12 introduced a new API for “sub interpreters”, which are a different parallel execution model for Python that provide a nice compromise between the true parallelism of multiprocessing, but with a much faster startup time. This post will explain what a sub interpreter is, why it’s important for parallel code execution in Python and how it compares with other approaches.
https://tonybaloney.github.io/posts/sub-interpreter-web-workers.html
tonybaloney.github.io
Running Python Parallel Applications with Sub Interpreters
An exploration into the possibility of running a parallel application using sub interpreters
huggingface / alignment-handbook
Robust recipes for to align language models with human and AI preferences
https://github.com/huggingface/alignment-handbook
Robust recipes for to align language models with human and AI preferences
https://github.com/huggingface/alignment-handbook
GitHub
GitHub - huggingface/alignment-handbook: Robust recipes to align language models with human and AI preferences
Robust recipes to align language models with human and AI preferences - huggingface/alignment-handbook
Meditron
Meditron is a suite of open-source medical Large Language Models (LLMs).
https://github.com/epfLLM/meditron
Meditron is a suite of open-source medical Large Language Models (LLMs).
https://github.com/epfLLM/meditron
GitHub
GitHub - epfLLM/meditron: Meditron is a suite of open-source medical Large Language Models (LLMs).
Meditron is a suite of open-source medical Large Language Models (LLMs). - epfLLM/meditron
Announcing the Flask Mega-Tutorial, 2024 Edition
Today I'm super-excited to share that I have made available a major update to the Flask ...
http://blog.miguelgrinberg.com/post/announcing-the-flask-mega-tutorial-2024-edition
Today I'm super-excited to share that I have made available a major update to the Flask ...
http://blog.miguelgrinberg.com/post/announcing-the-flask-mega-tutorial-2024-edition
Miguelgrinberg
Announcing the Flask Mega-Tutorial, 2024 Edition
Today I'm super-excited to share that I have made available a major update to the Flask Mega-Tutorial, which I'm calling the "2024 Edition".In the following sections I'll re-introduce the tutorial in…
A simple WebSocket benchmark in Python
https://lemire.me/blog/2023/11/28/a-simple-websocket-benchmark-in-python
https://lemire.me/blog/2023/11/28/a-simple-websocket-benchmark-in-python
kanban-python
A Terminal Kanban Application written in Python to boost your productivity.
https://github.com/Zaloog/kanban-python
A Terminal Kanban Application written in Python to boost your productivity.
https://github.com/Zaloog/kanban-python
GitHub
GitHub - Zaloog/kanban-python: Kanban Terminal App written in Python
Kanban Terminal App written in Python. Contribute to Zaloog/kanban-python development by creating an account on GitHub.
Flask-Muck
Flask-Muck is a batteries-included framework for automatically generating RESTful APIs with Create, Read, Update and Delete (CRUD) endpoints in a Flask/SqlAlchemy application stack.
https://github.com/dtiesling/flask-muck
Flask-Muck is a batteries-included framework for automatically generating RESTful APIs with Create, Read, Update and Delete (CRUD) endpoints in a Flask/SqlAlchemy application stack.
https://github.com/dtiesling/flask-muck
GitHub
GitHub - dtiesling/flask-muck: 🧹 Flask REST framework for generating CRUD APIs and OpenAPI specs in the SQLAlchemy, Marshmallow/Pydantic…
🧹 Flask REST framework for generating CRUD APIs and OpenAPI specs in the SQLAlchemy, Marshmallow/Pydantic application stack. - dtiesling/flask-muck
CPython Object System Internals: Understanding the Role of PyObject
Understand how objects are implemented in CPython and how CPython emulates Inheritance and Polymorphism in C using struct embedding.
https://codeconfessions.substack.com/p/cpython-object-system-internals-understanding
Understand how objects are implemented in CPython and how CPython emulates Inheritance and Polymorphism in C using struct embedding.
https://codeconfessions.substack.com/p/cpython-object-system-internals-understanding
Substack
CPython Object System Internals: Understanding the Role of PyObject
Understand how objects are implemented in CPython and how CPython emulates Inheritance and Polymorphism in C using struct embedding