lucadillenburg commited on
Commit
836b13a
·
1 Parent(s): 5282624
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -9,7 +9,7 @@ import gradio as gr
9
 
10
  import sys
11
  sys.path.append('axolotl/src/axolotl/common/cli.py')
12
- import test_func
13
 
14
  def generate(instruction):
15
  return "Hello " + instruction + "!" + test_func()
 
9
 
10
  import sys
11
  sys.path.append('axolotl/src/axolotl/common/cli.py')
12
+ from axolotl.common.cli import test_func
13
 
14
  def generate(instruction):
15
  return "Hello " + instruction + "!" + test_func()