Tonic commited on
Commit
5125038
·
1 Parent(s): f5eaae9

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -72,7 +72,7 @@ tc_conversation = tru.Chain(conversation, app_id='Trulens-StableMed', feedbacks=
72
  # Make a prediction using the wrapped conversation
73
  user_input = "Howdy!"
74
  system_prompt = "Howdy!"
75
- result = tc_conversation.generate(user_input, system_prompt=system_prompt)
76
 
77
  # Print the result
78
  print(result)
 
72
  # Make a prediction using the wrapped conversation
73
  user_input = "Howdy!"
74
  system_prompt = "Howdy!"
75
+ result = tc_conversation.predict(user_input, system_prompt=system_prompt)
76
 
77
  # Print the result
78
  print(result)