File tree Expand file tree Collapse file tree 5 files changed +10
-10
lines changed Expand file tree Collapse file tree 5 files changed +10
-10
lines changed Original file line number Diff line number Diff line change 6
6
import json
7
7
8
8
# Import our support classes
9
- from lib .config import SUPPORTED_MODELS , VALID_GRADES
10
- from lib .grade import Grade
11
- from lib .report import Report
12
- from lib .rubric_tester import (
9
+ from lib .assessment . config import SUPPORTED_MODELS , VALID_GRADES
10
+ from lib .assessment . grade import Grade
11
+ from lib .assessment . report import Report
12
+ from lib .assessment . rubric_tester import (
13
13
read_inputs ,
14
14
get_expected_grades ,
15
15
get_examples ,
Original file line number Diff line number Diff line change 5
5
import requests
6
6
7
7
from typing import List , Dict , Any
8
- from lib .config import VALID_GRADES
8
+ from lib .assessment . config import VALID_GRADES
9
9
10
10
from io import StringIO
11
11
Original file line number Diff line number Diff line change 3
3
import io
4
4
import json
5
5
from typing import List , Dict , Any
6
- from lib .config import VALID_GRADES
6
+ from lib .assessment . config import VALID_GRADES
7
7
8
8
class Report :
9
9
def __init__ (self ):
Original file line number Diff line number Diff line change 10
10
import concurrent .futures
11
11
import io
12
12
13
- from lib .config import SUPPORTED_MODELS , VALID_GRADES
14
- from lib .grade import Grade
15
- from lib .report import Report
13
+ from lib .assessment . config import SUPPORTED_MODELS , VALID_GRADES
14
+ from lib .assessment . grade import Grade
15
+ from lib .assessment . report import Report
16
16
17
17
18
18
def command_line_options ():
Original file line number Diff line number Diff line change 3
3
# Right now, we can query the list of models available. (/openai/models)
4
4
# The '/test/openai' route will query the given chat model with a small prompt.
5
5
6
- from flask import Blueprint
6
+ from flask import Blueprint , request
7
7
8
8
import os
9
9
import openai
You can’t perform that action at this time.
0 commit comments