crowdmind 0.2.1__tar.gz → 0.2.2__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 (32) hide show
  1. {crowdmind-0.2.1 → crowdmind-0.2.2}/PKG-INFO +1 -1
  2. {crowdmind-0.2.1 → crowdmind-0.2.2}/crowdmind/__init__.py +1 -1
  3. {crowdmind-0.2.1 → crowdmind-0.2.2}/crowdmind/cli.py +28 -6
  4. {crowdmind-0.2.1 → crowdmind-0.2.2}/pyproject.toml +1 -1
  5. {crowdmind-0.2.1 → crowdmind-0.2.2}/.gitignore +0 -0
  6. {crowdmind-0.2.1 → crowdmind-0.2.2}/LICENSE +0 -0
  7. {crowdmind-0.2.1 → crowdmind-0.2.2}/README.md +0 -0
  8. {crowdmind-0.2.1 → crowdmind-0.2.2}/crowdmind/config.py +0 -0
  9. {crowdmind-0.2.1 → crowdmind-0.2.2}/crowdmind/context/__init__.py +0 -0
  10. {crowdmind-0.2.1 → crowdmind-0.2.2}/crowdmind/context/builder.py +0 -0
  11. {crowdmind-0.2.1 → crowdmind-0.2.2}/crowdmind/ideate/__init__.py +0 -0
  12. {crowdmind-0.2.1 → crowdmind-0.2.2}/crowdmind/ideate/features.py +0 -0
  13. {crowdmind-0.2.1 → crowdmind-0.2.2}/crowdmind/market/__init__.py +0 -0
  14. {crowdmind-0.2.1 → crowdmind-0.2.2}/crowdmind/market/analysis.py +0 -0
  15. {crowdmind-0.2.1 → crowdmind-0.2.2}/crowdmind/optimize/__init__.py +0 -0
  16. {crowdmind-0.2.1 → crowdmind-0.2.2}/crowdmind/optimize/autoresearch.py +0 -0
  17. {crowdmind-0.2.1 → crowdmind-0.2.2}/crowdmind/persona_packs/consumer.yaml +0 -0
  18. {crowdmind-0.2.1 → crowdmind-0.2.2}/crowdmind/persona_packs/devtools.yaml +0 -0
  19. {crowdmind-0.2.1 → crowdmind-0.2.2}/crowdmind/persona_packs/enterprise.yaml +0 -0
  20. {crowdmind-0.2.1 → crowdmind-0.2.2}/crowdmind/persona_packs/saas.yaml +0 -0
  21. {crowdmind-0.2.1 → crowdmind-0.2.2}/crowdmind/report/__init__.py +0 -0
  22. {crowdmind-0.2.1 → crowdmind-0.2.2}/crowdmind/report/markdown.py +0 -0
  23. {crowdmind-0.2.1 → crowdmind-0.2.2}/crowdmind/research/__init__.py +0 -0
  24. {crowdmind-0.2.1 → crowdmind-0.2.2}/crowdmind/research/codebase.py +0 -0
  25. {crowdmind-0.2.1 → crowdmind-0.2.2}/crowdmind/research/github.py +0 -0
  26. {crowdmind-0.2.1 → crowdmind-0.2.2}/crowdmind/research/hackernews.py +0 -0
  27. {crowdmind-0.2.1 → crowdmind-0.2.2}/crowdmind/research/multi.py +0 -0
  28. {crowdmind-0.2.1 → crowdmind-0.2.2}/crowdmind/research/reddit.py +0 -0
  29. {crowdmind-0.2.1 → crowdmind-0.2.2}/crowdmind/validate/__init__.py +0 -0
  30. {crowdmind-0.2.1 → crowdmind-0.2.2}/crowdmind/validate/panel.py +0 -0
  31. {crowdmind-0.2.1 → crowdmind-0.2.2}/crowdmind/validate/personas.py +0 -0
  32. {crowdmind-0.2.1 → crowdmind-0.2.2}/crowdmind/validate/survey.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: crowdmind
3
- Version: 0.2.1
3
+ Version: 0.2.2
4
4
  Summary: Autonomous product research powered by AI agents
5
5
  Project-URL: Homepage, https://github.com/yasintoy/crowdmind
6
6
  Project-URL: Documentation, https://github.com/yasintoy/crowdmind#readme
@@ -5,7 +5,7 @@ Validate your product ideas with simulated user panels,
5
5
  research market pain points, and generate feature ideas.
6
6
  """
7
7
 
8
- __version__ = "0.2.1"
8
+ __version__ = "0.2.2"
9
9
 
10
10
  from crowdmind.validate.panel import run_evaluation as analyze
11
11
  from crowdmind.validate.panel import run_evaluation as validate
@@ -174,12 +174,34 @@ def validate(
174
174
  if use_multi:
175
175
  # Use new multi-metric survey
176
176
  from crowdmind.validate.survey import run_multi_metric_survey
177
- result = run_multi_metric_survey(
178
- content=content,
179
- context_prompt=context_prompt,
180
- num_agents=personas,
181
- verbose=verbose and not quiet,
182
- )
177
+ import time
178
+
179
+ if not quiet:
180
+ console.print(f"\n[dim]Creating {personas} AI personas...[/dim]")
181
+ console.print(f"[dim]Asking each: interest, usefulness, urgency, would pay[/dim]")
182
+ console.print(f"[dim]Estimated time: ~{personas * 3}s[/dim]\n")
183
+
184
+ with Progress(
185
+ SpinnerColumn(),
186
+ TextColumn("[progress.description]{task.description}"),
187
+ console=console,
188
+ ) as progress:
189
+ task = progress.add_task(f"Surveying {personas} personas...", total=None)
190
+ result = run_multi_metric_survey(
191
+ content=content,
192
+ context_prompt=context_prompt,
193
+ num_agents=personas,
194
+ verbose=False,
195
+ )
196
+ progress.update(task, description="[green]✓ Done![/green]")
197
+ time.sleep(0.5) # Let user see the "Done" message
198
+ else:
199
+ result = run_multi_metric_survey(
200
+ content=content,
201
+ context_prompt=context_prompt,
202
+ num_agents=personas,
203
+ verbose=False,
204
+ )
183
205
 
184
206
  if output:
185
207
  output.write_text(json.dumps({
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "crowdmind"
7
- version = "0.2.1"
7
+ version = "0.2.2"
8
8
  description = "Autonomous product research powered by AI agents"
9
9
  readme = "README.md"
10
10
  license = {text = "MIT"}
File without changes
File without changes
File without changes
File without changes