gpt-4-1106-preview
for the llm_model https://gpt-index.readthedocs.io/en/stable/examples/llm/openai.html#configure-modelllm = OpenAI( temperature=0, model='gpt-4-1106-preview', ) sc = ServiceContext.from_defaults( llm=llm, ) index = SummaryIndex( service_context=sc, ) index.as....