code-lm 0.1.2__tar.gz → 0.1.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.
Files changed (29) hide show
  1. {code_lm-0.1.2/src/code_lm.egg-info → code_lm-0.1.3}/PKG-INFO +1 -1
  2. {code_lm-0.1.2 → code_lm-0.1.3}/pyproject.toml +1 -1
  3. {code_lm-0.1.2 → code_lm-0.1.3}/setup.py +1 -1
  4. {code_lm-0.1.2 → code_lm-0.1.3/src/code_lm.egg-info}/PKG-INFO +1 -1
  5. {code_lm-0.1.2 → code_lm-0.1.3}/src/gemini_cli/tools/tree_tool.py +0 -1
  6. {code_lm-0.1.2 → code_lm-0.1.3}/MANIFEST.in +0 -0
  7. {code_lm-0.1.2 → code_lm-0.1.3}/README.md +0 -0
  8. {code_lm-0.1.2 → code_lm-0.1.3}/setup.cfg +0 -0
  9. {code_lm-0.1.2 → code_lm-0.1.3}/src/code_lm.egg-info/SOURCES.txt +0 -0
  10. {code_lm-0.1.2 → code_lm-0.1.3}/src/code_lm.egg-info/dependency_links.txt +0 -0
  11. {code_lm-0.1.2 → code_lm-0.1.3}/src/code_lm.egg-info/entry_points.txt +0 -0
  12. {code_lm-0.1.2 → code_lm-0.1.3}/src/code_lm.egg-info/requires.txt +0 -0
  13. {code_lm-0.1.2 → code_lm-0.1.3}/src/code_lm.egg-info/top_level.txt +0 -0
  14. {code_lm-0.1.2 → code_lm-0.1.3}/src/gemini_cli/__init__.py +0 -0
  15. {code_lm-0.1.2 → code_lm-0.1.3}/src/gemini_cli/config.py +0 -0
  16. {code_lm-0.1.2 → code_lm-0.1.3}/src/gemini_cli/main.py +0 -0
  17. {code_lm-0.1.2 → code_lm-0.1.3}/src/gemini_cli/models/__init__.py +0 -0
  18. {code_lm-0.1.2 → code_lm-0.1.3}/src/gemini_cli/models/gemini.py +0 -0
  19. {code_lm-0.1.2 → code_lm-0.1.3}/src/gemini_cli/models/openrouter.py +0 -0
  20. {code_lm-0.1.2 → code_lm-0.1.3}/src/gemini_cli/tools/__init__.py +0 -0
  21. {code_lm-0.1.2 → code_lm-0.1.3}/src/gemini_cli/tools/base.py +0 -0
  22. {code_lm-0.1.2 → code_lm-0.1.3}/src/gemini_cli/tools/directory_tools.py +0 -0
  23. {code_lm-0.1.2 → code_lm-0.1.3}/src/gemini_cli/tools/file_tools.py +0 -0
  24. {code_lm-0.1.2 → code_lm-0.1.3}/src/gemini_cli/tools/quality_tools.py +0 -0
  25. {code_lm-0.1.2 → code_lm-0.1.3}/src/gemini_cli/tools/summarizer_tool.py +0 -0
  26. {code_lm-0.1.2 → code_lm-0.1.3}/src/gemini_cli/tools/system_tools.py +0 -0
  27. {code_lm-0.1.2 → code_lm-0.1.3}/src/gemini_cli/tools/task_complete_tool.py +0 -0
  28. {code_lm-0.1.2 → code_lm-0.1.3}/src/gemini_cli/tools/test_runner.py +0 -0
  29. {code_lm-0.1.2 → code_lm-0.1.3}/src/gemini_cli/utils.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: code-lm
3
- Version: 0.1.2
3
+ Version: 0.1.3
4
4
  Summary: An AI coding assistant CLI using OpenRouter and various LLM models.
5
5
  Home-page: https://github.com/Panagiotis897/lm-code
6
6
  Author: Panagiotis897
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "code-lm" # Updated project name
7
- version = "0.1.2" # Updated version
7
+ version = "0.1.3" # Updated version
8
8
  authors = [
9
9
  { name="Panagiotis897", email="your.email@example.com" }
10
10
  ]
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
2
2
 
3
3
  setup(
4
4
  name="code-lm", # The name of your package
5
- version="0.1.2", # Package version
5
+ version="0.1.3", # Package version
6
6
  description="A CLI for interacting with various LLM models using OpenRouter and other APIs.",
7
7
  long_description=open("README.md").read(), # Read from README.md
8
8
  long_description_content_type="text/markdown", # Markdown format
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: code-lm
3
- Version: 0.1.2
3
+ Version: 0.1.3
4
4
  Summary: An AI coding assistant CLI using OpenRouter and various LLM models.
5
5
  Home-page: https://github.com/Panagiotis897/lm-code
6
6
  Author: Panagiotis897
@@ -3,7 +3,6 @@ Tool for displaying directory structure using the 'tree' command.
3
3
  """
4
4
  import subprocess
5
5
  import logging
6
- from google.generativeai.types import FunctionDeclaration, Tool
7
6
 
8
7
  from .base import BaseTool
9
8
 
File without changes
File without changes
File without changes
File without changes
File without changes