qatch-demo / test_prediction.py
simone-papicchio's picture
fix error in prediction.py
220b4dd
raw
history blame
210 Bytes
from prediction import ModelPrediction
def main():
model = ModelPrediction()
response = model.make_prediction("Hi, how are you?", "gpt-3.5")
print(response)
if __name__ == "__main__":
main()