Spaces:
Running
Running
convert list to string
Browse files
app.py
CHANGED
@@ -24,7 +24,7 @@ async def ppt_content(data):
|
|
24 |
"Conclusion Slide: State the overall conclusion.",
|
25 |
"Reference Slide: Include all citations used."
|
26 |
))
|
27 |
-
result_1 = agent.run_sync(user_prompt=data)
|
28 |
print(result_1.data)
|
29 |
|
30 |
def ai_ppt(data):
|
|
|
24 |
"Conclusion Slide: State the overall conclusion.",
|
25 |
"Reference Slide: Include all citations used."
|
26 |
))
|
27 |
+
result_1 = agent.run_sync(user_prompt="".join(data))
|
28 |
print(result_1.data)
|
29 |
|
30 |
def ai_ppt(data):
|