gac 1.13.0__py3-none-any.whl → 3.8.1__py3-none-any.whl

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 (54) hide show
  1. gac/__version__.py +1 -1
  2. gac/ai.py +33 -47
  3. gac/ai_utils.py +113 -41
  4. gac/auth_cli.py +214 -0
  5. gac/cli.py +72 -2
  6. gac/config.py +63 -6
  7. gac/config_cli.py +26 -5
  8. gac/constants.py +178 -2
  9. gac/git.py +158 -12
  10. gac/init_cli.py +40 -125
  11. gac/language_cli.py +378 -0
  12. gac/main.py +868 -158
  13. gac/model_cli.py +429 -0
  14. gac/oauth/__init__.py +27 -0
  15. gac/oauth/claude_code.py +464 -0
  16. gac/oauth/qwen_oauth.py +323 -0
  17. gac/oauth/token_store.py +81 -0
  18. gac/preprocess.py +3 -3
  19. gac/prompt.py +573 -226
  20. gac/providers/__init__.py +49 -0
  21. gac/providers/anthropic.py +11 -1
  22. gac/providers/azure_openai.py +101 -0
  23. gac/providers/cerebras.py +11 -1
  24. gac/providers/chutes.py +11 -1
  25. gac/providers/claude_code.py +112 -0
  26. gac/providers/custom_anthropic.py +6 -2
  27. gac/providers/custom_openai.py +6 -3
  28. gac/providers/deepseek.py +11 -1
  29. gac/providers/fireworks.py +11 -1
  30. gac/providers/gemini.py +11 -1
  31. gac/providers/groq.py +5 -1
  32. gac/providers/kimi_coding.py +67 -0
  33. gac/providers/lmstudio.py +12 -1
  34. gac/providers/minimax.py +11 -1
  35. gac/providers/mistral.py +48 -0
  36. gac/providers/moonshot.py +48 -0
  37. gac/providers/ollama.py +11 -1
  38. gac/providers/openai.py +11 -1
  39. gac/providers/openrouter.py +11 -1
  40. gac/providers/qwen.py +76 -0
  41. gac/providers/replicate.py +110 -0
  42. gac/providers/streamlake.py +11 -1
  43. gac/providers/synthetic.py +11 -1
  44. gac/providers/together.py +11 -1
  45. gac/providers/zai.py +11 -1
  46. gac/security.py +1 -1
  47. gac/utils.py +272 -4
  48. gac/workflow_utils.py +217 -0
  49. {gac-1.13.0.dist-info → gac-3.8.1.dist-info}/METADATA +90 -27
  50. gac-3.8.1.dist-info/RECORD +56 -0
  51. {gac-1.13.0.dist-info → gac-3.8.1.dist-info}/WHEEL +1 -1
  52. gac-1.13.0.dist-info/RECORD +0 -41
  53. {gac-1.13.0.dist-info → gac-3.8.1.dist-info}/entry_points.txt +0 -0
  54. {gac-1.13.0.dist-info → gac-3.8.1.dist-info}/licenses/LICENSE +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: gac
3
- Version: 1.13.0
3
+ Version: 3.8.1
4
4
  Summary: LLM-powered Git commit message generator with multi-provider support
5
5
  Project-URL: Homepage, https://github.com/cellwebb/gac
6
6
  Project-URL: Documentation, https://github.com/cellwebb/gac#readme
@@ -22,9 +22,9 @@ Classifier: Programming Language :: Python :: Implementation :: CPython
22
22
  Classifier: Programming Language :: Python :: Implementation :: PyPy
23
23
  Requires-Python: >=3.10
24
24
  Requires-Dist: click>=8.3.0
25
- Requires-Dist: halo
26
25
  Requires-Dist: httpcore>=1.0.9
27
26
  Requires-Dist: httpx>=0.28.0
27
+ Requires-Dist: prompt-toolkit>=3.0.36
28
28
  Requires-Dist: pydantic>=2.12.0
29
29
  Requires-Dist: python-dotenv>=1.1.1
30
30
  Requires-Dist: questionary
@@ -40,21 +40,26 @@ Requires-Dist: twine; extra == 'dev'
40
40
  Description-Content-Type: text/markdown
41
41
 
42
42
  <!-- markdownlint-disable MD013 -->
43
+ <!-- markdownlint-disable MD033 MD036 -->
44
+
45
+ <div align="center">
43
46
 
44
47
  # 🚀 Git Auto Commit (gac)
45
48
 
46
49
  [![PyPI version](https://img.shields.io/pypi/v/gac.svg)](https://pypi.org/project/gac/)
47
- [![Python](https://img.shields.io/badge/python-3.10%20|%203.11%20|%203.12%20|%203.13%20|%203.14-blue.svg)](https://www.python.org/downloads/)
50
+ [![Python](https://img.shields.io/badge/python-3.10--3.14-blue.svg)](https://www.python.org/downloads/)
48
51
  [![Build Status](https://github.com/cellwebb/gac/actions/workflows/ci.yml/badge.svg)](https://github.com/cellwebb/gac/actions)
49
52
  [![codecov](https://codecov.io/gh/cellwebb/gac/branch/main/graph/badge.svg)](https://app.codecov.io/gh/cellwebb/gac)
50
53
  [![Ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json)](https://github.com/astral-sh/ruff)
51
54
  [![mypy](https://img.shields.io/badge/mypy-checked-blue.svg)](https://mypy-lang.org/)
52
- [![Contributions welcome](https://img.shields.io/badge/contributions-welcome-brightgreen.svg)](docs/CONTRIBUTING.md)
55
+ [![Contributions welcome](https://img.shields.io/badge/contributions-welcome-brightgreen.svg)](docs/en/CONTRIBUTING.md)
53
56
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](LICENSE)
54
57
 
55
- **LLM-powered commit messages that understand your code.**
58
+ **English** | [简体中文](docs/zh-CN/README.md) | [繁體中文](docs/zh-TW/README.md) | [日本語](docs/ja/README.md) | [한국어](docs/ko/README.md) | [हिन्दी](docs/hi/README.md) | [Tiếng Việt](docs/vi/README.md) | [Français](docs/fr/README.md) | [Русский](docs/ru/README.md) | [Español](docs/es/README.md) | [Português](docs/pt/README.md) | [Norsk](docs/no/README.md) | [Svenska](docs/sv/README.md) | [Deutsch](docs/de/README.md) | [Nederlands](docs/nl/README.md) | [Italiano](docs/it/README.md)
59
+
60
+ **LLM-powered commit messages that understand your code!**
56
61
 
57
- **Tired of writing commit messages?** Replace `git commit -m "..."` with `gac` for contextual, well-formatted commit messages generated by large language models.
62
+ **Automate your commits!** Replace `git commit -m "..."` with `gac` for contextual, well-formatted commit messages generated by large language models!
58
63
 
59
64
  ---
60
65
 
@@ -66,18 +71,22 @@ Intelligent, contextual messages that explain the **why** behind your changes:
66
71
 
67
72
  ---
68
73
 
74
+ </div>
75
+
76
+ <!-- markdownlint-enable MD033 MD036 -->
77
+
69
78
  ## Quick Start
70
79
 
71
- ### Use without installing
80
+ ### Use gac without installing
72
81
 
73
82
  ```bash
74
- uvx gac init # Configure your LLM provider
83
+ uvx gac init # Configure your provider, model, and language
75
84
  uvx gac # Generate and commit with LLM
76
85
  ```
77
86
 
78
87
  That's it! Review the generated message and confirm with `y`.
79
88
 
80
- ### Install gac globally
89
+ ### Install and use gac
81
90
 
82
91
  ```bash
83
92
  uv tool install gac
@@ -85,22 +94,30 @@ gac init
85
94
  gac
86
95
  ```
87
96
 
97
+ ### Upgrade installed gac
98
+
99
+ ```bash
100
+ uv tool upgrade gac
101
+ ```
102
+
88
103
  ---
89
104
 
90
105
  ## Key Features
91
106
 
92
- ### 🌐 **Supported Providers**
107
+ ### 🌐 **25+ Supported Providers**
93
108
 
94
- - **Anthropic** • **Cerebras** • **Chutes.ai** • **DeepSeek** **Fireworks**
95
- - **Gemini** • **Groq** • **LM Studio** • **MiniMax** • **Ollama** • **OpenAI**
96
- - **OpenRouter** • **Streamlake** • **Synthetic.new** • **Together AI**
97
- - **Z.AI** • **Z.AI Coding** • **Custom Endpoint (Anthropic/OpenAI)**
109
+ - **Anthropic** • **Azure OpenAI** • **Cerebras** • **Chutes.ai** • **Claude Code (OAuth)**
110
+ - **DeepSeek** • **Fireworks** • **Gemini** • **Groq** • **Kimi for Coding** • **LM Studio**
111
+ - **MiniMax.io** • **Mistral AI** • **Moonshot AI** • **Ollama** **OpenAI** • **OpenRouter**
112
+ - **Qwen.ai (OAuth)** • **Replicate** **Streamlake** • **Synthetic.new** **Together AI**
113
+ - **Z.AI** • **Z.AI Coding** • **Custom Endpoints (Anthropic/OpenAI)**
98
114
 
99
115
  ### 🧠 **Smart LLM Analysis**
100
116
 
101
117
  - **Understands intent**: Analyzes code structure, logic, and patterns to understand the "why" behind your changes, not just what changed
102
118
  - **Semantic awareness**: Recognizes refactoring, bug fixes, features, and breaking changes to generate contextually appropriate messages
103
119
  - **Intelligent filtering**: Prioritizes meaningful changes while ignoring generated files, dependencies, and artifacts
120
+ - **Intelligent commit grouping** - Automatically group related changes into multiple logical commits with `--group`
104
121
 
105
122
  ### 📝 **Multiple Message Formats**
106
123
 
@@ -108,9 +125,17 @@ gac
108
125
  - **Standard** (default): Summary with bullet points explaining implementation details
109
126
  - **Verbose** (-v flag): Comprehensive explanations including motivation, technical approach, and impact analysis
110
127
 
128
+ ### 🌍 **Multilingual Support**
129
+
130
+ - **25+ languages**: Generate commit messages in English, Chinese, Japanese, Korean, Spanish, French, German, and 20+ more languages
131
+ - **Flexible translation**: Choose to keep conventional commit prefixes in English for tool compatibility, or fully translate them
132
+ - **Multiple workflows**: Set a default language with `gac language`, or use `-l <language>` flag for one-time overrides
133
+ - **Native script support**: Full support for non-Latin scripts including CJK, Cyrillic, Thai, and more
134
+
111
135
  ### 💻 **Developer Experience**
112
136
 
113
- - **Interactive feedback**: Regenerate messages with specific requests like `r "make it shorter"` or `r "focus on the bug fix"`
137
+ - **Interactive feedback**: Type `r` to reroll, `e` to edit in-place with vi/emacs keybindings, or directly type your feedback like `make it shorter` or `focus on the bug fix`
138
+ - **Interactive questioning**: Use `--interactive` (`-i`) to answer targeted questions about your changes for more contextual commit messages
114
139
  - **One-command workflows**: Complete workflows with flags like `gac -ayp` (stage all, auto-confirm, push)
115
140
  - **Git integration**: Respects pre-commit and lefthook hooks, running them before expensive LLM operations
116
141
 
@@ -133,7 +158,7 @@ git add .
133
158
  # Generate and commit with LLM
134
159
  gac
135
160
 
136
- # Review → y (commit) | n (cancel) | r (reroll)
161
+ # Review → y (commit) | n (cancel) | r (reroll) | e (edit) | or type feedback
137
162
  ```
138
163
 
139
164
  ### Common Commands
@@ -147,6 +172,7 @@ gac
147
172
  | `gac -v` | Verbose format with Motivation, Technical Approach, and Impact Analysis |
148
173
  | `gac -h "hint"` | Add context for LLM (e.g., `gac -h "bug fix"`) |
149
174
  | `gac -s` | Include scope (e.g., feat(auth):) |
175
+ | `gac -i` | Ask questions about changes for better context |
150
176
  | `gac -p` | Commit and push |
151
177
 
152
178
  ### Power User Examples
@@ -161,6 +187,12 @@ gac -v -s
161
187
  # Quick one-liner for small changes
162
188
  gac -o
163
189
 
190
+ # Group changes into logically related commits
191
+ gac -ag
192
+
193
+ # Interactive mode with verbose output for detailed explanations
194
+ gac -iv
195
+
164
196
  # Debug what the LLM sees
165
197
  gac --show-prompt
166
198
 
@@ -168,26 +200,42 @@ gac --show-prompt
168
200
  gac --skip-secret-scan
169
201
  ```
170
202
 
171
- ### Interactive Reroll System
203
+ ### Interactive Feedback System
172
204
 
173
- Not happy with the result? Use the reroll feature for intelligent regeneration:
205
+ Not happy with the result? You have several options:
174
206
 
175
207
  ```bash
176
- # Simple reroll
208
+ # Simple reroll (no feedback)
177
209
  r
178
210
 
179
- # With specific feedback
180
- r make it shorter and focus on the performance improvement
181
- r use conventional commit format with scope
182
- r explain the security implications
211
+ # Edit in-place with rich terminal editing
212
+ e
213
+ # Uses prompt_toolkit for multi-line editing with vi/emacs keybindings
214
+ # Press Esc+Enter or Ctrl+S to submit, Ctrl+C to cancel
215
+
216
+ # Or just type your feedback directly!
217
+ make it shorter and focus on the performance improvement
218
+ use conventional commit format with scope
219
+ explain the security implications
220
+
221
+ # Press Enter on empty input to see the prompt again
183
222
  ```
184
223
 
224
+ The edit feature (`e`) provides rich in-place terminal editing, allowing you to:
225
+
226
+ - **Edit naturally**: Multi-line editing with familiar vi/emacs key bindings
227
+ - **Make quick fixes**: Correct typos, adjust wording, or refine formatting
228
+ - **Add details**: Include information the LLM might have missed
229
+ - **Restructure**: Reorganize bullet points or change the message structure
230
+
185
231
  ---
186
232
 
187
233
  ## Configuration
188
234
 
189
235
  Run `gac init` to configure your provider interactively, or set environment variables:
190
236
 
237
+ Need to change providers or models later without touching language settings? Use `gac model` for a streamlined flow that skips the language prompts.
238
+
191
239
  ```bash
192
240
  # Example configuration
193
241
  GAC_MODEL=anthropic:your-model-name
@@ -197,13 +245,28 @@ ANTHROPIC_API_KEY=your_key_here
197
245
 
198
246
  See `.gac.env.example` for all available options.
199
247
 
248
+ **Want commit messages in another language?** Run `gac language` to select from 25+ languages including Español, Français, 日本語, and more.
249
+
250
+ **Want to customize commit message style?** See [docs/CUSTOM_SYSTEM_PROMPTS.md](docs/en/CUSTOM_SYSTEM_PROMPTS.md) for guidance on writing custom system prompts.
251
+
252
+ ---
253
+
254
+ ## Project Analytics
255
+
256
+ 📊 **[View live usage analytics and statistics →](https://clickpy.clickhouse.com/dashboard/gac)**
257
+
258
+ Track real-time installation metrics and package download statistics.
259
+
200
260
  ---
201
261
 
202
262
  ## Getting Help
203
263
 
204
- - **Full documentation**: [USAGE.md](USAGE.md) - Complete CLI reference
205
- - **Troubleshooting**: [TROUBLESHOOTING.md](docs/TROUBLESHOOTING.md) - Common issues and solutions
206
- - **Contributing**: [CONTRIBUTING.md](docs/CONTRIBUTING.md) - Development setup and guidelines
264
+ - **Full documentation**: [docs/USAGE.md](docs/en/USAGE.md) - Complete CLI reference
265
+ - **Claude Code OAuth**: [docs/CLAUDE_CODE.md](docs/en/CLAUDE_CODE.md) - Claude Code setup and authentication
266
+ - **Qwen.ai OAuth**: [docs/QWEN.md](docs/en/QWEN.md) - Qwen.ai setup and authentication
267
+ - **Custom prompts**: [docs/CUSTOM_SYSTEM_PROMPTS.md](docs/en/CUSTOM_SYSTEM_PROMPTS.md) - Customize commit message style
268
+ - **Troubleshooting**: [docs/TROUBLESHOOTING.md](docs/en/TROUBLESHOOTING.md) - Common issues and solutions
269
+ - **Contributing**: [docs/CONTRIBUTING.md](docs/en/CONTRIBUTING.md) - Development setup and guidelines
207
270
 
208
271
  ---
209
272
 
@@ -213,7 +276,7 @@ See `.gac.env.example` for all available options.
213
276
 
214
277
  Made with ❤️ for developers who want better commit messages
215
278
 
216
- [⭐ Star us on GitHub](https://github.com/cellwebb/gac) • [🐛 Report issues](https://github.com/cellwebb/gac/issues) • [📖 Full docs](USAGE.md)
279
+ [⭐ Star us on GitHub](https://github.com/cellwebb/gac) • [🐛 Report issues](https://github.com/cellwebb/gac/issues) • [📖 Full docs](docs/en/USAGE.md)
217
280
 
218
281
  </div>
219
282
 
@@ -0,0 +1,56 @@
1
+ gac/__init__.py,sha256=z9yGInqtycFIT3g1ca24r-A3699hKVaRqGUI79wsmMc,415
2
+ gac/__version__.py,sha256=KrwCaC6wbdQ2R2fD_kzJyUu5mtDSBRAe_FPDHQiGA4I,66
3
+ gac/ai.py,sha256=HnXmRFmUJin5k755iBqSLgKYssjShjKXz9SwICEpMag,3835
4
+ gac/ai_utils.py,sha256=FHN-cbU6_ofICqJOdw1TmN2z1lcW1KqVC8xXFF38HwA,11081
5
+ gac/auth_cli.py,sha256=D1UcpOdyLqnKNJQTBq2lHCHBaxFZsRbM4Krvg-1-NfA,6822
6
+ gac/cli.py,sha256=MgzcRwBrgq10uczRpWh3rIVTvBGCBdvldZloqEwWQRQ,7940
7
+ gac/config.py,sha256=dycwZfB7i0XyNA8qySyxH1UpV0Dkw_FsCluB9SqUcZQ,4667
8
+ gac/config_cli.py,sha256=o8UEEoWwZJ7xmDUbNPZEnbdANd1nLb4HMpmqMbcbbaY,2376
9
+ gac/constants.py,sha256=ckzm2yM2-DA_98TRpetX5mzQ28TqJPGtm0cEZnRj_A8,9958
10
+ gac/diff_cli.py,sha256=wnVQ9OFGnM0d2Pj9WVjWbo0jxqIuRHVAwmb8wU9Pa3E,5676
11
+ gac/errors.py,sha256=ysDIVRCd0YQVTOW3Q6YzdolxCdtkoQCAFf3_jrqbjUY,7916
12
+ gac/git.py,sha256=_NRkOyb6u8SiPrG-t-7GspjdSp7yptmNj1gT8VexmcY,12913
13
+ gac/init_cli.py,sha256=UbldjcEjypHHpAn49tMddzaFQtwwAjlf8ZBQVPoz9YQ,2299
14
+ gac/language_cli.py,sha256=NHg8Q2cAjt4-VOaIYdU5FL_ISvSyu5rbgs232CqfhzM,12929
15
+ gac/main.py,sha256=W9OafYQ5_QP87RWZTBEvdEu-aCf8MPRhF5XnnZ28lCo,44193
16
+ gac/model_cli.py,sha256=p5bkPxJrXd7vyN2vPP91I-TPyqRdvO3X1P-nw_95BAI,18342
17
+ gac/preprocess.py,sha256=hk2p2X4-xVDvuy-T1VMzMa9k5fTUbhlWDyw89DCf81Q,15379
18
+ gac/prompt.py,sha256=3pLc6Sfe6VVc3WBNg-Y7yaHcfhwn4aEi01Ro32CZqtQ,36262
19
+ gac/security.py,sha256=QT91mBEo2Y7la-aXvKuF2zhWuoOSXb6PWKLJ93kSy2k,9926
20
+ gac/utils.py,sha256=CiUSiGasX2myqjMaZPgrM_WZlCFhFogvdxhNTc3kn4w,12637
21
+ gac/workflow_utils.py,sha256=rGN7PqTqeUFLn260gm3hKyzF1PDVVuEsV1i2QHu2EO4,8118
22
+ gac/oauth/__init__.py,sha256=wwfeIMGgpIAb8-ptLcSDyK_sM72HI1bkULyJm7BwVs8,614
23
+ gac/oauth/claude_code.py,sha256=UqHrB2VbJsKeB2dq2T7qcScUPxCE1PaYCD5S3VwsLfU,14101
24
+ gac/oauth/qwen_oauth.py,sha256=Gs2L7VM8FopAE9-wzWyC64MNPmsBu8GrDI2vncqE0GI,10995
25
+ gac/oauth/token_store.py,sha256=d-MfgB3_hfqmn90hR73ajqNRgrPnoQLJN_Bra00Bfsw,2523
26
+ gac/providers/__init__.py,sha256=xUtR2-MZRrRVC0A51M6BsiN2cdth52BZVIEbDkH6Wdc,2969
27
+ gac/providers/anthropic.py,sha256=lqOmnHbHde6pifOogclPL9Wvb-4YPIB9wQDvI346dC0,2374
28
+ gac/providers/azure_openai.py,sha256=paH6LJL_mA-812QutfMbKmoPpenQMirolhQ7x70vtiE,4072
29
+ gac/providers/cerebras.py,sha256=WsqT5pTE-j7psOshddyIBAGdXD3Twxqtdym-gaM_-vQ,1984
30
+ gac/providers/chutes.py,sha256=xBoOcawwCKjqVk26W-yYfgewn-sCbBEet36U9PSYyNw,2955
31
+ gac/providers/claude_code.py,sha256=RwxOT7ARgRlUazPgU4mfzYpSW6P12NxttK-WfJJc6pw,4411
32
+ gac/providers/custom_anthropic.py,sha256=XdHv_OXeIi2SkIUCYeEV_q3InOvrYOHBZJ0P-rTJohM,5682
33
+ gac/providers/custom_openai.py,sha256=ImwWBcda5Gr51gPtBdUL2ApLHx3eEHV8e-9SfYxMaao,4095
34
+ gac/providers/deepseek.py,sha256=r3V5jPm0zPba8XIcZwswM1wXw8V6JWe5JVogmA6XsY8,1979
35
+ gac/providers/fireworks.py,sha256=v2qPfE3cSRQOIPrSiWRcD0aS-p-Cu82IdHXXOk9kIrQ,2032
36
+ gac/providers/gemini.py,sha256=GN6AsUbaidrM6blVD65TAE2hmACbOQBbIIW849jM0hI,3680
37
+ gac/providers/groq.py,sha256=r780wFe40niJ1ObxbYEU3SbR0Nsewrfxwmk51MFWTsk,2959
38
+ gac/providers/kimi_coding.py,sha256=PaCuqtBB3PWDYb36-tMfQUJpoLoqoMti5bMRhRYvVoU,2880
39
+ gac/providers/lmstudio.py,sha256=NTHig1naUm01R2GriGVAxozoPJulQZT2AK_kRlWEzSU,2561
40
+ gac/providers/minimax.py,sha256=-_mS5FajMLgXcz-K6-dhIo6Obk5ML4sMLduEQsvmGSs,1964
41
+ gac/providers/mistral.py,sha256=pUJ0mDbxK8WXH5AUJ8d2g5eoyI2FBkdnqbv4ijpP4Vw,1964
42
+ gac/providers/moonshot.py,sha256=UEEfgNhd2I3cDw2IwlC19u0ufLEM4AWgp0WW0PS2wmE,2004
43
+ gac/providers/ollama.py,sha256=OFKDnzFyzG7_OGPDgiK367-7FKuXmr84LFU9kL1iJjI,2427
44
+ gac/providers/openai.py,sha256=nsiOXljNfB_eeaRu09OIwHZpGuhF5WoXWCx99Hz7Kdo,1962
45
+ gac/providers/openrouter.py,sha256=tFmC9KfLcNAEFiiBxEuX5pzgVuXa6cdtUKmnKLtadpk,2544
46
+ gac/providers/qwen.py,sha256=xw0N2Tx0_FVFi_RPFxZgPcGlvexhpHSp7XVh7ej2Za4,2983
47
+ gac/providers/replicate.py,sha256=ScSz-Bzin77VG3XZowc-mIHA2Nj9B2NTeMPHmFZOFdY,4212
48
+ gac/providers/streamlake.py,sha256=_YAcEqmn6YFUzIN1NjKavGaqF5j1DyyrB5MlwB6omgY,2387
49
+ gac/providers/synthetic.py,sha256=U7XGtReX7extGOp_qvVrAcFcq4hdfcdAF2y7oURevBc,2201
50
+ gac/providers/together.py,sha256=Bg1cb4DCSjgdZoa2RDyt9hC9NYTcXZJ_b5MZ4vWlFp8,2009
51
+ gac/providers/zai.py,sha256=RC_wWOrs1OtPlkOVsBqQ0BqYF7DSymqHq6gZznhCEbk,3088
52
+ gac-3.8.1.dist-info/METADATA,sha256=A22DCTy3KBqB2BNifXjpFszAnov2TuRo0WgKF4uRpQg,11438
53
+ gac-3.8.1.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
54
+ gac-3.8.1.dist-info/entry_points.txt,sha256=tdjN-XMmcWfL92swuRAjT62bFLOAwk9bTMRLGP5Z4aI,36
55
+ gac-3.8.1.dist-info/licenses/LICENSE,sha256=vOab37NouL1PNs5BswnPayrMCqaN2sqLfMQfqPDrpZg,1103
56
+ gac-3.8.1.dist-info/RECORD,,
@@ -1,4 +1,4 @@
1
1
  Wheel-Version: 1.0
2
- Generator: hatchling 1.27.0
2
+ Generator: hatchling 1.28.0
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
@@ -1,41 +0,0 @@
1
- gac/__init__.py,sha256=z9yGInqtycFIT3g1ca24r-A3699hKVaRqGUI79wsmMc,415
2
- gac/__version__.py,sha256=oFvFxf8Y4B3yJ6IccvXPcWK4lxUIK8Dr3Vc_FOg4a8E,67
3
- gac/ai.py,sha256=fg642la4yMecOwfZHQ7Ixl6z-5_qj9Q1SxwVMnPDCcY,4244
4
- gac/ai_utils.py,sha256=EDkw0nnwnV5Ba2CLEo2HC15-L5BZtGJATin5Az0ZHkg,7426
5
- gac/cli.py,sha256=crUUI6osYtE3QAZ7r6DRlVk9gR3X2PctzS1sssVQ9_g,5070
6
- gac/config.py,sha256=n3TkQYBqSKkH68QUM6M7kwSK83ghmItoh0p5ZDFnhHA,1746
7
- gac/config_cli.py,sha256=v9nFHZO1RvK9fzHyuUS6SG-BCLHMsdOMDwWamBhVVh4,1608
8
- gac/constants.py,sha256=8GHB7yeK2CYT0t80-k9N6LvgZPe-StNH3dK3NsUO46c,4977
9
- gac/diff_cli.py,sha256=wnVQ9OFGnM0d2Pj9WVjWbo0jxqIuRHVAwmb8wU9Pa3E,5676
10
- gac/errors.py,sha256=ysDIVRCd0YQVTOW3Q6YzdolxCdtkoQCAFf3_jrqbjUY,7916
11
- gac/git.py,sha256=g6tvph50zV-wrTWrxARYXEpl0NeI8-ffFwHoqhp3fSE,8033
12
- gac/init_cli.py,sha256=JsHMZBFt_2aFMATlbL_ugSZGQGJf8VRosFjNIRGNM8U,6573
13
- gac/main.py,sha256=dJrBSN5rJlbWspLGDx3eUJU4uZFVhvuv7qtgIvF7RH4,14723
14
- gac/preprocess.py,sha256=aMxsjGxy9YP752NWjgf0KP5Sn6p8keIJAGlMYr8jDgQ,15373
15
- gac/prompt.py,sha256=d_kBXmhf3bDVLyDj8J7AS7GBAxF2jlc8lXoHX3Dzi5k,24255
16
- gac/security.py,sha256=15Yp6YR8QC4eECJi1BUCkMteh_veZXUbLL6W8qGcDm4,9920
17
- gac/utils.py,sha256=nV42-brIHW_fBg7x855GM8nRrqEBbRzTSweg-GTyGE8,3971
18
- gac/providers/__init__.py,sha256=3WTzh3ngAdvR40eezpMMFD7Zibb-LxexDYUcSm4axQI,1305
19
- gac/providers/anthropic.py,sha256=VK5d1s1PmBNDwh_x7illQ2CIZIHNIYU28btVfizwQPs,2036
20
- gac/providers/cerebras.py,sha256=Ik8lhlsliGJVkgDgqlThfpra9tqbdYQZkaC4eNxRd9w,1648
21
- gac/providers/chutes.py,sha256=cclJOLuGVIiiaF-9Bs1kH6SSOhEmduGB2zZ86KIaXKw,2617
22
- gac/providers/custom_anthropic.py,sha256=l5-bRusVA19LFQ5QCZBU0Wa1rWbxoBHkWCwszQMPzvw,5545
23
- gac/providers/custom_openai.py,sha256=EB1H21oV6CJNPGtM7u2EP7sGaPhCQ0lQAcIcj-2PXvE,3975
24
- gac/providers/deepseek.py,sha256=leT2S4_CE6JzwF3skDd4umBsu2rkJOJ66AfOdSL5wGc,1643
25
- gac/providers/fireworks.py,sha256=zsWhf6LMVdtsD9keXRFwgn9lCQigz6VmrDl6vqIVkdI,1688
26
- gac/providers/gemini.py,sha256=kl9WKdPm_ANYk0hsrUyMdACzR0cm8Eui9M1IwObYW-4,3348
27
- gac/providers/groq.py,sha256=9v2fAjDa_iRNHFptiUBN8Vt7ZDKkW_JOmIBeYvycD1M,2806
28
- gac/providers/lmstudio.py,sha256=R82-f0tWdFfGQxLT6o3Q2tfvYguF7ESUg9DEUHNyrDk,2146
29
- gac/providers/minimax.py,sha256=oI5rEVlkcYenNUNH53zS00X8NqpcZ1gMsTGzQCsmes4,1630
30
- gac/providers/ollama.py,sha256=hPkagbhEiAoH9RTET4EQe9-lTL0YmMRCbQ5dVbRQw6Q,2095
31
- gac/providers/openai.py,sha256=iHVD6bHf57W-QmW7u1Ee5vOpev7XZ-K75NcolLfebOk,1630
32
- gac/providers/openrouter.py,sha256=H3ce8JcRUYq1I30lOjGESdX7jfoPkW3mKAYnc2aYfBw,2204
33
- gac/providers/streamlake.py,sha256=KAA2ZnpuEI5imzvdWVWUhEBHSP0BMnprKXte6CbwBWY,2047
34
- gac/providers/synthetic.py,sha256=sRMIJTS9LpcXd9A7qp_ZjZxdqtTKRn9fl1W4YwJZP4c,1855
35
- gac/providers/together.py,sha256=1bUIVHfYzcEDw4hQPE8qV6hjc2JNHPv_khVgpk2IJxI,1667
36
- gac/providers/zai.py,sha256=kywhhrCfPBu0rElZyb-iENxQxxpVGykvePuL4xrXlaU,2739
37
- gac-1.13.0.dist-info/METADATA,sha256=pu638LGgkEXsDWzoHnchIkOOne5MjzQ25ILkDtXVOfs,7878
38
- gac-1.13.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
39
- gac-1.13.0.dist-info/entry_points.txt,sha256=tdjN-XMmcWfL92swuRAjT62bFLOAwk9bTMRLGP5Z4aI,36
40
- gac-1.13.0.dist-info/licenses/LICENSE,sha256=vOab37NouL1PNs5BswnPayrMCqaN2sqLfMQfqPDrpZg,1103
41
- gac-1.13.0.dist-info/RECORD,,