Spaces:
Sleeping
Sleeping
File size: 276 Bytes
4c198b1 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
from docs.test_data import TEXT
from summarizer import summarize_long_text
summary = summarize_long_text(
TEXT,
mode="Sade",
model_name="mistralai/mistral-7b-instruct",
lang_mode="Otomatik",
is_table=False
)
print("\n--- AI Özeti ---\n")
print(summary)
|