Skip to main content
Redhat Developers  Logo
  • Products

    Featured

    • Red Hat Enterprise Linux
      Red Hat Enterprise Linux Icon
    • Red Hat OpenShift AI
      Red Hat OpenShift AI
    • Red Hat Enterprise Linux AI
      Linux icon inside of a brain
    • Image mode for Red Hat Enterprise Linux
      RHEL image mode
    • Red Hat OpenShift
      Openshift icon
    • Red Hat Ansible Automation Platform
      Ansible icon
    • Red Hat Developer Hub
      Developer Hub
    • View All Red Hat Products
    • Linux

      • Red Hat Enterprise Linux
      • Image mode for Red Hat Enterprise Linux
      • Red Hat Universal Base Images (UBI)
    • Java runtimes & frameworks

      • JBoss Enterprise Application Platform
      • Red Hat build of OpenJDK
    • Kubernetes

      • Red Hat OpenShift
      • Microsoft Azure Red Hat OpenShift
      • Red Hat OpenShift Virtualization
      • Red Hat OpenShift Lightspeed
    • Integration & App Connectivity

      • Red Hat Build of Apache Camel
      • Red Hat Service Interconnect
      • Red Hat Connectivity Link
    • AI/ML

      • Red Hat OpenShift AI
      • Red Hat Enterprise Linux AI
    • Automation

      • Red Hat Ansible Automation Platform
      • Red Hat Ansible Lightspeed
    • Developer tools

      • Red Hat Trusted Software Supply Chain
      • Podman Desktop
      • Red Hat OpenShift Dev Spaces
    • Developer Sandbox

      Developer Sandbox
      Try Red Hat products and technologies without setup or configuration fees for 30 days with this shared Openshift and Kubernetes cluster.
    • Try at no cost
  • Technologies

    Featured

    • AI/ML
      AI/ML Icon
    • Linux
      Linux Icon
    • Kubernetes
      Cloud icon
    • Automation
      Automation Icon showing arrows moving in a circle around a gear
    • View All Technologies
    • Programming Languages & Frameworks

      • Java
      • Python
      • JavaScript
    • System Design & Architecture

      • Red Hat architecture and design patterns
      • Microservices
      • Event-Driven Architecture
      • Databases
    • Developer Productivity

      • Developer productivity
      • Developer Tools
      • GitOps
    • Secure Development & Architectures

      • Security
      • Secure coding
    • Platform Engineering

      • DevOps
      • DevSecOps
      • Ansible automation for applications and services
    • Automated Data Processing

      • AI/ML
      • Data Science
      • Apache Kafka on Kubernetes
      • View All Technologies
    • Start exploring in the Developer Sandbox for free

      sandbox graphic
      Try Red Hat's products and technologies without setup or configuration.
    • Try at no cost
  • Learn

    Featured

    • Kubernetes & Cloud Native
      Openshift icon
    • Linux
      Rhel icon
    • Automation
      Ansible cloud icon
    • Java
      Java icon
    • AI/ML
      AI/ML Icon
    • View All Learning Resources

    E-Books

    • GitOps Cookbook
    • Podman in Action
    • Kubernetes Operators
    • The Path to GitOps
    • View All E-books

    Cheat Sheets

    • Linux Commands
    • Bash Commands
    • Git
    • systemd Commands
    • View All Cheat Sheets

    Documentation

    • API Catalog
    • Product Documentation
    • Legacy Documentation
    • Red Hat Learning

      Learning image
      Boost your technical skills to expert-level with the help of interactive lessons offered by various Red Hat Learning programs.
    • Explore Red Hat Learning
  • Developer Sandbox

    Developer Sandbox

    • Access Red Hat’s products and technologies without setup or configuration, and start developing quicker than ever before with our new, no-cost sandbox environments.
    • Explore Developer Sandbox

    Featured Developer Sandbox activities

    • Get started with your Developer Sandbox
    • OpenShift virtualization and application modernization using the Developer Sandbox
    • Explore all Developer Sandbox activities

    Ready to start developing apps?

    • Try at no cost
  • Blog
  • Events
  • Videos

Use Kebechet machine learning to perform source code operations

December 24, 2020
Christoph Görn
Related topics:
DevOpsPythonArtificial intelligence

Share:

    One of the first tools we developed to help us with Project Thoth was Kebechet, which we named for the goddess of freshness and purification. As we separated our software into more and more repositories (each of our Python modules is in its own repository on GitHub), we needed help with releasing new versions and keeping all dependent modules up-to-date. In a team of two and with more than 35 repositories, our process was a major time-burner.

    Kebechet is a bit of core infrastructure code that can be extended using managers. The most important Kebechet managers are version manager and update manager. The selection of which Kebechet manager to run is configured on a per-repository basis. By using cyborg team members, we wanted interaction with the bot to feel like a human developer. GitHub Issues tells it what to do, and—if something goes wrong—these changes are guarded by pull requests. Continuous testing and code review by other team members are handled the same as code additions from humans.

    In sum, Kebechet enables robotic process automation as applied to software development. It allows humans to eliminate repetitive, boring, and error-prone tasks, by doing what developers do best. It writes a piece of code to get the job done.

    Cyborg version manager

    Cutting a release is a major task in software development, with writing release notes and publishing an artifact as the most visible act. This process is also commonly experienced as boring and time-consuming by most human developers.

    For us it was no different, which is why we created a Kebechet manager to:

    1. Increment the version string within a repository.
    2. Create a changelog snippet and add it to the changelog.md file; for example, check out the Thoth Adviser and this Adviser changelog. Since Kebechet is a cyborg, it acts like a human. To create a new release, Kebechet starts work when there is a GitHub Issue that tells the Kebechet update manager what to do. It might need to create a new major release, patch release, or calendar version (CalVer) release. As for what releases to act on, that information is (guess) written in code: _RELEASE_TITLES.
    3. Create a pull request containing the updated changelog and version string change. Again, this action is common to developers and the desired way to respond in Kebechet.
    4. If Kebechet cannot fulfill its task, it opens a GitHub issue to document what happened and what went wrong. From our point of view, this is an important feature because it helps other machine learning applications learn.

    Updates all day long

    Kebechet update manager automatically updates dependencies in a repository based on Pipfile, which is most often used, or a requirements.txt file. In this case, an update of dependencies are detected either by Kebechet as it runs on a regular interval, or they are pushed to Kebechet from within Thoth Services Red Hat runs. In its most basic implementation with Pipfile, the update manager simply resolves the Python dependencies to their latest versions and opens a pull request with the resulting Pipfile.lock.

    Evolution

    During our two years of experience with Kebechet, some of the features evolved. First, we updated the version manager because the changelog sections got pretty clumsy, especially when many automated updates occurred. With the support of a 2020 intern, we created Glyph, which uses machine learning and natural language processing to understand commit messages. This knowledge is then used for classifying commits into categories, such as bug-fixes, feature additions, improvements, and so on, and thereby creating smart changelog entries out of commit messages.

    The second major update to Kebechet’s features was the introduction of a Thoth Adviser-based update manager that updates Python dependencies using the Thoth recommendation system (see the docs or API). The repository automatically updates using the optimal Python packages for the project, without developer assistance. For any issue in the application stack, the Thamos-Advise manager opens an issue with the information and tries to resolve the issue if possible by opening a pull request.

    Conclusion

    Kebechet can automate some of the basic tasks of software development: Releases, dependency management, checking for the provenance of your application dependencies, or giving general information about your application are other features that can come in handy.

    Kebechet is simple to integrate with your GitHub project and uses machine learning to enhance the quality of its service. See http://bit.ly/kebechet-install for short installation how-to instructions.

    Feel free to contact us at GitHub or Twitter or Hangout. Let’s start a conversation!

    Last updated: December 21, 2020

    Recent Posts

    • More Essential AI tutorials for Node.js Developers

    • How to run a fraud detection AI model on RHEL CVMs

    • How we use software provenance at Red Hat

    • Alternatives to creating bootc images from scratch

    • How to update OpenStack Services on OpenShift

    Red Hat Developers logo LinkedIn YouTube Twitter Facebook

    Products

    • Red Hat Enterprise Linux
    • Red Hat OpenShift
    • Red Hat Ansible Automation Platform

    Build

    • Developer Sandbox
    • Developer Tools
    • Interactive Tutorials
    • API Catalog

    Quicklinks

    • Learning Resources
    • E-books
    • Cheat Sheets
    • Blog
    • Events
    • Newsletter

    Communicate

    • About us
    • Contact sales
    • Find a partner
    • Report a website issue
    • Site Status Dashboard
    • Report a security problem

    RED HAT DEVELOPER

    Build here. Go anywhere.

    We serve the builders. The problem solvers who create careers with code.

    Join us if you’re a developer, software engineer, web designer, front-end designer, UX designer, computer scientist, architect, tester, product manager, project manager or team lead.

    Sign me up

    Red Hat legal and privacy links

    • About Red Hat
    • Jobs
    • Events
    • Locations
    • Contact Red Hat
    • Red Hat Blog
    • Inclusion at Red Hat
    • Cool Stuff Store
    • Red Hat Summit

    Red Hat legal and privacy links

    • Privacy statement
    • Terms of use
    • All policies and guidelines
    • Digital accessibility

    Report a website issue