app.py
CHANGED
@@ -18,7 +18,7 @@ def get_completion(prompt, model="gpt-3.5-turbo"):
|
|
18 |
return response.choices[0].message["content"]
|
19 |
|
20 |
def greet(company, solution, customer, problem, features):
|
21 |
-
return company
|
22 |
|
23 |
#iface = gr.Interface(fn=greet, inputs="text", outputs="text")
|
24 |
#iface.launch()
|
|
|
18 |
return response.choices[0].message["content"]
|
19 |
|
20 |
def greet(company, solution, customer, problem, features):
|
21 |
+
return json.dumps(company)
|
22 |
|
23 |
#iface = gr.Interface(fn=greet, inputs="text", outputs="text")
|
24 |
#iface.launch()
|