stratasynth-client 0.2.0__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.
- stratasynth_client-0.2.0/.gitignore +63 -0
- stratasynth_client-0.2.0/PKG-INFO +20 -0
- stratasynth_client-0.2.0/pyproject.toml +40 -0
- stratasynth_client-0.2.0/stratasynth_client/async_client.py +608 -0
- stratasynth_client-0.2.0/stratasynth_client/client.py +215 -0
- stratasynth_client-0.2.0/stratasynth_client/exceptions.py +44 -0
- stratasynth_client-0.2.0/stratasynth_client/models.py +357 -0
- stratasynth_client-0.2.0/stratasynth_client/resources/evaluate.py +88 -0
- stratasynth_client-0.2.0/stratasynth_client/resources/humans.py +267 -0
- stratasynth_client-0.2.0/stratasynth_client/resources/jobs.py +262 -0
- stratasynth_client-0.2.0/stratasynth_client/resources/personas.py +56 -0
- stratasynth_client-0.2.0/stratasynth_client/resources/scenarios.py +22 -0
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
# Python
|
|
2
|
+
__pycache__/
|
|
3
|
+
*.py[cod]
|
|
4
|
+
*$py.class
|
|
5
|
+
*.so
|
|
6
|
+
.Python
|
|
7
|
+
.venv/
|
|
8
|
+
venv/
|
|
9
|
+
env/
|
|
10
|
+
.env
|
|
11
|
+
.env.test
|
|
12
|
+
*.egg-info/
|
|
13
|
+
dist/
|
|
14
|
+
build/
|
|
15
|
+
.uv/
|
|
16
|
+
|
|
17
|
+
# Node
|
|
18
|
+
node_modules/
|
|
19
|
+
dist/
|
|
20
|
+
.next/
|
|
21
|
+
|
|
22
|
+
# Playwright
|
|
23
|
+
apps/frontend/e2e/report/
|
|
24
|
+
apps/frontend/test-results/
|
|
25
|
+
apps/frontend/playwright-report/
|
|
26
|
+
out/
|
|
27
|
+
.turbo/
|
|
28
|
+
|
|
29
|
+
# AWS / Serverless
|
|
30
|
+
.serverless/
|
|
31
|
+
*.zip
|
|
32
|
+
|
|
33
|
+
# IDE
|
|
34
|
+
.idea/
|
|
35
|
+
.vscode/
|
|
36
|
+
*.swp
|
|
37
|
+
*.swo
|
|
38
|
+
|
|
39
|
+
# Archivos temporales de scripting con Claude Code
|
|
40
|
+
_*.json
|
|
41
|
+
_*.py
|
|
42
|
+
_*.js
|
|
43
|
+
_token*.txt
|
|
44
|
+
_resp*.json
|
|
45
|
+
_login*.json
|
|
46
|
+
_payload*.json
|
|
47
|
+
|
|
48
|
+
# Secretos y configuración local
|
|
49
|
+
*.local
|
|
50
|
+
.env.test
|
|
51
|
+
.env.production.local
|
|
52
|
+
apps/backend/.env
|
|
53
|
+
apps/frontend/.env.local
|
|
54
|
+
apps/frontend/.env.production
|
|
55
|
+
Docs/CREDENTIALS_DEV.md
|
|
56
|
+
docs/CREDENTIALS_MARKETPULSE.md
|
|
57
|
+
|
|
58
|
+
# Parquet (no en layers — archivos locales de desarrollo)
|
|
59
|
+
*.parquet
|
|
60
|
+
|
|
61
|
+
# OS
|
|
62
|
+
.DS_Store
|
|
63
|
+
Thumbs.db
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: stratasynth-client
|
|
3
|
+
Version: 0.2.0
|
|
4
|
+
Summary: Python SDK for StrataSynth — generate synthetic conversational data with psychological depth
|
|
5
|
+
Project-URL: Homepage, https://stratasynth.com
|
|
6
|
+
Project-URL: Documentation, https://stratasynth.com/docs
|
|
7
|
+
Project-URL: Repository, https://github.com/ereace/stratasynth
|
|
8
|
+
Requires-Python: >=3.12
|
|
9
|
+
Requires-Dist: httpx>=0.27.0
|
|
10
|
+
Requires-Dist: pydantic>=2.6.0
|
|
11
|
+
Provides-Extra: all
|
|
12
|
+
Requires-Dist: datasets>=2.0; extra == 'all'
|
|
13
|
+
Requires-Dist: pandas>=2.0; extra == 'all'
|
|
14
|
+
Requires-Dist: psychegraph-schema>=1.0.0; extra == 'all'
|
|
15
|
+
Provides-Extra: dataframe
|
|
16
|
+
Requires-Dist: pandas>=2.0; extra == 'dataframe'
|
|
17
|
+
Provides-Extra: huggingface
|
|
18
|
+
Requires-Dist: datasets>=2.0; extra == 'huggingface'
|
|
19
|
+
Provides-Extra: psychegraph
|
|
20
|
+
Requires-Dist: psychegraph-schema>=1.0.0; extra == 'psychegraph'
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[tool.hatch.build.targets.wheel]
|
|
6
|
+
packages = ["stratasynth_client"]
|
|
7
|
+
|
|
8
|
+
[project]
|
|
9
|
+
name = "stratasynth-client"
|
|
10
|
+
version = "0.2.0"
|
|
11
|
+
description = "Python SDK for StrataSynth — generate synthetic conversational data with psychological depth"
|
|
12
|
+
requires-python = ">=3.12"
|
|
13
|
+
dependencies = [
|
|
14
|
+
"httpx>=0.27.0",
|
|
15
|
+
"pydantic>=2.6.0",
|
|
16
|
+
]
|
|
17
|
+
|
|
18
|
+
[project.optional-dependencies]
|
|
19
|
+
psychegraph = [
|
|
20
|
+
"psychegraph-schema>=1.0.0",
|
|
21
|
+
]
|
|
22
|
+
dataframe = [
|
|
23
|
+
"pandas>=2.0",
|
|
24
|
+
]
|
|
25
|
+
huggingface = [
|
|
26
|
+
"datasets>=2.0",
|
|
27
|
+
]
|
|
28
|
+
all = [
|
|
29
|
+
"pandas>=2.0",
|
|
30
|
+
"datasets>=2.0",
|
|
31
|
+
"psychegraph-schema>=1.0.0",
|
|
32
|
+
]
|
|
33
|
+
|
|
34
|
+
[tool.uv.sources]
|
|
35
|
+
psychegraph-schema = { workspace = true }
|
|
36
|
+
|
|
37
|
+
[project.urls]
|
|
38
|
+
Homepage = "https://stratasynth.com"
|
|
39
|
+
Documentation = "https://stratasynth.com/docs"
|
|
40
|
+
Repository = "https://github.com/ereace/stratasynth"
|