Forgot to commit in small portions again

This commit is contained in:
2025-04-24 11:22:21 -04:00
parent 94084084f3
commit ef80aa825d
11 changed files with 679 additions and 3 deletions

View File

@ -0,0 +1,9 @@
class MatchPredictor:
"""Predicts match outcomes using LLM."""
def __init__(self, llm_model):
self.llm_model = llm_model
def predict_outcome(self, blue_alliance_data, red_alliance_data):
prompt = f"Given blue alliance data: {blue_alliance_data} and red alliance data: {red_alliance_data}, predict the match outcome."
return self.query_ollama(prompt)