Skip to content

Commit 0f21d99

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 3b1ef9f commit 0f21d99

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ 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
8+
## [0.3.1] - 2025-05-25
99

1010
### Optimized
11-
- Upgrade to mistral-small-medium
11+
- Upgrade to mistral medium & devstral small
1212

1313
## [0.2.8] - 2025-03-19
1414

llama_github/llm_integration/initial_load.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -67,10 +67,10 @@ 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="mistral-medium-2505")
70+
self.llm = ChatMistralAI(mistral_api_key=mistral_api_key, model="mistral-medium-latest", temperature=0.3)
7171
self.llm_simple = ChatMistralAI(
72-
mistral_api_key=mistral_api_key,
73-
model="mistral-small-latest",
72+
mistral_api_key=mistral_api_key,
73+
model="devstral-small-latest",
7474
temperature=0.2
7575
)
7676
self.model_type = "OpenAI"

llama_github/version.py

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

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.3.0
3+
version = 0.3.1
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)