Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -33,10 +33,10 @@ def format_output(brand_input):
|
|
| 33 |
recs = recommend_influencers(brand_input)
|
| 34 |
output = ""
|
| 35 |
for i, rec in enumerate(recs, 1):
|
| 36 |
-
output += f"### {i}. {rec['Influencer']}
|
| 37 |
output += f"- Niche: {rec['Niche']}\n"
|
| 38 |
output += f"- Country: {rec['Country']}\n"
|
| 39 |
-
output += f"- Engagement Rate: {rec['
|
| 40 |
output += f"- Followers: {rec['Followers']}\n\n"
|
| 41 |
return output
|
| 42 |
|
|
|
|
| 33 |
recs = recommend_influencers(brand_input)
|
| 34 |
output = ""
|
| 35 |
for i, rec in enumerate(recs, 1):
|
| 36 |
+
output += f"### {i}. {rec['Influencer']})\n"
|
| 37 |
output += f"- Niche: {rec['Niche']}\n"
|
| 38 |
output += f"- Country: {rec['Country']}\n"
|
| 39 |
+
output += f"- Engagement Rate: {rec['ER']}\n"
|
| 40 |
output += f"- Followers: {rec['Followers']}\n\n"
|
| 41 |
return output
|
| 42 |
|