Begin adding sockets

This commit is contained in:
2023-06-09 22:27:09 +02:00
parent bba590c0a5
commit 9c43e2721a
13 changed files with 269 additions and 53 deletions

10
app/interactive/forms.py Normal file
View File

@@ -0,0 +1,10 @@
from flask_wtf import FlaskForm
from wtforms import SubmitField, SelectField, TextAreaField
from benchmark.Arguments import ALL_METRICS
##### NOT USED #####
class RankingForm(FlaskForm):
score = SelectField("Score", choices=ALL_METRICS)
output = TextAreaField("Output")
submit = SubmitField("Generate Ranking")