promptdiff-cli 0.1.0__tar.gz → 0.1.1__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 (34) hide show
  1. {promptdiff_cli-0.1.0 → promptdiff_cli-0.1.1}/PKG-INFO +5 -1
  2. {promptdiff_cli-0.1.0 → promptdiff_cli-0.1.1}/README.md +4 -0
  3. {promptdiff_cli-0.1.0 → promptdiff_cli-0.1.1}/promptdiff_cli.egg-info/PKG-INFO +5 -1
  4. {promptdiff_cli-0.1.0 → promptdiff_cli-0.1.1}/pyproject.toml +1 -1
  5. {promptdiff_cli-0.1.0 → promptdiff_cli-0.1.1}/LICENSE +0 -0
  6. {promptdiff_cli-0.1.0 → promptdiff_cli-0.1.1}/promptdiff/__init__.py +0 -0
  7. {promptdiff_cli-0.1.0 → promptdiff_cli-0.1.1}/promptdiff/api/__init__.py +0 -0
  8. {promptdiff_cli-0.1.0 → promptdiff_cli-0.1.1}/promptdiff/cli/__init__.py +0 -0
  9. {promptdiff_cli-0.1.0 → promptdiff_cli-0.1.1}/promptdiff/cli/context.py +0 -0
  10. {promptdiff_cli-0.1.0 → promptdiff_cli-0.1.1}/promptdiff/cli/main.py +0 -0
  11. {promptdiff_cli-0.1.0 → promptdiff_cli-0.1.1}/promptdiff/core/__init__.py +0 -0
  12. {promptdiff_cli-0.1.0 → promptdiff_cli-0.1.1}/promptdiff/core/diff.py +0 -0
  13. {promptdiff_cli-0.1.0 → promptdiff_cli-0.1.1}/promptdiff/core/exceptions.py +0 -0
  14. {promptdiff_cli-0.1.0 → promptdiff_cli-0.1.1}/promptdiff/core/projects.py +0 -0
  15. {promptdiff_cli-0.1.0 → promptdiff_cli-0.1.1}/promptdiff/core/prompts.py +0 -0
  16. {promptdiff_cli-0.1.0 → promptdiff_cli-0.1.1}/promptdiff/core/runner.py +0 -0
  17. {promptdiff_cli-0.1.0 → promptdiff_cli-0.1.1}/promptdiff/core/versions.py +0 -0
  18. {promptdiff_cli-0.1.0 → promptdiff_cli-0.1.1}/promptdiff/db/__init__.py +0 -0
  19. {promptdiff_cli-0.1.0 → promptdiff_cli-0.1.1}/promptdiff/db/base.py +0 -0
  20. {promptdiff_cli-0.1.0 → promptdiff_cli-0.1.1}/promptdiff/db/models.py +0 -0
  21. {promptdiff_cli-0.1.0 → promptdiff_cli-0.1.1}/promptdiff/db/session.py +0 -0
  22. {promptdiff_cli-0.1.0 → promptdiff_cli-0.1.1}/promptdiff_cli.egg-info/SOURCES.txt +0 -0
  23. {promptdiff_cli-0.1.0 → promptdiff_cli-0.1.1}/promptdiff_cli.egg-info/dependency_links.txt +0 -0
  24. {promptdiff_cli-0.1.0 → promptdiff_cli-0.1.1}/promptdiff_cli.egg-info/entry_points.txt +0 -0
  25. {promptdiff_cli-0.1.0 → promptdiff_cli-0.1.1}/promptdiff_cli.egg-info/requires.txt +0 -0
  26. {promptdiff_cli-0.1.0 → promptdiff_cli-0.1.1}/promptdiff_cli.egg-info/top_level.txt +0 -0
  27. {promptdiff_cli-0.1.0 → promptdiff_cli-0.1.1}/setup.cfg +0 -0
  28. {promptdiff_cli-0.1.0 → promptdiff_cli-0.1.1}/tests/test_cli.py +0 -0
  29. {promptdiff_cli-0.1.0 → promptdiff_cli-0.1.1}/tests/test_core_diff.py +0 -0
  30. {promptdiff_cli-0.1.0 → promptdiff_cli-0.1.1}/tests/test_core_projects.py +0 -0
  31. {promptdiff_cli-0.1.0 → promptdiff_cli-0.1.1}/tests/test_core_prompts.py +0 -0
  32. {promptdiff_cli-0.1.0 → promptdiff_cli-0.1.1}/tests/test_core_runner.py +0 -0
  33. {promptdiff_cli-0.1.0 → promptdiff_cli-0.1.1}/tests/test_core_versions.py +0 -0
  34. {promptdiff_cli-0.1.0 → promptdiff_cli-0.1.1}/tests/test_models.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: promptdiff-cli
3
- Version: 0.1.0
3
+ Version: 0.1.1
4
4
  Summary: Git for prompts - version, diff, and test your LLM prompts across any model
5
5
  Author: Raguram R
6
6
  License-Expression: MIT
@@ -69,8 +69,12 @@ pip install promptdiff-cli
69
69
 
70
70
  (Or, to run from source — see [Development](#development) below.)
71
71
 
72
+ No API key is required to install or to use `commit`, `log`, and `diff`. You'll only need one for `run` and `diff-output`, since those actually call a model.
73
+
72
74
  ## Quick start
73
75
 
76
+ `commit`, `log`, and `diff` work immediately after install — no API key needed. You'll only need a key for the `run` and `diff-output` commands, which actually call a model. See [API keys](#api-keys) below.
77
+
74
78
  ```bash
75
79
  # Create a project and switch to it
76
80
  promptdiff project create my-app
@@ -36,8 +36,12 @@ pip install promptdiff-cli
36
36
 
37
37
  (Or, to run from source — see [Development](#development) below.)
38
38
 
39
+ No API key is required to install or to use `commit`, `log`, and `diff`. You'll only need one for `run` and `diff-output`, since those actually call a model.
40
+
39
41
  ## Quick start
40
42
 
43
+ `commit`, `log`, and `diff` work immediately after install — no API key needed. You'll only need a key for the `run` and `diff-output` commands, which actually call a model. See [API keys](#api-keys) below.
44
+
41
45
  ```bash
42
46
  # Create a project and switch to it
43
47
  promptdiff project create my-app
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: promptdiff-cli
3
- Version: 0.1.0
3
+ Version: 0.1.1
4
4
  Summary: Git for prompts - version, diff, and test your LLM prompts across any model
5
5
  Author: Raguram R
6
6
  License-Expression: MIT
@@ -69,8 +69,12 @@ pip install promptdiff-cli
69
69
 
70
70
  (Or, to run from source — see [Development](#development) below.)
71
71
 
72
+ No API key is required to install or to use `commit`, `log`, and `diff`. You'll only need one for `run` and `diff-output`, since those actually call a model.
73
+
72
74
  ## Quick start
73
75
 
76
+ `commit`, `log`, and `diff` work immediately after install — no API key needed. You'll only need a key for the `run` and `diff-output` commands, which actually call a model. See [API keys](#api-keys) below.
77
+
74
78
  ```bash
75
79
  # Create a project and switch to it
76
80
  promptdiff project create my-app
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "promptdiff-cli"
7
- version = "0.1.0"
7
+ version = "0.1.1"
8
8
  description = "Git for prompts - version, diff, and test your LLM prompts across any model"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.11"
File without changes
File without changes