├── .github ├── ISSUE_TEMPLATE.md ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE.md ├── gitleaks.toml └── workflows │ ├── publish.yml │ └── secret-scan.yml ├── .gitignore ├── .vscode └── settings.json ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── MANIFEST.in ├── README.md ├── VISION_AND_ROADMAP.md ├── docs ├── api_reference.md ├── data_collection_policy.md ├── examples │ ├── advanced_integration.md │ └── simple_query.md ├── high_level_architecture.drawio.svg ├── high_level_architecture.gif ├── installation.md ├── usage.md └── vision.drawio.svg ├── llama_github ├── __init__.py ├── config │ ├── __init__.py │ ├── config.json │ └── config.py ├── data_retrieval │ ├── __init__.py │ ├── github_api.py │ └── github_entities.py ├── features │ ├── __init__.py │ ├── feature_flags.py │ └── insider_features.py ├── github_integration │ ├── __init__.py │ └── github_auth_manager.py ├── github_rag.py ├── llm_integration │ ├── __init__.py │ ├── initial_load.py │ └── llm_handler.py ├── logger.py ├── rag_processing │ ├── __init__.py │ └── rag_processor.py ├── utils.py └── version.py ├── requirements.txt ├── setup.cfg ├── setup.py └── tests ├── __init__.py ├── conftest.py ├── test_data_retrieval.py ├── test_github_auth_manager.py ├── test_initial_load.py ├── test_llm_handler.py ├── test_logger.py ├── test_rag_processor.py └── test_utils.py /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetXu-LLM/llama-github/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetXu-LLM/llama-github/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.github/gitleaks.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetXu-LLM/llama-github/HEAD/.github/gitleaks.toml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetXu-LLM/llama-github/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/secret-scan.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetXu-LLM/llama-github/HEAD/.github/workflows/secret-scan.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetXu-LLM/llama-github/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetXu-LLM/llama-github/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetXu-LLM/llama-github/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetXu-LLM/llama-github/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetXu-LLM/llama-github/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetXu-LLM/llama-github/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetXu-LLM/llama-github/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetXu-LLM/llama-github/HEAD/README.md -------------------------------------------------------------------------------- /VISION_AND_ROADMAP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetXu-LLM/llama-github/HEAD/VISION_AND_ROADMAP.md -------------------------------------------------------------------------------- /docs/api_reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetXu-LLM/llama-github/HEAD/docs/api_reference.md -------------------------------------------------------------------------------- /docs/data_collection_policy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetXu-LLM/llama-github/HEAD/docs/data_collection_policy.md -------------------------------------------------------------------------------- /docs/examples/advanced_integration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetXu-LLM/llama-github/HEAD/docs/examples/advanced_integration.md -------------------------------------------------------------------------------- /docs/examples/simple_query.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/high_level_architecture.drawio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetXu-LLM/llama-github/HEAD/docs/high_level_architecture.drawio.svg -------------------------------------------------------------------------------- /docs/high_level_architecture.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetXu-LLM/llama-github/HEAD/docs/high_level_architecture.gif -------------------------------------------------------------------------------- /docs/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetXu-LLM/llama-github/HEAD/docs/installation.md -------------------------------------------------------------------------------- /docs/usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetXu-LLM/llama-github/HEAD/docs/usage.md -------------------------------------------------------------------------------- /docs/vision.drawio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetXu-LLM/llama-github/HEAD/docs/vision.drawio.svg -------------------------------------------------------------------------------- /llama_github/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetXu-LLM/llama-github/HEAD/llama_github/__init__.py -------------------------------------------------------------------------------- /llama_github/config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /llama_github/config/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetXu-LLM/llama-github/HEAD/llama_github/config/config.json -------------------------------------------------------------------------------- /llama_github/config/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetXu-LLM/llama-github/HEAD/llama_github/config/config.py -------------------------------------------------------------------------------- /llama_github/data_retrieval/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /llama_github/data_retrieval/github_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetXu-LLM/llama-github/HEAD/llama_github/data_retrieval/github_api.py -------------------------------------------------------------------------------- /llama_github/data_retrieval/github_entities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetXu-LLM/llama-github/HEAD/llama_github/data_retrieval/github_entities.py -------------------------------------------------------------------------------- /llama_github/features/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /llama_github/features/feature_flags.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /llama_github/features/insider_features.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /llama_github/github_integration/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetXu-LLM/llama-github/HEAD/llama_github/github_integration/__init__.py -------------------------------------------------------------------------------- /llama_github/github_integration/github_auth_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetXu-LLM/llama-github/HEAD/llama_github/github_integration/github_auth_manager.py -------------------------------------------------------------------------------- /llama_github/github_rag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetXu-LLM/llama-github/HEAD/llama_github/github_rag.py -------------------------------------------------------------------------------- /llama_github/llm_integration/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /llama_github/llm_integration/initial_load.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetXu-LLM/llama-github/HEAD/llama_github/llm_integration/initial_load.py -------------------------------------------------------------------------------- /llama_github/llm_integration/llm_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetXu-LLM/llama-github/HEAD/llama_github/llm_integration/llm_handler.py -------------------------------------------------------------------------------- /llama_github/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetXu-LLM/llama-github/HEAD/llama_github/logger.py -------------------------------------------------------------------------------- /llama_github/rag_processing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /llama_github/rag_processing/rag_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetXu-LLM/llama-github/HEAD/llama_github/rag_processing/rag_processor.py -------------------------------------------------------------------------------- /llama_github/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetXu-LLM/llama-github/HEAD/llama_github/utils.py -------------------------------------------------------------------------------- /llama_github/version.py: -------------------------------------------------------------------------------- 1 | __version__ = '0.3.3' 2 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetXu-LLM/llama-github/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetXu-LLM/llama-github/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetXu-LLM/llama-github/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetXu-LLM/llama-github/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetXu-LLM/llama-github/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/test_data_retrieval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetXu-LLM/llama-github/HEAD/tests/test_data_retrieval.py -------------------------------------------------------------------------------- /tests/test_github_auth_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetXu-LLM/llama-github/HEAD/tests/test_github_auth_manager.py -------------------------------------------------------------------------------- /tests/test_initial_load.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetXu-LLM/llama-github/HEAD/tests/test_initial_load.py -------------------------------------------------------------------------------- /tests/test_llm_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetXu-LLM/llama-github/HEAD/tests/test_llm_handler.py -------------------------------------------------------------------------------- /tests/test_logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetXu-LLM/llama-github/HEAD/tests/test_logger.py -------------------------------------------------------------------------------- /tests/test_rag_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetXu-LLM/llama-github/HEAD/tests/test_rag_processor.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetXu-LLM/llama-github/HEAD/tests/test_utils.py --------------------------------------------------------------------------------