ML610 commited on
Commit
2f89d92
1 Parent(s): df8d62b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -70,7 +70,8 @@ examples = [example_1, example_2]
70
 
71
  def generate_code(user_input):
72
  response = generate(llm, generation_config, user_input)
73
- return response['text']
 
74
 
75
  UI = gr.Interface(
76
  fn=generate_code,
 
70
 
71
  def generate_code(user_input):
72
  response = generate(llm, generation_config, user_input)
73
+ print(response)
74
+ return response
75
 
76
  UI = gr.Interface(
77
  fn=generate_code,