agentic-python-coder 3.1.0__py3-none-any.whl → 3.2.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.
@@ -201,4 +201,8 @@ def get_openrouter_llm(
201
201
  if "provider" in config:
202
202
  api_params.setdefault("extra_body", {})["provider"] = config["provider"]
203
203
 
204
+ # Reasoning/thinking tokens (e.g. Gemini 3 Flash thinking levels)
205
+ if "reasoning" in config:
206
+ api_params.setdefault("extra_body", {})["reasoning"] = config["reasoning"]
207
+
204
208
  return LLMConfig(client=client, model=model_id, api_params=api_params)
@@ -0,0 +1,7 @@
1
+ {
2
+ "path": "google/gemini-3.1-pro-preview",
3
+ "temperature": 0.0,
4
+ "max_tokens": 16384,
5
+ "streaming": true,
6
+ "request_timeout": 120
7
+ }
@@ -0,0 +1,6 @@
1
+ {
2
+ "path": "anthropic/claude-sonnet-4.6",
3
+ "temperature": 0.0,
4
+ "max_tokens": 16384,
5
+ "streaming": true
6
+ }
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: agentic-python-coder
3
- Version: 3.1.0
3
+ Version: 3.2.0
4
4
  Summary: A lightweight Python coding agent that writes, executes, and iterates on code through natural language instructions
5
5
  Author: Stefan Szeider
6
6
  License: Apache-2.0
@@ -2,7 +2,7 @@ agentic_python_coder/__init__.py,sha256=AE7tDIivH7H0BBwhrR9C64rY6pO1d6AWDQYGAvGj
2
2
  agentic_python_coder/agent.py,sha256=Z7I0zvh3XEouPgt9hvkSIKYuZyHfsTrsTEFiJjsK4hk,12821
3
3
  agentic_python_coder/cli.py,sha256=pjmKHwLmC41wJ4Z6tQPFNeS2VwC-HCvtXklmv__xOco,14349
4
4
  agentic_python_coder/kernel.py,sha256=Xjqsl-Rzb6JBqWMTE4JBsxNsy1eRVUL5FvtfT1OFLD4,20541
5
- agentic_python_coder/llm.py,sha256=8BxNK8FmECbcJhP5qeB8IxErbm1NKBZO4Z-bB5-JtaE,6157
5
+ agentic_python_coder/llm.py,sha256=gfuJElwStUVmr3f26pjU4hW2C8jYZeVFX21-Zct2E48,6341
6
6
  agentic_python_coder/mcp_server.py,sha256=U_YfjeUvaVJ4poCsIqkzOx70J190RYH2Ln_H5tDc6Zg,18508
7
7
  agentic_python_coder/project_md.py,sha256=c4A-rbsc3ryqUkCJLGOKBHH8QJL5kAqvTSsM0tDeD4Y,3041
8
8
  agentic_python_coder/runner.py,sha256=AtdtRusD5ThTlsdL2SDjYk73jD0fYRWkJ4vmpeIWBl4,12683
@@ -26,6 +26,7 @@ agentic_python_coder/examples/regex/sample_tasks/phone_validation.md,sha256=yoij
26
26
  agentic_python_coder/examples/regex/sample_tasks/url_parsing.md,sha256=C2E6ze-AeIXbzM-gB0aJ3_QSiaJB3c2MbMTNJXzuYhA,1683
27
27
  agentic_python_coder/models/deepseek31.json,sha256=m3h2-rieY23gTXj9AOFoWxnrYUfqNpDpyNpPW0SMqVE,125
28
28
  agentic_python_coder/models/gemini25.json,sha256=Z9qJrIUNel366A3hSdg3qQixTh-EU8lehXKebW-XEUY,144
29
+ agentic_python_coder/models/gemini31.json,sha256=C7IZ3-6H0zKStftTAc6dTaXUSEDgeqecy-VaLjACPIo,138
29
30
  agentic_python_coder/models/gemini3flash.json,sha256=S0AMVpzi3O5CQk68Q3Hi8iCHXMQQFnM4NbSh23x0qIM,91
30
31
  agentic_python_coder/models/gemini3pro.json,sha256=ptozne-ZwpmuXzpt2x0ZApMIvb5VsWskqI36XscCsrg,152
31
32
  agentic_python_coder/models/gpt52.json,sha256=rGYoD83_yioSDJvO3o4FSFhi0B2yTaOpCgr_XpRaPWk,105
@@ -33,10 +34,11 @@ agentic_python_coder/models/grok41.json,sha256=bUFtp2orkBmfiLH7mE8SaS0YEe2kJFF1E
33
34
  agentic_python_coder/models/opus45.json,sha256=ujBiZiA-6YNbQxd3xWlGT7YGtEtbWMC8e2TP0I8Gtho,108
34
35
  agentic_python_coder/models/qwen3.json,sha256=Lj39r787EcfUcKXfO52aplYurkpM9mG1qg71UkaqVfQ,115
35
36
  agentic_python_coder/models/sonnet45.json,sha256=SXDBHwSRMlqG77i4OhvNDlHL7fESnCoqmEplXm3gP4k,110
37
+ agentic_python_coder/models/sonnet46.json,sha256=vQBYeKZUmHkfpYrSCMEJp6gZnxoMUXpne-UNQx5aR4Q,110
36
38
  agentic_python_coder/prompts/system.md,sha256=hREDVAhJXwCBAgJ3AE9JD6j-JRHREUPlkRSvThOvM3A,3807
37
39
  agentic_python_coder/prompts/system_todo.md,sha256=TuNeeUNS9KqyF62Da6t2mlUCYhKsgzwGe5ic_vFPDqw,5054
38
- agentic_python_coder-3.1.0.dist-info/METADATA,sha256=xnk9vllNKDqyvwZrIc2LH-g7d2O87wGzd5B2i6PAqps,11564
39
- agentic_python_coder-3.1.0.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
40
- agentic_python_coder-3.1.0.dist-info/entry_points.txt,sha256=XIW3nZzL4kJ-Igohilj_mTvBcCyHBouDq2jmGzDILrk,107
41
- agentic_python_coder-3.1.0.dist-info/licenses/LICENSE,sha256=R9-M_V-SPdN71IphOVzM7kCNpUYs_hwj7rtroTwDhs0,11362
42
- agentic_python_coder-3.1.0.dist-info/RECORD,,
40
+ agentic_python_coder-3.2.0.dist-info/METADATA,sha256=n1Sonp0YG8x2A7ONGO0TKN5lALfFiwNPT_ZZQOMtgQc,11564
41
+ agentic_python_coder-3.2.0.dist-info/WHEEL,sha256=QccIxa26bgl1E6uMy58deGWi-0aeIkkangHcxk2kWfw,87
42
+ agentic_python_coder-3.2.0.dist-info/entry_points.txt,sha256=XIW3nZzL4kJ-Igohilj_mTvBcCyHBouDq2jmGzDILrk,107
43
+ agentic_python_coder-3.2.0.dist-info/licenses/LICENSE,sha256=R9-M_V-SPdN71IphOVzM7kCNpUYs_hwj7rtroTwDhs0,11362
44
+ agentic_python_coder-3.2.0.dist-info/RECORD,,
@@ -1,4 +1,4 @@
1
1
  Wheel-Version: 1.0
2
- Generator: hatchling 1.28.0
2
+ Generator: hatchling 1.29.0
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any