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.
Files changed (80) hide show
  1. redcrown/__init__.py +1 -0
  2. redcrown/api.py +1043 -0
  3. redcrown/auth/__init__.py +0 -0
  4. redcrown/auth/dependencies.py +61 -0
  5. redcrown/auth/jwt.py +39 -0
  6. redcrown/auth/org.py +37 -0
  7. redcrown/benchmark_page.py +202 -0
  8. redcrown/billing.py +215 -0
  9. redcrown/blobstore.py +128 -0
  10. redcrown/cli.py +308 -0
  11. redcrown/cli_auth.py +149 -0
  12. redcrown/config.py +46 -0
  13. redcrown/credentials.py +17 -0
  14. redcrown/crypto.py +47 -0
  15. redcrown/custom_http.py +46 -0
  16. redcrown/datasets/__init__.py +1 -0
  17. redcrown/datasets/aispire_import.py +219 -0
  18. redcrown/datasets/primock57.py +229 -0
  19. redcrown/db/__init__.py +0 -0
  20. redcrown/db/audit_repo.py +30 -0
  21. redcrown/db/captures_repo.py +102 -0
  22. redcrown/db/credentials_repo.py +60 -0
  23. redcrown/db/exp_runs_repo.py +100 -0
  24. redcrown/db/experiments_repo.py +93 -0
  25. redcrown/db/invites_repo.py +74 -0
  26. redcrown/db/oauth_repo.py +145 -0
  27. redcrown/db/orgs_repo.py +97 -0
  28. redcrown/db/pool.py +19 -0
  29. redcrown/db/proof_links_repo.py +89 -0
  30. redcrown/db/proxied_endpoints_repo.py +85 -0
  31. redcrown/db/review_examples_repo.py +53 -0
  32. redcrown/db/reviews_repo.py +265 -0
  33. redcrown/db/runs_repo.py +90 -0
  34. redcrown/db/subscriptions_repo.py +61 -0
  35. redcrown/db/tasks_repo.py +44 -0
  36. redcrown/engine.py +62 -0
  37. redcrown/eval_runner.py +386 -0
  38. redcrown/experiment.py +128 -0
  39. redcrown/import_results.py +137 -0
  40. redcrown/infra_pricing.py +51 -0
  41. redcrown/ingest.py +26 -0
  42. redcrown/jobs.py +31 -0
  43. redcrown/models.py +48 -0
  44. redcrown/oauth/__init__.py +0 -0
  45. redcrown/oauth/keys.py +28 -0
  46. redcrown/oauth/routes.py +299 -0
  47. redcrown/oauth/supabase_login.py +20 -0
  48. redcrown/oauth/tokens.py +70 -0
  49. redcrown/pricing.py +53 -0
  50. redcrown/providers/__init__.py +0 -0
  51. redcrown/providers/anthropic_provider.py +76 -0
  52. redcrown/providers/aws_transcribe_provider.py +242 -0
  53. redcrown/providers/base.py +11 -0
  54. redcrown/providers/bedrock_provider.py +58 -0
  55. redcrown/providers/byohttp_provider.py +77 -0
  56. redcrown/providers/deepgram_provider.py +56 -0
  57. redcrown/providers/demo.py +43 -0
  58. redcrown/providers/openai_compatible.py +119 -0
  59. redcrown/providers/openai_provider.py +15 -0
  60. redcrown/providers/registry.py +192 -0
  61. redcrown/providers/whisper_provider.py +65 -0
  62. redcrown/proxy.py +55 -0
  63. redcrown/replay.py +96 -0
  64. redcrown/report_export.py +67 -0
  65. redcrown/scaffold.py +165 -0
  66. redcrown/scoring/__init__.py +0 -0
  67. redcrown/scoring/builtin.py +41 -0
  68. redcrown/scoring/extraction.py +23 -0
  69. redcrown/scoring/judge.py +47 -0
  70. redcrown/scoring/medical_terms.py +94 -0
  71. redcrown/scoring/pipeline.py +34 -0
  72. redcrown/scoring/transcription.py +78 -0
  73. redcrown/scoring/winner.py +41 -0
  74. redcrown/shadow.py +45 -0
  75. redcrown/ssrf.py +104 -0
  76. redcrown-0.1.0.dist-info/METADATA +20 -0
  77. redcrown-0.1.0.dist-info/RECORD +80 -0
  78. redcrown-0.1.0.dist-info/WHEEL +5 -0
  79. redcrown-0.1.0.dist-info/entry_points.txt +2 -0
  80. redcrown-0.1.0.dist-info/top_level.txt +1 -0
redcrown/__init__.py ADDED
@@ -0,0 +1 @@
1
+ __version__ = "0.1.0"