mini-code-cli 0.0.2__tar.gz → 0.0.3__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: mini-code-cli
3
- Version: 0.0.2
3
+ Version: 0.0.3
4
4
  Summary: Minimal Coding CLI
5
5
  Author-email: Nikolai Rozanov <nikolai.rozanov@gmail.com>
6
6
  License: The MIT License (MIT)
@@ -30,8 +30,8 @@ pip3 install mini-code-cli
30
30
 
31
31
  2. Run agent: (get LLM running via SGLang or Vllm)
32
32
  ```bash
33
- mini_code_cli #run the agent loop
34
- mini_code_cli --url "0.0.0.0" --allowed-dir ./experiments/ --api-key "sk-dummy" #localhost and 30000 is default, allowed_dir ./ is default
33
+ mini-code #run the agent loop
34
+ mini-code --url "https://api.deepseek.com" --model "deepseek-v4-flash" --api-key "sk-dummy" --allowed-dir ./experiments/
35
35
  ```
36
36
 
37
37
 
@@ -10,8 +10,8 @@ pip3 install mini-code-cli
10
10
 
11
11
  2. Run agent: (get LLM running via SGLang or Vllm)
12
12
  ```bash
13
- mini_code_cli #run the agent loop
14
- mini_code_cli --url "0.0.0.0" --allowed-dir ./experiments/ --api-key "sk-dummy" #localhost and 30000 is default, allowed_dir ./ is default
13
+ mini-code #run the agent loop
14
+ mini-code --url "https://api.deepseek.com" --model "deepseek-v4-flash" --api-key "sk-dummy" --allowed-dir ./experiments/
15
15
  ```
16
16
 
17
17
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: mini-code-cli
3
- Version: 0.0.2
3
+ Version: 0.0.3
4
4
  Summary: Minimal Coding CLI
5
5
  Author-email: Nikolai Rozanov <nikolai.rozanov@gmail.com>
6
6
  License: The MIT License (MIT)
@@ -30,8 +30,8 @@ pip3 install mini-code-cli
30
30
 
31
31
  2. Run agent: (get LLM running via SGLang or Vllm)
32
32
  ```bash
33
- mini_code_cli #run the agent loop
34
- mini_code_cli --url "0.0.0.0" --allowed-dir ./experiments/ --api-key "sk-dummy" #localhost and 30000 is default, allowed_dir ./ is default
33
+ mini-code #run the agent loop
34
+ mini-code --url "https://api.deepseek.com" --model "deepseek-v4-flash" --api-key "sk-dummy" --allowed-dir ./experiments/
35
35
  ```
36
36
 
37
37
 
@@ -0,0 +1,8 @@
1
+ LICENSE
2
+ README.md
3
+ pyproject.toml
4
+ mini_code_cli/mini_code_cli.egg-info/PKG-INFO
5
+ mini_code_cli/mini_code_cli.egg-info/SOURCES.txt
6
+ mini_code_cli/mini_code_cli.egg-info/dependency_links.txt
7
+ mini_code_cli/mini_code_cli.egg-info/entry_points.txt
8
+ mini_code_cli/mini_code_cli.egg-info/top_level.txt
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ mini-code = mini_code_cli.agent_loop:main
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "mini-code-cli"
3
- version = "0.0.2"
3
+ version = "0.0.3"
4
4
  description = "Minimal Coding CLI"
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.10"
@@ -18,9 +18,9 @@ requires = ["setuptools>=61.0"]
18
18
  build-backend = "setuptools.build_meta"
19
19
 
20
20
  [tool.setuptools.packages.find]
21
- where = ["src"]
21
+ where = ["mini_code_cli"]
22
22
  include = ["*"]
23
23
 
24
24
  [project.scripts]
25
- mini-code-cli = "mini_code_cli:main"
25
+ mini-code = "mini_code_cli.agent_loop:main"
26
26
 
@@ -1,8 +0,0 @@
1
- LICENSE
2
- README.md
3
- pyproject.toml
4
- src/mini_code_cli.egg-info/PKG-INFO
5
- src/mini_code_cli.egg-info/SOURCES.txt
6
- src/mini_code_cli.egg-info/dependency_links.txt
7
- src/mini_code_cli.egg-info/entry_points.txt
8
- src/mini_code_cli.egg-info/top_level.txt
@@ -1,2 +0,0 @@
1
- [console_scripts]
2
- mini-code-cli = mini_code_cli:main
File without changes
File without changes