mirror of
https://github.com/mudler/LocalAI.git
synced 2024-12-18 12:26:26 +00:00
chore(scripts): handle summarization errors (#4271)
Signed-off-by: Ettore Di Giacinto <mudler@localai.io>
This commit is contained in:
parent
369110e6bf
commit
e8128a339a
@ -103,7 +103,10 @@ if __name__ == "__main__":
|
|||||||
if readmeFile:
|
if readmeFile:
|
||||||
# If there is a README file, read it
|
# If there is a README file, read it
|
||||||
readme = fs.read_text(readmeFile)
|
readme = fs.read_text(readmeFile)
|
||||||
summarized_readme = summarize(readme)
|
try:
|
||||||
|
summarized_readme = summarize(readme)
|
||||||
|
except Exception as e:
|
||||||
|
print(f"Error summarizing the README: {str(e)}", file=sys.stderr)
|
||||||
summarized_readme = format_description(summarized_readme)
|
summarized_readme = format_description(summarized_readme)
|
||||||
|
|
||||||
print("Model correctly processed")
|
print("Model correctly processed")
|
||||||
|
Loading…
Reference in New Issue
Block a user