stmnk commited on
Commit
4116154
·
1 Parent(s): c2117d6

only show the generated string

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -114,7 +114,7 @@ real_docstring = r"""
114
  def docgen_func(function_code):
115
  req_data = {"inputs": function_code}
116
  output = query(req_data)
117
- return output['generated_text']
118
 
119
  def pygen_func(nl_code_intent):
120
  pass # TODO: generate code PL from intent NL + search in corpus
 
114
  def docgen_func(function_code):
115
  req_data = {"inputs": function_code}
116
  output = query(req_data)
117
+ return output[0]['generated_text']
118
 
119
  def pygen_func(nl_code_intent):
120
  pass # TODO: generate code PL from intent NL + search in corpus