Skip to content

Commit 7e89c8b

Browse files
chore: add back verification
1 parent a067b1b commit 7e89c8b

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

src/genesys/verifier/code_test_verifier.py

+7
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,13 @@
33
import tarfile
44
import uuid
55
import re
6+
from typing import List, Dict
7+
from pydantic import BaseModel, Field
8+
9+
class CodeTestsVerification(BaseModel):
10+
type: str = Field("code_tests")
11+
language: str
12+
test_cases: List[Dict]
613

714
# We keep a global dictionary for our containers
815
CONTAINERS = {}

0 commit comments

Comments
 (0)