Upload __init__.py
Browse files- __init__.py +14 -0
__init__.py
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
"""
|
| 2 |
+
OCC: Oracle-Credit-Compute System
|
| 3 |
+
|
| 4 |
+
A minimal open-source stack for cost-aware, compute-efficient agent systems.
|
| 5 |
+
|
| 6 |
+
Quick start:
|
| 7 |
+
python -m benchmarks.benchmark_code
|
| 8 |
+
python -m benchmarks.benchmark_retrieval_qa
|
| 9 |
+
python -m benchmarks.benchmark_debate
|
| 10 |
+
python -m eval_runner
|
| 11 |
+
|
| 12 |
+
For GRPO training demo:
|
| 13 |
+
python -m rl.grpo_train_demo
|
| 14 |
+
"""
|