cortex-llm 1.0.4__tar.gz → 1.0.5__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 (58) hide show
  1. {cortex_llm-1.0.4 → cortex_llm-1.0.5}/PKG-INFO +3 -3
  2. {cortex_llm-1.0.4 → cortex_llm-1.0.5}/cortex/__init__.py +1 -1
  3. {cortex_llm-1.0.4 → cortex_llm-1.0.5}/cortex_llm.egg-info/PKG-INFO +3 -3
  4. {cortex_llm-1.0.4 → cortex_llm-1.0.5}/cortex_llm.egg-info/requires.txt +2 -2
  5. {cortex_llm-1.0.4 → cortex_llm-1.0.5}/pyproject.toml +3 -3
  6. {cortex_llm-1.0.4 → cortex_llm-1.0.5}/LICENSE +0 -0
  7. {cortex_llm-1.0.4 → cortex_llm-1.0.5}/README.md +0 -0
  8. {cortex_llm-1.0.4 → cortex_llm-1.0.5}/cortex/__main__.py +0 -0
  9. {cortex_llm-1.0.4 → cortex_llm-1.0.5}/cortex/config.py +0 -0
  10. {cortex_llm-1.0.4 → cortex_llm-1.0.5}/cortex/conversation_manager.py +0 -0
  11. {cortex_llm-1.0.4 → cortex_llm-1.0.5}/cortex/fine_tuning/__init__.py +0 -0
  12. {cortex_llm-1.0.4 → cortex_llm-1.0.5}/cortex/fine_tuning/dataset.py +0 -0
  13. {cortex_llm-1.0.4 → cortex_llm-1.0.5}/cortex/fine_tuning/mlx_lora_trainer.py +0 -0
  14. {cortex_llm-1.0.4 → cortex_llm-1.0.5}/cortex/fine_tuning/trainer.py +0 -0
  15. {cortex_llm-1.0.4 → cortex_llm-1.0.5}/cortex/fine_tuning/wizard.py +0 -0
  16. {cortex_llm-1.0.4 → cortex_llm-1.0.5}/cortex/gpu_validator.py +0 -0
  17. {cortex_llm-1.0.4 → cortex_llm-1.0.5}/cortex/inference_engine.py +0 -0
  18. {cortex_llm-1.0.4 → cortex_llm-1.0.5}/cortex/metal/__init__.py +0 -0
  19. {cortex_llm-1.0.4 → cortex_llm-1.0.5}/cortex/metal/gpu_validator.py +0 -0
  20. {cortex_llm-1.0.4 → cortex_llm-1.0.5}/cortex/metal/memory_pool.py +0 -0
  21. {cortex_llm-1.0.4 → cortex_llm-1.0.5}/cortex/metal/mlx_accelerator.py +0 -0
  22. {cortex_llm-1.0.4 → cortex_llm-1.0.5}/cortex/metal/mlx_compat.py +0 -0
  23. {cortex_llm-1.0.4 → cortex_llm-1.0.5}/cortex/metal/mlx_converter.py +0 -0
  24. {cortex_llm-1.0.4 → cortex_llm-1.0.5}/cortex/metal/mps_optimizer.py +0 -0
  25. {cortex_llm-1.0.4 → cortex_llm-1.0.5}/cortex/metal/optimizer.py +0 -0
  26. {cortex_llm-1.0.4 → cortex_llm-1.0.5}/cortex/metal/performance_profiler.py +0 -0
  27. {cortex_llm-1.0.4 → cortex_llm-1.0.5}/cortex/model_downloader.py +0 -0
  28. {cortex_llm-1.0.4 → cortex_llm-1.0.5}/cortex/model_manager.py +0 -0
  29. {cortex_llm-1.0.4 → cortex_llm-1.0.5}/cortex/quantization/__init__.py +0 -0
  30. {cortex_llm-1.0.4 → cortex_llm-1.0.5}/cortex/quantization/dynamic_quantizer.py +0 -0
  31. {cortex_llm-1.0.4 → cortex_llm-1.0.5}/cortex/template_registry/__init__.py +0 -0
  32. {cortex_llm-1.0.4 → cortex_llm-1.0.5}/cortex/template_registry/auto_detector.py +0 -0
  33. {cortex_llm-1.0.4 → cortex_llm-1.0.5}/cortex/template_registry/config_manager.py +0 -0
  34. {cortex_llm-1.0.4 → cortex_llm-1.0.5}/cortex/template_registry/interactive.py +0 -0
  35. {cortex_llm-1.0.4 → cortex_llm-1.0.5}/cortex/template_registry/registry.py +0 -0
  36. {cortex_llm-1.0.4 → cortex_llm-1.0.5}/cortex/template_registry/template_profiles/__init__.py +0 -0
  37. {cortex_llm-1.0.4 → cortex_llm-1.0.5}/cortex/template_registry/template_profiles/base.py +0 -0
  38. {cortex_llm-1.0.4 → cortex_llm-1.0.5}/cortex/template_registry/template_profiles/complex/__init__.py +0 -0
  39. {cortex_llm-1.0.4 → cortex_llm-1.0.5}/cortex/template_registry/template_profiles/complex/reasoning.py +0 -0
  40. {cortex_llm-1.0.4 → cortex_llm-1.0.5}/cortex/template_registry/template_profiles/standard/__init__.py +0 -0
  41. {cortex_llm-1.0.4 → cortex_llm-1.0.5}/cortex/template_registry/template_profiles/standard/alpaca.py +0 -0
  42. {cortex_llm-1.0.4 → cortex_llm-1.0.5}/cortex/template_registry/template_profiles/standard/chatml.py +0 -0
  43. {cortex_llm-1.0.4 → cortex_llm-1.0.5}/cortex/template_registry/template_profiles/standard/gemma.py +0 -0
  44. {cortex_llm-1.0.4 → cortex_llm-1.0.5}/cortex/template_registry/template_profiles/standard/llama.py +0 -0
  45. {cortex_llm-1.0.4 → cortex_llm-1.0.5}/cortex/template_registry/template_profiles/standard/simple.py +0 -0
  46. {cortex_llm-1.0.4 → cortex_llm-1.0.5}/cortex/ui/__init__.py +0 -0
  47. {cortex_llm-1.0.4 → cortex_llm-1.0.5}/cortex/ui/cli.py +0 -0
  48. {cortex_llm-1.0.4 → cortex_llm-1.0.5}/cortex/ui/markdown_render.py +0 -0
  49. {cortex_llm-1.0.4 → cortex_llm-1.0.5}/cortex/ui/terminal_app.py +0 -0
  50. {cortex_llm-1.0.4 → cortex_llm-1.0.5}/cortex_llm.egg-info/SOURCES.txt +0 -0
  51. {cortex_llm-1.0.4 → cortex_llm-1.0.5}/cortex_llm.egg-info/dependency_links.txt +0 -0
  52. {cortex_llm-1.0.4 → cortex_llm-1.0.5}/cortex_llm.egg-info/entry_points.txt +0 -0
  53. {cortex_llm-1.0.4 → cortex_llm-1.0.5}/cortex_llm.egg-info/not-zip-safe +0 -0
  54. {cortex_llm-1.0.4 → cortex_llm-1.0.5}/cortex_llm.egg-info/top_level.txt +0 -0
  55. {cortex_llm-1.0.4 → cortex_llm-1.0.5}/setup.cfg +0 -0
  56. {cortex_llm-1.0.4 → cortex_llm-1.0.5}/setup.py +0 -0
  57. {cortex_llm-1.0.4 → cortex_llm-1.0.5}/tests/test_apple_silicon.py +0 -0
  58. {cortex_llm-1.0.4 → cortex_llm-1.0.5}/tests/test_metal_optimization.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: cortex-llm
3
- Version: 1.0.4
3
+ Version: 1.0.5
4
4
  Summary: GPU-Accelerated LLM Terminal for Apple Silicon
5
5
  Home-page: https://github.com/faisalmumtaz/Cortex
6
6
  Author: Cortex Development Team
@@ -24,8 +24,8 @@ Requires-Python: >=3.11
24
24
  Description-Content-Type: text/markdown
25
25
  License-File: LICENSE
26
26
  Requires-Dist: torch>=2.1.0
27
- Requires-Dist: mlx>=0.10.0
28
- Requires-Dist: mlx-lm>=0.10.0
27
+ Requires-Dist: mlx>=0.30.4
28
+ Requires-Dist: mlx-lm>=0.30.5
29
29
  Requires-Dist: transformers>=4.36.0
30
30
  Requires-Dist: safetensors>=0.4.0
31
31
  Requires-Dist: huggingface-hub>=0.19.0
@@ -5,7 +5,7 @@ A high-performance terminal interface for running Hugging Face LLMs locally
5
5
  with exclusive GPU acceleration via Metal Performance Shaders (MPS) and MLX.
6
6
  """
7
7
 
8
- __version__ = "1.0.4"
8
+ __version__ = "1.0.5"
9
9
  __author__ = "Cortex Development Team"
10
10
  __license__ = "MIT"
11
11
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: cortex-llm
3
- Version: 1.0.4
3
+ Version: 1.0.5
4
4
  Summary: GPU-Accelerated LLM Terminal for Apple Silicon
5
5
  Home-page: https://github.com/faisalmumtaz/Cortex
6
6
  Author: Cortex Development Team
@@ -24,8 +24,8 @@ Requires-Python: >=3.11
24
24
  Description-Content-Type: text/markdown
25
25
  License-File: LICENSE
26
26
  Requires-Dist: torch>=2.1.0
27
- Requires-Dist: mlx>=0.10.0
28
- Requires-Dist: mlx-lm>=0.10.0
27
+ Requires-Dist: mlx>=0.30.4
28
+ Requires-Dist: mlx-lm>=0.30.5
29
29
  Requires-Dist: transformers>=4.36.0
30
30
  Requires-Dist: safetensors>=0.4.0
31
31
  Requires-Dist: huggingface-hub>=0.19.0
@@ -1,6 +1,6 @@
1
1
  torch>=2.1.0
2
- mlx>=0.10.0
3
- mlx-lm>=0.10.0
2
+ mlx>=0.30.4
3
+ mlx-lm>=0.30.5
4
4
  transformers>=4.36.0
5
5
  safetensors>=0.4.0
6
6
  huggingface-hub>=0.19.0
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "cortex-llm"
7
- version = "1.0.4"
7
+ version = "1.0.5"
8
8
  description = "GPU-Accelerated LLM Terminal for Apple Silicon"
9
9
  readme = "README.md"
10
10
  license = {text = "MIT"}
@@ -30,8 +30,8 @@ keywords = ["llm", "gpu", "metal", "mps", "apple-silicon", "ai", "machine-learni
30
30
  dependencies = [
31
31
  # Core ML/AI Libraries
32
32
  "torch>=2.1.0",
33
- "mlx>=0.10.0",
34
- "mlx-lm>=0.10.0",
33
+ "mlx>=0.30.4",
34
+ "mlx-lm>=0.30.5",
35
35
  "transformers>=4.36.0",
36
36
  "safetensors>=0.4.0",
37
37
  "huggingface-hub>=0.19.0",
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes