Skip to content

Commit

Permalink
Upgrade to mistral-large-2411
Browse files Browse the repository at this point in the history
  • Loading branch information
Jet Xu committed Nov 24, 2024
1 parent 00d58e1 commit 0839dcd
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.2.3] - 2024-11-24

### Optimized
- Upgrade to mistral-large-2411

## [0.2.2] - 2024-11-19

### Optimized
Expand Down
2 changes: 1 addition & 1 deletion llama_github/data_retrieval/github_entities.py
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ def get_file_content(self, file_path: str, sha: Optional[str] = None) -> Optiona
'.gitattributes', '.gitmodules',

# Documentation and resource files
'.min.js', '.min.css', '.map', '.po', '.mo', '.pot',
'.min.js', '.min.css', '.map', '.po', '.mo', '.pot', '.drawio',
'.ttf', '.otf', '.eot', '.woff', '.woff2', # Fonts

# Configuration and data files
Expand Down
2 changes: 1 addition & 1 deletion llama_github/llm_integration/initial_load.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ def __init__(self,
self.model_type = "Custom_langchain_llm"
elif mistral_api_key is not None and mistral_api_key != "" and self.llm is None:
logger.info("Initializing Mistral API...")
self.llm = ChatMistralAI(mistral_api_key=mistral_api_key, model="mistral-large-2407")
self.llm = ChatMistralAI(mistral_api_key=mistral_api_key, model="mistral-large-2411")
self.llm_simple = ChatMistralAI(mistral_api_key=mistral_api_key, model="open-mistral-nemo")
self.model_type = "OpenAI"
elif openai_api_key is not None and openai_api_key != "" and self.llm is None:
Expand Down
2 changes: 1 addition & 1 deletion llama_github/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '0.2.2'
__version__ = '0.2.3'
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = llama-github
version = 0.2.2
version = 0.2.3
author = Jet Xu
author_email = [email protected]
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.
Expand Down

0 comments on commit 0839dcd

Please sign in to comment.