Spaces:
Sleeping
Sleeping
Commit ·
a0b2af6
1
Parent(s): 309ceaa
fix import
Browse files- src/allocation.py +1 -1
- src/eval_server.py +4 -3
src/allocation.py
CHANGED
|
@@ -5,7 +5,7 @@ import json
|
|
| 5 |
from datetime import datetime, timezone
|
| 6 |
from typing import Any
|
| 7 |
|
| 8 |
-
from database import DB
|
| 9 |
|
| 10 |
|
| 11 |
class AllocationValidator:
|
|
|
|
| 5 |
from datetime import datetime, timezone
|
| 6 |
from typing import Any
|
| 7 |
|
| 8 |
+
from .database import DB
|
| 9 |
|
| 10 |
|
| 11 |
class AllocationValidator:
|
src/eval_server.py
CHANGED
|
@@ -5,9 +5,10 @@ from datetime import datetime, timedelta, timezone
|
|
| 5 |
from typing import Any
|
| 6 |
|
| 7 |
import gradio as gr
|
| 8 |
-
|
| 9 |
-
from
|
| 10 |
-
from
|
|
|
|
| 11 |
important_notes_instruction,
|
| 12 |
login_instruction,
|
| 13 |
nav_instruction,
|
|
|
|
| 5 |
from typing import Any
|
| 6 |
|
| 7 |
import gradio as gr
|
| 8 |
+
|
| 9 |
+
from .allocation import AllocationEngine
|
| 10 |
+
from .database import DB
|
| 11 |
+
from .instuction_md import (
|
| 12 |
important_notes_instruction,
|
| 13 |
login_instruction,
|
| 14 |
nav_instruction,
|