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.
- {crowdmind-0.2.1 → crowdmind-0.2.2}/PKG-INFO +1 -1
- {crowdmind-0.2.1 → crowdmind-0.2.2}/crowdmind/__init__.py +1 -1
- {crowdmind-0.2.1 → crowdmind-0.2.2}/crowdmind/cli.py +28 -6
- {crowdmind-0.2.1 → crowdmind-0.2.2}/pyproject.toml +1 -1
- {crowdmind-0.2.1 → crowdmind-0.2.2}/.gitignore +0 -0
- {crowdmind-0.2.1 → crowdmind-0.2.2}/LICENSE +0 -0
- {crowdmind-0.2.1 → crowdmind-0.2.2}/README.md +0 -0
- {crowdmind-0.2.1 → crowdmind-0.2.2}/crowdmind/config.py +0 -0
- {crowdmind-0.2.1 → crowdmind-0.2.2}/crowdmind/context/__init__.py +0 -0
- {crowdmind-0.2.1 → crowdmind-0.2.2}/crowdmind/context/builder.py +0 -0
- {crowdmind-0.2.1 → crowdmind-0.2.2}/crowdmind/ideate/__init__.py +0 -0
- {crowdmind-0.2.1 → crowdmind-0.2.2}/crowdmind/ideate/features.py +0 -0
- {crowdmind-0.2.1 → crowdmind-0.2.2}/crowdmind/market/__init__.py +0 -0
- {crowdmind-0.2.1 → crowdmind-0.2.2}/crowdmind/market/analysis.py +0 -0
- {crowdmind-0.2.1 → crowdmind-0.2.2}/crowdmind/optimize/__init__.py +0 -0
- {crowdmind-0.2.1 → crowdmind-0.2.2}/crowdmind/optimize/autoresearch.py +0 -0
- {crowdmind-0.2.1 → crowdmind-0.2.2}/crowdmind/persona_packs/consumer.yaml +0 -0
- {crowdmind-0.2.1 → crowdmind-0.2.2}/crowdmind/persona_packs/devtools.yaml +0 -0
- {crowdmind-0.2.1 → crowdmind-0.2.2}/crowdmind/persona_packs/enterprise.yaml +0 -0
- {crowdmind-0.2.1 → crowdmind-0.2.2}/crowdmind/persona_packs/saas.yaml +0 -0
- {crowdmind-0.2.1 → crowdmind-0.2.2}/crowdmind/report/__init__.py +0 -0
- {crowdmind-0.2.1 → crowdmind-0.2.2}/crowdmind/report/markdown.py +0 -0
- {crowdmind-0.2.1 → crowdmind-0.2.2}/crowdmind/research/__init__.py +0 -0
- {crowdmind-0.2.1 → crowdmind-0.2.2}/crowdmind/research/codebase.py +0 -0
- {crowdmind-0.2.1 → crowdmind-0.2.2}/crowdmind/research/github.py +0 -0
- {crowdmind-0.2.1 → crowdmind-0.2.2}/crowdmind/research/hackernews.py +0 -0
- {crowdmind-0.2.1 → crowdmind-0.2.2}/crowdmind/research/multi.py +0 -0
- {crowdmind-0.2.1 → crowdmind-0.2.2}/crowdmind/research/reddit.py +0 -0
- {crowdmind-0.2.1 → crowdmind-0.2.2}/crowdmind/validate/__init__.py +0 -0
- {crowdmind-0.2.1 → crowdmind-0.2.2}/crowdmind/validate/panel.py +0 -0
- {crowdmind-0.2.1 → crowdmind-0.2.2}/crowdmind/validate/personas.py +0 -0
- {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.
|
|
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.
|
|
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
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
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({
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|