redcrown 0.1.0__py3-none-any.whl
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.
- redcrown/__init__.py +1 -0
- redcrown/api.py +1043 -0
- redcrown/auth/__init__.py +0 -0
- redcrown/auth/dependencies.py +61 -0
- redcrown/auth/jwt.py +39 -0
- redcrown/auth/org.py +37 -0
- redcrown/benchmark_page.py +202 -0
- redcrown/billing.py +215 -0
- redcrown/blobstore.py +128 -0
- redcrown/cli.py +308 -0
- redcrown/cli_auth.py +149 -0
- redcrown/config.py +46 -0
- redcrown/credentials.py +17 -0
- redcrown/crypto.py +47 -0
- redcrown/custom_http.py +46 -0
- redcrown/datasets/__init__.py +1 -0
- redcrown/datasets/aispire_import.py +219 -0
- redcrown/datasets/primock57.py +229 -0
- redcrown/db/__init__.py +0 -0
- redcrown/db/audit_repo.py +30 -0
- redcrown/db/captures_repo.py +102 -0
- redcrown/db/credentials_repo.py +60 -0
- redcrown/db/exp_runs_repo.py +100 -0
- redcrown/db/experiments_repo.py +93 -0
- redcrown/db/invites_repo.py +74 -0
- redcrown/db/oauth_repo.py +145 -0
- redcrown/db/orgs_repo.py +97 -0
- redcrown/db/pool.py +19 -0
- redcrown/db/proof_links_repo.py +89 -0
- redcrown/db/proxied_endpoints_repo.py +85 -0
- redcrown/db/review_examples_repo.py +53 -0
- redcrown/db/reviews_repo.py +265 -0
- redcrown/db/runs_repo.py +90 -0
- redcrown/db/subscriptions_repo.py +61 -0
- redcrown/db/tasks_repo.py +44 -0
- redcrown/engine.py +62 -0
- redcrown/eval_runner.py +386 -0
- redcrown/experiment.py +128 -0
- redcrown/import_results.py +137 -0
- redcrown/infra_pricing.py +51 -0
- redcrown/ingest.py +26 -0
- redcrown/jobs.py +31 -0
- redcrown/models.py +48 -0
- redcrown/oauth/__init__.py +0 -0
- redcrown/oauth/keys.py +28 -0
- redcrown/oauth/routes.py +299 -0
- redcrown/oauth/supabase_login.py +20 -0
- redcrown/oauth/tokens.py +70 -0
- redcrown/pricing.py +53 -0
- redcrown/providers/__init__.py +0 -0
- redcrown/providers/anthropic_provider.py +76 -0
- redcrown/providers/aws_transcribe_provider.py +242 -0
- redcrown/providers/base.py +11 -0
- redcrown/providers/bedrock_provider.py +58 -0
- redcrown/providers/byohttp_provider.py +77 -0
- redcrown/providers/deepgram_provider.py +56 -0
- redcrown/providers/demo.py +43 -0
- redcrown/providers/openai_compatible.py +119 -0
- redcrown/providers/openai_provider.py +15 -0
- redcrown/providers/registry.py +192 -0
- redcrown/providers/whisper_provider.py +65 -0
- redcrown/proxy.py +55 -0
- redcrown/replay.py +96 -0
- redcrown/report_export.py +67 -0
- redcrown/scaffold.py +165 -0
- redcrown/scoring/__init__.py +0 -0
- redcrown/scoring/builtin.py +41 -0
- redcrown/scoring/extraction.py +23 -0
- redcrown/scoring/judge.py +47 -0
- redcrown/scoring/medical_terms.py +94 -0
- redcrown/scoring/pipeline.py +34 -0
- redcrown/scoring/transcription.py +78 -0
- redcrown/scoring/winner.py +41 -0
- redcrown/shadow.py +45 -0
- redcrown/ssrf.py +104 -0
- redcrown-0.1.0.dist-info/METADATA +20 -0
- redcrown-0.1.0.dist-info/RECORD +80 -0
- redcrown-0.1.0.dist-info/WHEEL +5 -0
- redcrown-0.1.0.dist-info/entry_points.txt +2 -0
- redcrown-0.1.0.dist-info/top_level.txt +1 -0
redcrown/__init__.py
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.1.0"
|