A Python package for embedding and analyzing code changes in git repositories.
Project description
Beatrica Embedding
beatrica-embedding
is a Python package designed to embed and analyze code changes in git repositories, utilizing Language Learning Models (LLMs) for enhanced insights. It allows seamless switching between different LLMs, making it highly adaptable for various code analysis needs.
Installation
To install beatrica-embedding
, use pip:
pip install beatrica-embedding
Usage
beatrica-embedding
offers a flexible way to analyze commit changes and generate insights using different LLMs. Below is an example demonstrating how to extract commit changes from a repository and process them with a chosen LLM.
Extracting and Embedding Code Changes with LLM
from beatrica_git.recent_change_inspector import BeatricaDiffTracker
from beatrica_embedding.embedding_generator import BeatricaCodeChangeProcessor
from langchain_openai import ChatOpenAI
from langchain_mistralai.chat_models import ChatMistralAI
# Extract commit changes from a git repository
beatrica_diff_tracker = BeatricaDiffTracker(base_branch="main")
# Analyze the commits
beatrica_diff_tracker.analyze_commits()
# Get the commit changes
commit_changes = beatrica_diff_tracker.commit_changes.items()
# Choose the LLM for processing
# language_model = ChatOpenAI(model_name="gpt-4-0125-preview", api_key=os.getenv("OPENAI_API_KEY"), max_tokens=1000)
language_model = ChatMistralAI(model="mistral-medium-latest", mistral_api_key=os.getenv("MISTRAL_API_KEY"), max_tokens=500)
code_change_processor = BeatricaCodeChangeProcessor(commit_changes, language_model=language_model)
# Process the commit changes
retrieval_chain = code_change_processor.process()
# Example query to analyze the changes
question = "What are the changes in the following code?"
print(question)
result = retrieval_chain(question)
answer = result['answer']
print(answer)
Features
- Flexible integration with multiple LLMs for code change analysis.
- Easy to switch between models like OpenAI's GPT or MistralAI for different levels of analysis.
- Embedding and analyzing commit changes in git repositories for enhanced insights.
- Supports detailed analysis of code changes, leveraging the power of conversational models.
Contributing
Contributions, issues, and feature requests are welcome! Feel free to check the issues page.
License
This project is licensed under the MIT License.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file beatrica-embedding-0.1.1.tar.gz
.
File metadata
- Download URL: beatrica-embedding-0.1.1.tar.gz
- Upload date:
- Size: 5.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d6c84822abb99fa059c34b865cd36e82a4385aa27c72e91b4f6ab4921f714c4f |
|
MD5 | ae9f064f64d6d2f4cd5ee1ca00c500c5 |
|
BLAKE2b-256 | 5eea440218b666d52d41c899ac2bf0241a9b615c495329a12672cf107416b9d9 |
File details
Details for the file beatrica_embedding-0.1.1-py3-none-any.whl
.
File metadata
- Download URL: beatrica_embedding-0.1.1-py3-none-any.whl
- Upload date:
- Size: 6.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7af69838096434223913ccc71449d355f7f7436376d99841bb59caba34b357f7 |
|
MD5 | 12ddac96c6e58afdc89db44c928f28fd |
|
BLAKE2b-256 | 2f707d79ce1987fa4931a1f78fffdd9a83fe1c0dfe962f58346d792b2ef30991 |