llama-github 0.2.9__tar.gz → 0.3.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (40) hide show
  1. {llama_github-0.2.9 → llama_github-0.3.1}/CHANGELOG.md +5 -0
  2. {llama_github-0.2.9/llama_github.egg-info → llama_github-0.3.1}/PKG-INFO +8 -1
  3. {llama_github-0.2.9 → llama_github-0.3.1}/README.md +2 -0
  4. {llama_github-0.2.9 → llama_github-0.3.1}/llama_github/llm_integration/initial_load.py +3 -3
  5. llama_github-0.3.1/llama_github/version.py +1 -0
  6. {llama_github-0.2.9 → llama_github-0.3.1/llama_github.egg-info}/PKG-INFO +8 -1
  7. {llama_github-0.2.9 → llama_github-0.3.1}/setup.cfg +1 -1
  8. llama_github-0.2.9/llama_github/version.py +0 -1
  9. {llama_github-0.2.9 → llama_github-0.3.1}/LICENSE +0 -0
  10. {llama_github-0.2.9 → llama_github-0.3.1}/MANIFEST.in +0 -0
  11. {llama_github-0.2.9 → llama_github-0.3.1}/llama_github/__init__.py +0 -0
  12. {llama_github-0.2.9 → llama_github-0.3.1}/llama_github/config/__init__.py +0 -0
  13. {llama_github-0.2.9 → llama_github-0.3.1}/llama_github/config/config.json +0 -0
  14. {llama_github-0.2.9 → llama_github-0.3.1}/llama_github/config/config.py +0 -0
  15. {llama_github-0.2.9 → llama_github-0.3.1}/llama_github/data_retrieval/__init__.py +0 -0
  16. {llama_github-0.2.9 → llama_github-0.3.1}/llama_github/data_retrieval/github_api.py +0 -0
  17. {llama_github-0.2.9 → llama_github-0.3.1}/llama_github/data_retrieval/github_entities.py +0 -0
  18. {llama_github-0.2.9 → llama_github-0.3.1}/llama_github/features/__init__.py +0 -0
  19. {llama_github-0.2.9 → llama_github-0.3.1}/llama_github/features/feature_flags.py +0 -0
  20. {llama_github-0.2.9 → llama_github-0.3.1}/llama_github/features/insider_features.py +0 -0
  21. {llama_github-0.2.9 → llama_github-0.3.1}/llama_github/github_integration/__init__.py +0 -0
  22. {llama_github-0.2.9 → llama_github-0.3.1}/llama_github/github_integration/github_auth_manager.py +0 -0
  23. {llama_github-0.2.9 → llama_github-0.3.1}/llama_github/github_rag.py +0 -0
  24. {llama_github-0.2.9 → llama_github-0.3.1}/llama_github/llm_integration/__init__.py +0 -0
  25. {llama_github-0.2.9 → llama_github-0.3.1}/llama_github/llm_integration/llm_handler.py +0 -0
  26. {llama_github-0.2.9 → llama_github-0.3.1}/llama_github/logger.py +0 -0
  27. {llama_github-0.2.9 → llama_github-0.3.1}/llama_github/rag_processing/__init__.py +0 -0
  28. {llama_github-0.2.9 → llama_github-0.3.1}/llama_github/rag_processing/rag_processor.py +0 -0
  29. {llama_github-0.2.9 → llama_github-0.3.1}/llama_github/utils.py +0 -0
  30. {llama_github-0.2.9 → llama_github-0.3.1}/llama_github.egg-info/SOURCES.txt +0 -0
  31. {llama_github-0.2.9 → llama_github-0.3.1}/llama_github.egg-info/dependency_links.txt +0 -0
  32. {llama_github-0.2.9 → llama_github-0.3.1}/llama_github.egg-info/requires.txt +0 -0
  33. {llama_github-0.2.9 → llama_github-0.3.1}/llama_github.egg-info/top_level.txt +0 -0
  34. {llama_github-0.2.9 → llama_github-0.3.1}/setup.py +0 -0
  35. {llama_github-0.2.9 → llama_github-0.3.1}/tests/test_data_retrieval.py +0 -0
  36. {llama_github-0.2.9 → llama_github-0.3.1}/tests/test_github_auth_manager.py +0 -0
  37. {llama_github-0.2.9 → llama_github-0.3.1}/tests/test_initial_load.py +0 -0
  38. {llama_github-0.2.9 → llama_github-0.3.1}/tests/test_llm_handler.py +0 -0
  39. {llama_github-0.2.9 → llama_github-0.3.1}/tests/test_logger.py +0 -0
  40. {llama_github-0.2.9 → llama_github-0.3.1}/tests/test_rag_processor.py +0 -0
@@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [0.3.1] - 2025-05-25
9
+
10
+ ### Optimized
11
+ - Upgrade to mistral medium & devstral small
12
+
8
13
  ## [0.2.8] - 2025-03-19
9
14
 
10
15
  ### Optimized
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: llama-github
3
- Version: 0.2.9
3
+ Version: 0.3.1
4
4
  Summary: 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.
5
5
  Home-page: https://github.com/JetXu-LLM/llama-github
6
6
  Author: Jet Xu
@@ -34,6 +34,8 @@ Dynamic: requires-dist
34
34
 
35
35
  # llama-github
36
36
 
37
+ [Detail Document] https://deepwiki.com/JetXu-LLM/llama-github
38
+
37
39
  [![PyPI version](https://badge.fury.io/py/llama-github.svg)](https://badge.fury.io/py/llama-github)
38
40
  [![Downloads](https://static.pepy.tech/badge/Llama-github)](https://pepy.tech/project/Llama-github)
39
41
  [![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
@@ -154,6 +156,11 @@ All notable changes to this project will be documented in this file.
154
156
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
155
157
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
156
158
 
159
+ ## [0.3.1] - 2025-05-25
160
+
161
+ ### Optimized
162
+ - Upgrade to mistral medium & devstral small
163
+
157
164
  ## [0.2.8] - 2025-03-19
158
165
 
159
166
  ### Optimized
@@ -1,5 +1,7 @@
1
1
  # llama-github
2
2
 
3
+ [Detail Document] https://deepwiki.com/JetXu-LLM/llama-github
4
+
3
5
  [![PyPI version](https://badge.fury.io/py/llama-github.svg)](https://badge.fury.io/py/llama-github)
4
6
  [![Downloads](https://static.pepy.tech/badge/Llama-github)](https://pepy.tech/project/Llama-github)
5
7
  [![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
@@ -67,10 +67,10 @@ class LLMManager:
67
67
  elif mistral_api_key is not None and mistral_api_key != "" and self.llm is None:
68
68
  logger.info("Initializing Codestral API...")
69
69
  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-latest", temperature=0.3)
71
71
  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",
74
74
  temperature=0.2
75
75
  )
76
76
  self.model_type = "OpenAI"
@@ -0,0 +1 @@
1
+ __version__ = '0.3.1'
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: llama-github
3
- Version: 0.2.9
3
+ Version: 0.3.1
4
4
  Summary: 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.
5
5
  Home-page: https://github.com/JetXu-LLM/llama-github
6
6
  Author: Jet Xu
@@ -34,6 +34,8 @@ Dynamic: requires-dist
34
34
 
35
35
  # llama-github
36
36
 
37
+ [Detail Document] https://deepwiki.com/JetXu-LLM/llama-github
38
+
37
39
  [![PyPI version](https://badge.fury.io/py/llama-github.svg)](https://badge.fury.io/py/llama-github)
38
40
  [![Downloads](https://static.pepy.tech/badge/Llama-github)](https://pepy.tech/project/Llama-github)
39
41
  [![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
@@ -154,6 +156,11 @@ All notable changes to this project will be documented in this file.
154
156
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
155
157
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
156
158
 
159
+ ## [0.3.1] - 2025-05-25
160
+
161
+ ### Optimized
162
+ - Upgrade to mistral medium & devstral small
163
+
157
164
  ## [0.2.8] - 2025-03-19
158
165
 
159
166
  ### Optimized
@@ -1,6 +1,6 @@
1
1
  [metadata]
2
2
  name = llama-github
3
- version = 0.2.9
3
+ version = 0.3.1
4
4
  author = Jet Xu
5
5
  author_email = Voldemort.xu@foxmail.com
6
6
  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.
@@ -1 +0,0 @@
1
- __version__ = '0.2.9'
File without changes
File without changes
File without changes