llama-github 0.2.4__tar.gz → 0.2.5__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.4/llama_github.egg-info → llama_github-0.2.5}/PKG-INFO +1 -1
  2. {llama_github-0.2.4 → llama_github-0.2.5}/llama_github/data_retrieval/github_entities.py +5 -5
  3. {llama_github-0.2.4 → llama_github-0.2.5}/llama_github/utils.py +2 -2
  4. llama_github-0.2.5/llama_github/version.py +1 -0
  5. {llama_github-0.2.4 → llama_github-0.2.5/llama_github.egg-info}/PKG-INFO +1 -1
  6. {llama_github-0.2.4 → llama_github-0.2.5}/setup.cfg +1 -1
  7. llama_github-0.2.4/llama_github/version.py +0 -1
  8. {llama_github-0.2.4 → llama_github-0.2.5}/CHANGELOG.md +0 -0
  9. {llama_github-0.2.4 → llama_github-0.2.5}/LICENSE +0 -0
  10. {llama_github-0.2.4 → llama_github-0.2.5}/MANIFEST.in +0 -0
  11. {llama_github-0.2.4 → llama_github-0.2.5}/README.md +0 -0
  12. {llama_github-0.2.4 → llama_github-0.2.5}/llama_github/__init__.py +0 -0
  13. {llama_github-0.2.4 → llama_github-0.2.5}/llama_github/config/__init__.py +0 -0
  14. {llama_github-0.2.4 → llama_github-0.2.5}/llama_github/config/config.json +0 -0
  15. {llama_github-0.2.4 → llama_github-0.2.5}/llama_github/config/config.py +0 -0
  16. {llama_github-0.2.4 → llama_github-0.2.5}/llama_github/data_retrieval/__init__.py +0 -0
  17. {llama_github-0.2.4 → llama_github-0.2.5}/llama_github/data_retrieval/github_api.py +0 -0
  18. {llama_github-0.2.4 → llama_github-0.2.5}/llama_github/features/__init__.py +0 -0
  19. {llama_github-0.2.4 → llama_github-0.2.5}/llama_github/features/feature_flags.py +0 -0
  20. {llama_github-0.2.4 → llama_github-0.2.5}/llama_github/features/insider_features.py +0 -0
  21. {llama_github-0.2.4 → llama_github-0.2.5}/llama_github/github_integration/__init__.py +0 -0
  22. {llama_github-0.2.4 → llama_github-0.2.5}/llama_github/github_integration/github_auth_manager.py +0 -0
  23. {llama_github-0.2.4 → llama_github-0.2.5}/llama_github/github_rag.py +0 -0
  24. {llama_github-0.2.4 → llama_github-0.2.5}/llama_github/llm_integration/__init__.py +0 -0
  25. {llama_github-0.2.4 → llama_github-0.2.5}/llama_github/llm_integration/initial_load.py +0 -0
  26. {llama_github-0.2.4 → llama_github-0.2.5}/llama_github/llm_integration/llm_handler.py +0 -0
  27. {llama_github-0.2.4 → llama_github-0.2.5}/llama_github/logger.py +0 -0
  28. {llama_github-0.2.4 → llama_github-0.2.5}/llama_github/rag_processing/__init__.py +0 -0
  29. {llama_github-0.2.4 → llama_github-0.2.5}/llama_github/rag_processing/rag_processor.py +0 -0
  30. {llama_github-0.2.4 → llama_github-0.2.5}/llama_github.egg-info/SOURCES.txt +0 -0
  31. {llama_github-0.2.4 → llama_github-0.2.5}/llama_github.egg-info/dependency_links.txt +0 -0
  32. {llama_github-0.2.4 → llama_github-0.2.5}/llama_github.egg-info/requires.txt +0 -0
  33. {llama_github-0.2.4 → llama_github-0.2.5}/llama_github.egg-info/top_level.txt +0 -0
  34. {llama_github-0.2.4 → llama_github-0.2.5}/setup.py +0 -0
  35. {llama_github-0.2.4 → llama_github-0.2.5}/tests/test_data_retrieval.py +0 -0
  36. {llama_github-0.2.4 → llama_github-0.2.5}/tests/test_github_auth_manager.py +0 -0
  37. {llama_github-0.2.4 → llama_github-0.2.5}/tests/test_initial_load.py +0 -0
  38. {llama_github-0.2.4 → llama_github-0.2.5}/tests/test_llm_handler.py +0 -0
  39. {llama_github-0.2.4 → llama_github-0.2.5}/tests/test_logger.py +0 -0
  40. {llama_github-0.2.4 → llama_github-0.2.5}/tests/test_rag_processor.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: llama-github
3
- Version: 0.2.4
3
+ Version: 0.2.5
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
@@ -669,10 +669,10 @@ class Repository:
669
669
  custom_diff = ''
670
670
 
671
671
  # Categorize code changes
672
- change_categories = CodeAnalyzer.categorize_change(custom_diff)
672
+ # change_categories = CodeAnalyzer.categorize_change(custom_diff)
673
673
 
674
674
  # Extract imports from head content
675
- related_modules = CodeAnalyzer.extract_imports(head_content) if language == 'Python' and head_content else []
675
+ # related_modules = CodeAnalyzer.extract_imports(head_content) if language == 'Python' and head_content else []
676
676
 
677
677
  # Build file change entry
678
678
  file_change = {
@@ -682,9 +682,9 @@ class Repository:
682
682
  "language": language,
683
683
  "additions": additions,
684
684
  "deletions": deletions,
685
- "changes": changes,
686
- "change_categories": change_categories,
687
- "related_modules": related_modules
685
+ "changes": changes #,
686
+ # "change_categories": change_categories,
687
+ # "related_modules": related_modules
688
688
  }
689
689
 
690
690
  # Check for dependency changes
@@ -163,7 +163,7 @@ class CodeAnalyzer:
163
163
  try:
164
164
  tree = ast.parse(code_str)
165
165
  return ast.dump(tree)
166
- except SyntaxError:
166
+ except Exception:
167
167
  logger.error("Syntax error in the provided code")
168
168
  return None
169
169
 
@@ -188,7 +188,7 @@ class CodeAnalyzer:
188
188
 
189
189
  try:
190
190
  tree = ast.parse(code_str)
191
- except SyntaxError as e:
191
+ except Exception as e:
192
192
  logger.error(f"Syntax error in the provided code: {e}")
193
193
  import_info["errors"].append(str(e))
194
194
  return import_info
@@ -0,0 +1 @@
1
+ __version__ = '0.2.5'
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: llama-github
3
- Version: 0.2.4
3
+ Version: 0.2.5
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
@@ -1,6 +1,6 @@
1
1
  [metadata]
2
2
  name = llama-github
3
- version = 0.2.4
3
+ version = 0.2.5
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.4'
File without changes
File without changes
File without changes
File without changes
File without changes