ArjunShukla commited on
Commit
490f471
·
verified ·
1 Parent(s): c7013cb

Upload folder using huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +4 -2
README.md CHANGED
@@ -90,17 +90,17 @@ The model also surfaces **issues** (e.g. `too_vague`, `missing_context`) and **m
90
 
91
  ## How to Get Started with the Model
92
 
93
- ### With PromptForge (recommended)
94
 
95
  ```bash
96
  pip install tuneprompt
97
- # or from source: pip install -e ".[demo]"
98
 
99
  python -m promptforge download \
100
  --quality-repo ArjunShukla/PromptForge-Quality \
101
  --optimizer-repo ArjunShukla/PromptForge-Optimizer
102
 
103
  python -m promptforge analyze "Build me a website"
 
104
  ```
105
 
106
  ```python
@@ -111,6 +111,8 @@ print(pf.analyze("Make an app."))
111
  # → quality_score, dimensions, issues, missing_information
112
  ```
113
 
 
 
114
  ### Full pipeline (score + optimize)
115
 
116
  ```python
 
90
 
91
  ## How to Get Started with the Model
92
 
93
+ ### Install & use with [`tuneprompt`](https://pypi.org/project/tuneprompt/) (recommended)
94
 
95
  ```bash
96
  pip install tuneprompt
 
97
 
98
  python -m promptforge download \
99
  --quality-repo ArjunShukla/PromptForge-Quality \
100
  --optimizer-repo ArjunShukla/PromptForge-Optimizer
101
 
102
  python -m promptforge analyze "Build me a website"
103
+ # or: tuneprompt analyze "Build me a website"
104
  ```
105
 
106
  ```python
 
111
  # → quality_score, dimensions, issues, missing_information
112
  ```
113
 
114
+ > **Package:** [`tuneprompt`](https://pypi.org/project/tuneprompt/1.0.0/) on PyPI · **Import:** `promptforge` · **CLI:** `tuneprompt` / `promptforge` · **Code:** https://github.com/arjun988/promptModel
115
+
116
  ### Full pipeline (score + optimize)
117
 
118
  ```python