ai-cr 0.4.2__tar.gz → 0.4.4__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.
- {ai_cr-0.4.2 → ai_cr-0.4.4}/PKG-INFO +5 -5
- {ai_cr-0.4.2 → ai_cr-0.4.4}/README.md +4 -4
- {ai_cr-0.4.2 → ai_cr-0.4.4}/pyproject.toml +1 -1
- {ai_cr-0.4.2 → ai_cr-0.4.4}/LICENSE +0 -0
- {ai_cr-0.4.2 → ai_cr-0.4.4}/ai_code_review/.ai-code-review.toml +0 -0
- {ai_cr-0.4.2 → ai_cr-0.4.4}/ai_code_review/__init__.py +0 -0
- {ai_cr-0.4.2 → ai_cr-0.4.4}/ai_code_review/bootstrap.py +0 -0
- {ai_cr-0.4.2 → ai_cr-0.4.4}/ai_code_review/cli.py +0 -0
- {ai_cr-0.4.2 → ai_cr-0.4.4}/ai_code_review/constants.py +0 -0
- {ai_cr-0.4.2 → ai_cr-0.4.4}/ai_code_review/core.py +0 -0
- {ai_cr-0.4.2 → ai_cr-0.4.4}/ai_code_review/project_config.py +0 -0
- {ai_cr-0.4.2 → ai_cr-0.4.4}/ai_code_review/report_struct.py +0 -0
- {ai_cr-0.4.2 → ai_cr-0.4.4}/ai_code_review/utils.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: ai-cr
|
3
|
-
Version: 0.4.
|
3
|
+
Version: 0.4.4
|
4
4
|
Summary: LLM-agnostic GitHub AI Code Review Tool with integration to GitHub actions
|
5
5
|
License: MIT
|
6
6
|
Keywords: ai,coding,assistant,llm,code review,github,automation,devops,developer tools,github actions,workflows
|
@@ -44,7 +44,7 @@ An AI-powered GitHub code review tool that uses LLMs to detect high-confidence,
|
|
44
44
|
- Posts review results as a comment on your PR
|
45
45
|
- Can be used locally; works with both local and remote Git repositories
|
46
46
|
- Optional, fun AI-generated code awards 🏆
|
47
|
-
- Easily configurable via [`.ai-code-review.toml`](ai_code_review/.ai-code-review.toml)
|
47
|
+
- Easily configurable via [`.ai-code-review.toml`](https://github.com/Nayjest/ai-code-review/blob/main/ai_code_review/.ai-code-review.toml) in your repository root
|
48
48
|
- Extremely fast, parallel LLM usage
|
49
49
|
- Model-agnostic (OpenAI, Anthropic, Google, local PyTorch inference, etc.)
|
50
50
|
|
@@ -126,7 +126,7 @@ Change behavior via `.ai-code-review.toml`:
|
|
126
126
|
You can override the default config by placing `.ai-code-review.toml` in your repo root.
|
127
127
|
|
128
128
|
|
129
|
-
See default configuration [here](ai_code_review/.ai-code-review.toml).
|
129
|
+
See default configuration [here](https://github.com/Nayjest/ai-code-review/blob/main/ai_code_review/.ai-code-review.toml).
|
130
130
|
|
131
131
|
## 💻 Development Setup
|
132
132
|
|
@@ -151,11 +151,11 @@ pytest
|
|
151
151
|
|
152
152
|
## 🤝 Contributing
|
153
153
|
|
154
|
-
We ❤️ contributions! See [CONTRIBUTING.md](CONTRIBUTING.md).
|
154
|
+
We ❤️ contributions! See [CONTRIBUTING.md](https://github.com/Nayjest/ai-code-review/blob/main/CONTRIBUTING.md).
|
155
155
|
|
156
156
|
## 📝 License
|
157
157
|
|
158
|
-
Licensed under the [MIT License](LICENSE).
|
158
|
+
Licensed under the [MIT License](https://github.com/Nayjest/ai-code-review/blob/main/LICENSE).
|
159
159
|
|
160
160
|
© 2025 [Vitalii Stepanenko](mailto:mail@vitaliy.in)
|
161
161
|
|
@@ -16,7 +16,7 @@ An AI-powered GitHub code review tool that uses LLMs to detect high-confidence,
|
|
16
16
|
- Posts review results as a comment on your PR
|
17
17
|
- Can be used locally; works with both local and remote Git repositories
|
18
18
|
- Optional, fun AI-generated code awards 🏆
|
19
|
-
- Easily configurable via [`.ai-code-review.toml`](ai_code_review/.ai-code-review.toml)
|
19
|
+
- Easily configurable via [`.ai-code-review.toml`](https://github.com/Nayjest/ai-code-review/blob/main/ai_code_review/.ai-code-review.toml) in your repository root
|
20
20
|
- Extremely fast, parallel LLM usage
|
21
21
|
- Model-agnostic (OpenAI, Anthropic, Google, local PyTorch inference, etc.)
|
22
22
|
|
@@ -98,7 +98,7 @@ Change behavior via `.ai-code-review.toml`:
|
|
98
98
|
You can override the default config by placing `.ai-code-review.toml` in your repo root.
|
99
99
|
|
100
100
|
|
101
|
-
See default configuration [here](ai_code_review/.ai-code-review.toml).
|
101
|
+
See default configuration [here](https://github.com/Nayjest/ai-code-review/blob/main/ai_code_review/.ai-code-review.toml).
|
102
102
|
|
103
103
|
## 💻 Development Setup
|
104
104
|
|
@@ -123,10 +123,10 @@ pytest
|
|
123
123
|
|
124
124
|
## 🤝 Contributing
|
125
125
|
|
126
|
-
We ❤️ contributions! See [CONTRIBUTING.md](CONTRIBUTING.md).
|
126
|
+
We ❤️ contributions! See [CONTRIBUTING.md](https://github.com/Nayjest/ai-code-review/blob/main/CONTRIBUTING.md).
|
127
127
|
|
128
128
|
## 📝 License
|
129
129
|
|
130
|
-
Licensed under the [MIT License](LICENSE).
|
130
|
+
Licensed under the [MIT License](https://github.com/Nayjest/ai-code-review/blob/main/LICENSE).
|
131
131
|
|
132
132
|
© 2025 [Vitalii Stepanenko](mailto:mail@vitaliy.in)
|
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
|