microsoft / sample-app-aoai-chatGPT
PREVIEW Sample code for a simple web chat experience targeting chatGPT through AOAI.
https://github.com/microsoft/sample-app-aoai-chatGPT
PREVIEW Sample code for a simple web chat experience targeting chatGPT through AOAI.
https://github.com/microsoft/sample-app-aoai-chatGPT
GitHub
GitHub - microsoft/sample-app-aoai-chatGPT: Sample code for a simple web chat experience through Azure OpenAI, including Azure…
Sample code for a simple web chat experience through Azure OpenAI, including Azure OpenAI On Your Data. - microsoft/sample-app-aoai-chatGPT
edge-tts
Use Microsoft Edge's online text-to-speech service from Python WITHOUT needing Microsoft Edge or Windows or an API key.
https://github.com/rany2/edge-tts
Use Microsoft Edge's online text-to-speech service from Python WITHOUT needing Microsoft Edge or Windows or an API key.
https://github.com/rany2/edge-tts
GitHub
GitHub - rany2/edge-tts: Use Microsoft Edge's online text-to-speech service from Python WITHOUT needing Microsoft Edge or Windows…
Use Microsoft Edge's online text-to-speech service from Python WITHOUT needing Microsoft Edge or Windows or an API key - rany2/edge-tts
Package Management in the Python extension for Visual Studio Code
The Python extension in VS Code is investigating ways to improve our package management support and have completed a comparison of support offered by various package management tools.
https://devblogs.microsoft.com/python/python-package-management-proposal/
The Python extension in VS Code is investigating ways to improve our package management support and have completed a comparison of support offered by various package management tools.
https://devblogs.microsoft.com/python/python-package-management-proposal/
Microsoft News
Package Management in the Python extension for Visual Studio Code
The Python extension in VS Code is investigating ways to improve our package management support and have completed a comparison of support offered by various package management tools.
s0md3v / sd-webui-roop
roop extension for StableDiffusion web-ui
https://github.com/s0md3v/sd-webui-roop
roop extension for StableDiffusion web-ui
https://github.com/s0md3v/sd-webui-roop
GitHub
GitHub - s0md3v/sd-webui-roop: roop extension for StableDiffusion web-ui
roop extension for StableDiffusion web-ui. Contribute to s0md3v/sd-webui-roop development by creating an account on GitHub.
Python: Profile a section of code with cProfile
The article describes how to use the cProfile module to profile a section of Python code. The cProfile module provides a detailed breakdown of the time spent in each function in the profiled code.
https://adamj.eu/tech/2023/07/23/python-profile-section-cprofile/
The article describes how to use the cProfile module to profile a section of Python code. The cProfile module provides a detailed breakdown of the time spent in each function in the profiled code.
https://adamj.eu/tech/2023/07/23/python-profile-section-cprofile/
adamj.eu
Python: Profile a section of code with cProfile - Adam Johnson
When trying to improve a slow function or module, it’s always a good idea to profile it. Here’s a snippet for quickly profiling a section of code with Python’s cProfile module, in two flavours. It’s adapted from the cProfile documentation’s Profile example.…
Overcoming Performance Bottlenecks with Async Python: A Deep Dive into CPU-Bound Code
The article discusses how to overcome performance bottlenecks in CPU-bound code using asynchronous programming in Python. The author provides a deep dive into the concepts of asynchronous programming and how they can be used to improve the performance of CPU-bound code.
https://medium.com/@DorIndivo/overcoming-performance-bottlenecks-with-async-python-a-deep-dive-into-cpu-bound-code-b604a400255a
The article discusses how to overcome performance bottlenecks in CPU-bound code using asynchronous programming in Python. The author provides a deep dive into the concepts of asynchronous programming and how they can be used to improve the performance of CPU-bound code.
https://medium.com/@DorIndivo/overcoming-performance-bottlenecks-with-async-python-a-deep-dive-into-cpu-bound-code-b604a400255a
Medium
Identifying CPU-Bound Code in Asynchronous Python Web Applications
In today’s data-driven world, feature stores have become a vital component of machine learning pipelines and models in production, enabling…
Pathlib for Path Manipulations
pathlib is an interesting, object-oriented take on the filesystem paths. With plenty of functions to create, delete, move, rename, read, write, find, or split files, pathlib is an excellent replacement for the os module. But is it faster?
https://switowski.com/blog/pathlib/
pathlib is an interesting, object-oriented take on the filesystem paths. With plenty of functions to create, delete, move, rename, read, write, find, or split files, pathlib is an excellent replacement for the os module. But is it faster?
https://switowski.com/blog/pathlib/
Sebastian Witowski
Pathlib for Path Manipulations
pathlib is an interesting, object-oriented take on the filesystem paths. With plenty of functions to create, delete, move, rename, read, write, find, or split files, pathlib is an excellent replacement for the os module. But is it faster?
Building a simple but advanced Jsonic language using Python
The article outlines the development process of Jsonic, a custom JSON-like language, from its simple form to more advanced features, providing insights into language design and parsing techniques. It showcases how the language evolves and gains complexity while maintaining its JSON-like structure and usefulness for specific use cases.
https://www.linkedin.com/pulse/building-simple-advanced-jsonic-language-aleksandar-milenkovic/
The article outlines the development process of Jsonic, a custom JSON-like language, from its simple form to more advanced features, providing insights into language design and parsing techniques. It showcases how the language evolves and gains complexity while maintaining its JSON-like structure and usefulness for specific use cases.
https://www.linkedin.com/pulse/building-simple-advanced-jsonic-language-aleksandar-milenkovic/
Linkedin
Building a simple but advanced Jsonic language
Prerequisites Source code for this blog Python support Layout of this guide Motivation Introduction Character Stream Prefix Checking (peek, current, advance) Recursive Descent Error handling Skipping white space Imports From Back-end To Front-end The Object…
How to use a Python multiprocessing module
https://developers.redhat.com/articles/2023/07/27/how-use-python-multiprocessing-module
https://developers.redhat.com/articles/2023/07/27/how-use-python-multiprocessing-module
Red Hat Developer
How to use a Python multiprocessing module | Red Hat Developer
In this article, we will learn how to work with a specific Python class from the multiprocessing module, the process class. I will give you a quick overview with examples.
DialogStudio
Towards Richest and Most Diverse Unified Dataset Collection and Instruction-Aware Models for Conversational AI.
https://github.com/salesforce/DialogStudio
Towards Richest and Most Diverse Unified Dataset Collection and Instruction-Aware Models for Conversational AI.
https://github.com/salesforce/DialogStudio
GitHub
GitHub - salesforce/DialogStudio: DialogStudio: Towards Richest and Most Diverse Unified Dataset Collection and Instruction-Aware…
DialogStudio: Towards Richest and Most Diverse Unified Dataset Collection and Instruction-Aware Models for Conversational AI - salesforce/DialogStudio
Customize Django Admin Interface
Django admin panel is one of the biggest strengths on Django. It allows quickly have interface access data stored in DB, have forms to add and edit data and manage users. But since in its default state Django Admin Site is quite basic, so in this article I want to go over all the ways to make the most out of it by customizing it.
https://appliku.com/post/customize-django-admin-interface
Django admin panel is one of the biggest strengths on Django. It allows quickly have interface access data stored in DB, have forms to add and edit data and manage users. But since in its default state Django Admin Site is quite basic, so in this article I want to go over all the ways to make the most out of it by customizing it.
https://appliku.com/post/customize-django-admin-interface
Appliku
Customize Django Admin Interface
Learn how to customize Django admin interface: forms, theme, make it more secure by changing the URL and make it more powerful and convenient
LPython: Novel, Fast, Retargetable Python Compiler
https://lpython.org/blog/2023/07/lpython-novel-fast-retargetable-python-compiler/
https://lpython.org/blog/2023/07/lpython-novel-fast-retargetable-python-compiler/
LPython
LPython: Novel, Fast, Retargetable Python Compiler
About LPython is a Python compiler that can compile type-annotated Python code to optimized machine code. LPython offers several backends such as LLVM, C, C++, WASM, Julia and x86. LPython features …
rag-stack
Deploy a private ChatGPT alternative hosted within your VPC. Connect it to your organization's knowledge base and use it as a corporate oracle. Supports open-source LLMs like Llama 2, Falcon, and GPT4All.
https://github.com/psychic-api/rag-stack
Deploy a private ChatGPT alternative hosted within your VPC. Connect it to your organization's knowledge base and use it as a corporate oracle. Supports open-source LLMs like Llama 2, Falcon, and GPT4All.
https://github.com/psychic-api/rag-stack
GitHub
GitHub - finic-ai/rag-stack: 🤖 Deploy a private ChatGPT alternative hosted within your VPC. 🔮 Connect it to your organization's…
🤖 Deploy a private ChatGPT alternative hosted within your VPC. 🔮 Connect it to your organization's knowledge base and use it as a corporate oracle. Supports open-source LLMs like Llama 2, F...
0xpayne / gpt-migrate
Easily migrate your codebase from one framework or language to another.
https://github.com/0xpayne/gpt-migrate
Easily migrate your codebase from one framework or language to another.
https://github.com/0xpayne/gpt-migrate
GitHub
GitHub - joshpxyne/gpt-migrate: Easily migrate your codebase from one framework or language to another.
Easily migrate your codebase from one framework or language to another. - joshpxyne/gpt-migrate
AutoChain
Build lightweight, extensible, and testable LLM Agents.
https://github.com/Forethought-Technologies/AutoChain
Build lightweight, extensible, and testable LLM Agents.
https://github.com/Forethought-Technologies/AutoChain
GitHub
GitHub - Forethought-Technologies/AutoChain: AutoChain: Build lightweight, extensible, and testable LLM Agents
AutoChain: Build lightweight, extensible, and testable LLM Agents - Forethought-Technologies/AutoChain
Finding and fixing insecure direct object references in Python
In this post, we'll review common patterns and types of IDOR vulnerabilities and how to protect against them.
https://snyk.io/blog/insecure-direct-object-references-python/
In this post, we'll review common patterns and types of IDOR vulnerabilities and how to protect against them.
https://snyk.io/blog/insecure-direct-object-references-python/
Snyk
Finding and fixing insecure direct object references in Python | Snyk
In this post, we'll review common patterns and types of IDOR vulnerabilities and how to protect against them.