add evaluations course and update models table

This commit is contained in:
Colt Steele MacBook
2024-09-04 16:45:46 -06:00
parent cf2979dc88
commit b81598db86
93 changed files with 15212 additions and 18 deletions

View File

@@ -0,0 +1,9 @@
def get_transform(output, context):
if "<thinking>" in output:
try:
return output.split("<answer>")[1].split("</answer>")[0].strip()
except Exception as e:
print(f"Error in get_transform: {e}")
return output
return output