DeepSacrifice

This commit is contained in:
Eric Liu 2025-05-18 17:41:45 -07:00
parent bef6a0b99a
commit a88e3afddf
23 changed files with 1869 additions and 0 deletions

View file

@ -0,0 +1,14 @@
/**
* Placeholder reward function using LLM feedback.
* Will use OpenAI GPT-4o-mini feedback in the future.
*/
export async function computeReward(
fen: string,
moveSAN: string,
llmScore?: string,
llmJustification?: string,
): Promise<number> {
// TODO: Use real LLM feedback to compute reward
// For now, return a dummy reward
return 0.5;
}