In Feluda, functionalities are abstracted into something we call operators, which are built keeping in mind the need to process data in various modalities (text, audio, video, images, hybrid) and various languages. You can think of operators as plugins that you can mix and match to perform different analysis on your data. This abstraction also allows others to write operators for their unique use case and use them within Feluda.
Feluda acts like a conductor in an orchestra where it brings together all the operators to let them do their function. For example, if you wish to cluster large amounts of videos, then operators will help you convert a video to an embedding, and then use embeddings to cluster them. While we encourage the community to build and use their own operators, we also provide some core operators out of the box with Feluda, which are maintained within the same Feluda repository.
In a monorepo with multiple Python packages we wanted a dynamic system that could automatically maintain and update package versions. As manually tracking changes and version numbers is tedious and not manageable as number of packages increase, we needed a solution that could:
Here is a demo folder structure we wanted to cater too
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
.(root)
├── package1/
│ ├── package1.py
│ ├── test_package1.py
│ ├── pyproject.toml
│ └── README.md
├── package2/
│ ├── package2.py
│ ├── test_package2.py
│ ├── pyproject.toml
│ └── README.md
└── package3/
├── package3.py
├── test_package3.py
├── pyproject.toml
└── README.md
We wrote a custom script (github action) that analyzes commit messages between two git commits and automatically handles version management. Here's how it works:
Package Discovery
The script starts by discovering all Python packages located in our monorepo. It looks for packages in two locations:
Each package must have a valid pyproject.toml file containing the current version number.
Analyzing Changes
For each package, the script:
The commit analysis follows these rules:
Version Management
Once the script determines the necessary version bump, it:
The script also includes comprehensive error handling to ensure reliability, it validates repository paths and package structures, handles missing or malformed pyproject.toml files, manages git command failures gracefully and provides clear error messages for troubleshooting.
To make the most of this automation:
1
2
3
feat: add new feature
fix: resolve bug
chore: update dependencies
1
2
[tool.semantic_release.branches.main]
tag_format = "{name}-{version}"
1
python semantic_release_workflow.py <previous_commit> <current_commit>
This automated approach offers several advantages: