llama-github 0.2.1__tar.gz → 0.2.2__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.
- {llama_github-0.2.1 → llama_github-0.2.2}/CHANGELOG.md +6 -1
- {llama_github-0.2.1/llama_github.egg-info → llama_github-0.2.2}/PKG-INFO +6 -1
- {llama_github-0.2.1 → llama_github-0.2.2}/llama_github/data_retrieval/github_entities.py +2 -2
- {llama_github-0.2.1 → llama_github-0.2.2}/llama_github/llm_integration/initial_load.py +3 -3
- llama_github-0.2.2/llama_github/version.py +1 -0
- {llama_github-0.2.1 → llama_github-0.2.2/llama_github.egg-info}/PKG-INFO +6 -1
- {llama_github-0.2.1 → llama_github-0.2.2}/setup.cfg +1 -1
- llama_github-0.2.1/llama_github/version.py +0 -1
- {llama_github-0.2.1 → llama_github-0.2.2}/LICENSE +0 -0
- {llama_github-0.2.1 → llama_github-0.2.2}/MANIFEST.in +0 -0
- {llama_github-0.2.1 → llama_github-0.2.2}/README.md +0 -0
- {llama_github-0.2.1 → llama_github-0.2.2}/llama_github/__init__.py +0 -0
- {llama_github-0.2.1 → llama_github-0.2.2}/llama_github/config/__init__.py +0 -0
- {llama_github-0.2.1 → llama_github-0.2.2}/llama_github/config/config.json +0 -0
- {llama_github-0.2.1 → llama_github-0.2.2}/llama_github/config/config.py +0 -0
- {llama_github-0.2.1 → llama_github-0.2.2}/llama_github/data_retrieval/__init__.py +0 -0
- {llama_github-0.2.1 → llama_github-0.2.2}/llama_github/data_retrieval/github_api.py +0 -0
- {llama_github-0.2.1 → llama_github-0.2.2}/llama_github/features/__init__.py +0 -0
- {llama_github-0.2.1 → llama_github-0.2.2}/llama_github/features/feature_flags.py +0 -0
- {llama_github-0.2.1 → llama_github-0.2.2}/llama_github/features/insider_features.py +0 -0
- {llama_github-0.2.1 → llama_github-0.2.2}/llama_github/github_integration/__init__.py +0 -0
- {llama_github-0.2.1 → llama_github-0.2.2}/llama_github/github_integration/github_auth_manager.py +0 -0
- {llama_github-0.2.1 → llama_github-0.2.2}/llama_github/github_rag.py +0 -0
- {llama_github-0.2.1 → llama_github-0.2.2}/llama_github/llm_integration/__init__.py +0 -0
- {llama_github-0.2.1 → llama_github-0.2.2}/llama_github/llm_integration/llm_handler.py +0 -0
- {llama_github-0.2.1 → llama_github-0.2.2}/llama_github/logger.py +0 -0
- {llama_github-0.2.1 → llama_github-0.2.2}/llama_github/rag_processing/__init__.py +0 -0
- {llama_github-0.2.1 → llama_github-0.2.2}/llama_github/rag_processing/rag_processor.py +0 -0
- {llama_github-0.2.1 → llama_github-0.2.2}/llama_github/utils.py +0 -0
- {llama_github-0.2.1 → llama_github-0.2.2}/llama_github.egg-info/SOURCES.txt +0 -0
- {llama_github-0.2.1 → llama_github-0.2.2}/llama_github.egg-info/dependency_links.txt +0 -0
- {llama_github-0.2.1 → llama_github-0.2.2}/llama_github.egg-info/requires.txt +0 -0
- {llama_github-0.2.1 → llama_github-0.2.2}/llama_github.egg-info/top_level.txt +0 -0
- {llama_github-0.2.1 → llama_github-0.2.2}/setup.py +0 -0
- {llama_github-0.2.1 → llama_github-0.2.2}/tests/test_data_retrieval.py +0 -0
- {llama_github-0.2.1 → llama_github-0.2.2}/tests/test_github_auth_manager.py +0 -0
- {llama_github-0.2.1 → llama_github-0.2.2}/tests/test_initial_load.py +0 -0
- {llama_github-0.2.1 → llama_github-0.2.2}/tests/test_llm_handler.py +0 -0
- {llama_github-0.2.1 → llama_github-0.2.2}/tests/test_logger.py +0 -0
- {llama_github-0.2.1 → llama_github-0.2.2}/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.2.2] - 2024-11-19
|
|
9
|
+
|
|
10
|
+
### Optimized
|
|
11
|
+
- more precise model specification (stick to mistral-large-2407 and mistral-nemo-latest)
|
|
12
|
+
|
|
8
13
|
## [0.2.1] - 2024-11-16
|
|
9
14
|
|
|
10
15
|
### Optimized
|
|
@@ -118,4 +123,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
118
123
|
[0.1.3]: https://github.com/JetXu-LLM/llama-github/compare/v0.1.2...v0.1.3
|
|
119
124
|
[0.1.2]: https://github.com/JetXu-LLM/llama-github/compare/v0.1.1...v0.1.2
|
|
120
125
|
[0.1.1]: https://github.com/JetXu-LLM/llama-github/compare/v0.1.0...v0.1.1
|
|
121
|
-
[0.1.0]: https://github.com/JetXu-LLM/llama-github/releases/tag/v0.1.0
|
|
126
|
+
[0.1.0]: https://github.com/JetXu-LLM/llama-github/releases/tag/v0.1.0
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: llama-github
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.2
|
|
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
|
|
@@ -156,6 +156,11 @@ All notable changes to this project will be documented in this file.
|
|
|
156
156
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
157
157
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
158
158
|
|
|
159
|
+
## [0.2.2] - 2024-11-19
|
|
160
|
+
|
|
161
|
+
### Optimized
|
|
162
|
+
- more precise model specification (stick to mistral-large-2407 and mistral-nemo-latest)
|
|
163
|
+
|
|
159
164
|
## [0.2.1] - 2024-11-16
|
|
160
165
|
|
|
161
166
|
### Optimized
|
|
@@ -164,7 +164,7 @@ class Repository:
|
|
|
164
164
|
# Package manager and dependencies
|
|
165
165
|
'.lock', '.pnpm-lock.yaml', 'package-lock.json', 'Gemfile.lock',
|
|
166
166
|
'poetry.lock', 'Cargo.lock', 'composer.lock',
|
|
167
|
-
'.pyc', '.pyo', 'requirements.txt',
|
|
167
|
+
'.pyc', '.pyo', 'requirements.txt', '.gitignore',
|
|
168
168
|
|
|
169
169
|
# Binaries and compiled files
|
|
170
170
|
'.exe', '.dll', '.so', '.dylib', '.bin', '.obj', '.o', '.a',
|
|
@@ -795,4 +795,4 @@ class RepositoryPool:
|
|
|
795
795
|
repo = Repository(full_name, self.github_instance, **kwargs)
|
|
796
796
|
self._pool[full_name] = repo
|
|
797
797
|
|
|
798
|
-
return self._pool[full_name]
|
|
798
|
+
return self._pool[full_name]
|
|
@@ -68,8 +68,8 @@ class LLMManager:
|
|
|
68
68
|
self.model_type = "Custom_langchain_llm"
|
|
69
69
|
elif mistral_api_key is not None and mistral_api_key != "" and self.llm is None:
|
|
70
70
|
logger.info("Initializing Mistral API...")
|
|
71
|
-
self.llm = ChatMistralAI(mistral_api_key=mistral_api_key, model="mistral-large-
|
|
72
|
-
self.llm_simple = ChatMistralAI(mistral_api_key=mistral_api_key, model="open-
|
|
71
|
+
self.llm = ChatMistralAI(mistral_api_key=mistral_api_key, model="mistral-large-2407")
|
|
72
|
+
self.llm_simple = ChatMistralAI(mistral_api_key=mistral_api_key, model="open-mistral-nemo")
|
|
73
73
|
self.model_type = "OpenAI"
|
|
74
74
|
elif openai_api_key is not None and openai_api_key != "" and self.llm is None:
|
|
75
75
|
logger.info("Initializing OpenAI API...")
|
|
@@ -172,4 +172,4 @@ class LLMManager:
|
|
|
172
172
|
Returns:
|
|
173
173
|
The initialized embedding model.
|
|
174
174
|
"""
|
|
175
|
-
return self.embedding_model
|
|
175
|
+
return self.embedding_model
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = '0.2.2'
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: llama-github
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.2
|
|
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
|
|
@@ -156,6 +156,11 @@ All notable changes to this project will be documented in this file.
|
|
|
156
156
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
157
157
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
158
158
|
|
|
159
|
+
## [0.2.2] - 2024-11-19
|
|
160
|
+
|
|
161
|
+
### Optimized
|
|
162
|
+
- more precise model specification (stick to mistral-large-2407 and mistral-nemo-latest)
|
|
163
|
+
|
|
159
164
|
## [0.2.1] - 2024-11-16
|
|
160
165
|
|
|
161
166
|
### Optimized
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[metadata]
|
|
2
2
|
name = llama-github
|
|
3
|
-
version = 0.2.
|
|
3
|
+
version = 0.2.2
|
|
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.1'
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{llama_github-0.2.1 → llama_github-0.2.2}/llama_github/github_integration/github_auth_manager.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|