Prateek Joshiforprateekjoshi.hashnode.dev路Jan 24, 2025How We Built a Scalable FastAPI Backend for Our AI Product: Zero to Production馃枛 Prateek Joshi and Akhil Kalwakurthy As AI engineers building complex machine learning systems, we often face a critical challenge: creating backend infrastructure that's both performant enough for real-time AI processing and maintainable enough fo...1 like路46 readsBuilding Your AI Blog Assistant: From Development to DeploymentFastAPI
Kilian Klugepragmaticnotes.hashnode.dev路May 23, 2024Exposing the package version defined in the pyproject.toml as a __version__ variableBy convention, Python packages expose their version through a __version__ variable: >>> import package >>> package.__version__ 0.4.2 Ideally, the package version should be defined in one place only. Typical approaches include hardcoding it in the pa...597 readsCheat Sheetshatch