Update app.py
Browse files
app.py
CHANGED
@@ -16,7 +16,7 @@ def get_json_cfg():
|
|
16 |
return config
|
17 |
|
18 |
#print(get_json_cfg())
|
19 |
-
dirname = os.
|
20 |
|
21 |
def greet(model_name, prompt_template, name):
|
22 |
return f"Hello {name}!! Using model: {model_name} with template: {prompt_template} and {dirname}"
|
|
|
16 |
return config
|
17 |
|
18 |
#print(get_json_cfg())
|
19 |
+
dirname = ' '.join(os.listdir())
|
20 |
|
21 |
def greet(model_name, prompt_template, name):
|
22 |
return f"Hello {name}!! Using model: {model_name} with template: {prompt_template} and {dirname}"
|