diff --git a/src/phoenix_technologies/smd/server.py b/src/phoenix_technologies/smd/server.py index b35ddfb..5c5ca8a 100644 --- a/src/phoenix_technologies/smd/server.py +++ b/src/phoenix_technologies/smd/server.py @@ -65,8 +65,8 @@ async def smd_detail_article(article_id): async with session.post(url, headers=headers, json=payload) as response: if response.status == 200: data = await response.json() - summarized_content = await summarize_to_words(title=data.get("title"), text=data.get("text"), target_word_count=10000) - return summarized_content +# summarized_content = await summarize_to_words(title=data.get("title"), text=data.get("text"), target_word_count=10000) + return data else: return { "message": await response.text(),