gac 1.13.0__py3-none-any.whl → 3.6.0__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: gac
3
- Version: 1.13.0
3
+ Version: 3.6.0
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,6 +40,9 @@ 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
 
@@ -49,12 +52,14 @@ Description-Content-Type: text/markdown
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
+ - **Replicate** • **Streamlake** • **Synthetic.new** • **Together AI** • **Z.AI** • **Z.AI Coding**
113
+ - **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,26 @@ 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
+ - **Custom prompts**: [docs/CUSTOM_SYSTEM_PROMPTS.md](docs/en/CUSTOM_SYSTEM_PROMPTS.md) - Customize commit message style
266
+ - **Troubleshooting**: [docs/TROUBLESHOOTING.md](docs/en/TROUBLESHOOTING.md) - Common issues and solutions
267
+ - **Contributing**: [docs/CONTRIBUTING.md](docs/en/CONTRIBUTING.md) - Development setup and guidelines
207
268
 
208
269
  ---
209
270
 
@@ -213,7 +274,7 @@ See `.gac.env.example` for all available options.
213
274
 
214
275
  Made with ❤️ for developers who want better commit messages
215
276
 
216
- [⭐ Star us on GitHub](https://github.com/cellwebb/gac) • [🐛 Report issues](https://github.com/cellwebb/gac/issues) • [📖 Full docs](USAGE.md)
277
+ [⭐ Star us on GitHub](https://github.com/cellwebb/gac) • [🐛 Report issues](https://github.com/cellwebb/gac/issues) • [📖 Full docs](docs/en/USAGE.md)
217
278
 
218
279
  </div>
219
280
 
@@ -0,0 +1,53 @@
1
+ gac/__init__.py,sha256=z9yGInqtycFIT3g1ca24r-A3699hKVaRqGUI79wsmMc,415
2
+ gac/__version__.py,sha256=QjkK28WCwoefBMwiKqFYy76cOVTGklvGTI3wsZ1eIDk,66
3
+ gac/ai.py,sha256=HnXmRFmUJin5k755iBqSLgKYssjShjKXz9SwICEpMag,3835
4
+ gac/ai_utils.py,sha256=YpMEXCXkY1KqLIoYOmMGwVzTxUq-jof_v8VYbsgFMl0,8940
5
+ gac/auth_cli.py,sha256=Bd2TSjoVruOwzcPjDvyjfuKtlBr_wEScf8AWsddKfU0,2224
6
+ gac/cli.py,sha256=ZbUGyKHuxfW1p6zaiTl8FU_tIYaxPN36tCxLYBinDFk,7450
7
+ gac/config.py,sha256=_EWAtHL9FMrvO4wD0ReZQEstKzhF1f2rbSm9dWCT350,2155
8
+ gac/config_cli.py,sha256=o8UEEoWwZJ7xmDUbNPZEnbdANd1nLb4HMpmqMbcbbaY,2376
9
+ gac/constants.py,sha256=nd8aiNCAsvP1OM4VWwXjonqA7RAtPwTheA__GrVuP5o,9700
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=jL26ti3t3-3ykV20tJaOdNsDFPKJoqKZX1fg20uYLGM,41872
16
+ gac/model_cli.py,sha256=DGI8V6QWyI07KeVYJMzXTMxqQg4crhnSfuOUYiZYygE,16013
17
+ gac/preprocess.py,sha256=hk2p2X4-xVDvuy-T1VMzMa9k5fTUbhlWDyw89DCf81Q,15379
18
+ gac/prompt.py,sha256=MzW-OzixAOltVcIVaRp6_hm8HscxRcmxj9Jh94P6Rvo,35454
19
+ gac/security.py,sha256=QT91mBEo2Y7la-aXvKuF2zhWuoOSXb6PWKLJ93kSy2k,9926
20
+ gac/utils.py,sha256=gTpc9zLzy3-3L5k-V5uSeFI-NnSPabA1GGVwSgpeMSk,11709
21
+ gac/workflow_utils.py,sha256=-O4QRfY1bbv2lh1tpTaAEd_N0OE4eHV6E_vRvzBCFtk,8268
22
+ gac/oauth/__init__.py,sha256=hPSGHlt-BFZXSodg-n6S405-5YZComyV_iEtzkPumdQ,46
23
+ gac/oauth/claude_code.py,sha256=S4XsamRKOJoBwXo3GyhhcP5ypj3RE2akoBSo2yojtS8,12120
24
+ gac/providers/__init__.py,sha256=th44JWjSQl8YgbLUmbRHXZS8jDXDFuBLeKpXDhL979w,2889
25
+ gac/providers/anthropic.py,sha256=VK5d1s1PmBNDwh_x7illQ2CIZIHNIYU28btVfizwQPs,2036
26
+ gac/providers/azure_openai.py,sha256=X1T1jtJDQmTw2Qm_I2onzEUDpfRQ49mj1WDGBZ3pXlI,3919
27
+ gac/providers/cerebras.py,sha256=Ik8lhlsliGJVkgDgqlThfpra9tqbdYQZkaC4eNxRd9w,1648
28
+ gac/providers/chutes.py,sha256=cclJOLuGVIiiaF-9Bs1kH6SSOhEmduGB2zZ86KIaXKw,2617
29
+ gac/providers/claude_code.py,sha256=e_j0n0flN6m1UsY_v1lzwcy1miC9pynPY-1Fbq2akyw,4069
30
+ gac/providers/custom_anthropic.py,sha256=aqtMdLnbwFjXkQzo7-pKfhIHktFuePVsnfDJOFJvDeM,5529
31
+ gac/providers/custom_openai.py,sha256=kLRfClY6kdN8FGsFMYJVFCL82d34tnHZ9IPSZ2VPK2Q,3942
32
+ gac/providers/deepseek.py,sha256=leT2S4_CE6JzwF3skDd4umBsu2rkJOJ66AfOdSL5wGc,1643
33
+ gac/providers/fireworks.py,sha256=zsWhf6LMVdtsD9keXRFwgn9lCQigz6VmrDl6vqIVkdI,1688
34
+ gac/providers/gemini.py,sha256=kl9WKdPm_ANYk0hsrUyMdACzR0cm8Eui9M1IwObYW-4,3348
35
+ gac/providers/groq.py,sha256=9v2fAjDa_iRNHFptiUBN8Vt7ZDKkW_JOmIBeYvycD1M,2806
36
+ gac/providers/kimi_coding.py,sha256=Nj8iojesCvCbwEEH3F8xNchIE_fmA1S2SMjGhD9arek,2727
37
+ gac/providers/lmstudio.py,sha256=R82-f0tWdFfGQxLT6o3Q2tfvYguF7ESUg9DEUHNyrDk,2146
38
+ gac/providers/minimax.py,sha256=oI5rEVlkcYenNUNH53zS00X8NqpcZ1gMsTGzQCsmes4,1630
39
+ gac/providers/mistral.py,sha256=b2Du1nJutKjmJXmsXz4Ne43Yn52OSS0q6BKGoZnfH8Q,1630
40
+ gac/providers/moonshot.py,sha256=Wy0RdYlKCkeRBv40jAJkybjXh420eb2btrTPTLioTbQ,1662
41
+ gac/providers/ollama.py,sha256=hPkagbhEiAoH9RTET4EQe9-lTL0YmMRCbQ5dVbRQw6Q,2095
42
+ gac/providers/openai.py,sha256=iHVD6bHf57W-QmW7u1Ee5vOpev7XZ-K75NcolLfebOk,1630
43
+ gac/providers/openrouter.py,sha256=H3ce8JcRUYq1I30lOjGESdX7jfoPkW3mKAYnc2aYfBw,2204
44
+ gac/providers/replicate.py,sha256=TjWZOIZBCq226zr_w0j0YpBxgtp0VY33yryd8q9akuo,3785
45
+ gac/providers/streamlake.py,sha256=KAA2ZnpuEI5imzvdWVWUhEBHSP0BMnprKXte6CbwBWY,2047
46
+ gac/providers/synthetic.py,sha256=sRMIJTS9LpcXd9A7qp_ZjZxdqtTKRn9fl1W4YwJZP4c,1855
47
+ gac/providers/together.py,sha256=1bUIVHfYzcEDw4hQPE8qV6hjc2JNHPv_khVgpk2IJxI,1667
48
+ gac/providers/zai.py,sha256=kywhhrCfPBu0rElZyb-iENxQxxpVGykvePuL4xrXlaU,2739
49
+ gac-3.6.0.dist-info/METADATA,sha256=aPkvY8fwgU4gtKZojVzp3nbsfCpeWVLNWwM4lAbeQ7g,11254
50
+ gac-3.6.0.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
51
+ gac-3.6.0.dist-info/entry_points.txt,sha256=tdjN-XMmcWfL92swuRAjT62bFLOAwk9bTMRLGP5Z4aI,36
52
+ gac-3.6.0.dist-info/licenses/LICENSE,sha256=vOab37NouL1PNs5BswnPayrMCqaN2sqLfMQfqPDrpZg,1103
53
+ gac-3.6.0.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,,