Skip to content

Commit 3b1ef9f

Browse files
author
Jet Xu
committed
Changes to be committed:
modified: CHANGELOG.md modified: llama_github/llm_integration/initial_load.py modified: llama_github/version.py modified: setup.cfg
1 parent e072495 commit 3b1ef9f

File tree

4 files changed

+8
-3
lines changed

4 files changed

+8
-3
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.3.0] - 2025-05-25
9+
10+
### Optimized
11+
- Upgrade to mistral-small-medium
12+
813
## [0.2.8] - 2025-03-19
914

1015
### Optimized

llama_github/llm_integration/initial_load.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ def __init__(self,
6767
elif mistral_api_key is not None and mistral_api_key != "" and self.llm is None:
6868
logger.info("Initializing Codestral API...")
6969
from langchain_mistralai.chat_models import ChatMistralAI
70-
self.llm = ChatMistralAI(mistral_api_key=mistral_api_key, model="open-mistral-nemo")
70+
self.llm = ChatMistralAI(mistral_api_key=mistral_api_key, model="mistral-medium-2505")
7171
self.llm_simple = ChatMistralAI(
7272
mistral_api_key=mistral_api_key,
7373
model="mistral-small-latest",

llama_github/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '0.2.9'
1+
__version__ = '0.3.0'

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = llama-github
3-
version = 0.2.9
3+
version = 0.3.0
44
author = Jet Xu
55
author_email = [email protected]
66
description = Llama-github is an open-source Python library that empowers LLM Chatbots, AI Agents, and Auto-dev Agents to conduct Retrieval from actively selected GitHub public projects. It Augments through LLMs and Generates context for any coding question, in order to streamline the development of sophisticated AI-driven applications.

0 commit comments

Comments
 (0)