text = ['paragraph1', 'pargaraph2'.......]
print(Settings.llm.complete(f" Summarize the above {text[0]}")
and can we setup chunk size, overlaps and other parameters ?from llama_index.core import Settings from llama_index.llms.openai import OpenAI Settings.llm = OpenAI(system_prompt="ADD_YOUR_SYTEM_PROMPT_HERE", max_tokens=512)