|
86 | 86 | "\n",
|
87 | 87 | "> **Important** \n",
|
88 | 88 | "> - **Default Models**:\n",
|
89 |
| - "> - **Question Answering**: OpenAI's `GPT-4o` with `temperature=0.0`.\n", |
| 89 | + "> - **Question Answering**: OpenAI's `gpt-4.1` with `temperature=0.0`.\n", |
90 | 90 | "> - **Embedding**: OpenAI's `text-embedding-3-small`.\n",
|
91 | 91 | "> \n",
|
92 | 92 | "> - **Customization**:\n",
|
|
167 | 167 | " password=\"password\", # Change if you reset password\n",
|
168 | 168 | " host=\"bolt://172.17.0.3\", # Change\n",
|
169 | 169 | " port=7687, # if needed\n",
|
170 |
| - " llm=OpenAI(model=\"gpt-4o\", temperature=0.0), # Default, no need to specify\n", |
| 170 | + " llm=OpenAI(model=\"gpt-4.1\", temperature=0.0), # Default, no need to specify\n", |
171 | 171 | " embedding=OpenAIEmbedding(model_name=\"text-embedding-3-small\"), # except you want to use a different model\n",
|
172 | 172 | " database=\"neo4j\", # Change if you want to store the graphh in your custom database\n",
|
173 | 173 | ")\n",
|
|
199 | 199 | " password=\"password\", # Change if you reset password\n",
|
200 | 200 | " host=\"bolt://172.17.0.3\", # Change\n",
|
201 | 201 | " port=7687, # if needed\n",
|
202 |
| - " llm=OpenAI(model=\"gpt-4o\", temperature=0.0), # Default, no need to specify\n", |
| 202 | + " llm=OpenAI(model=\"gpt-4.1\", temperature=0.0), # Default, no need to specify\n", |
203 | 203 | " embedding=OpenAIEmbedding(model_name=\"text-embedding-3-small\"), # except you want to use a different model\n",
|
204 | 204 | " database=\"neo4j\", # Change if you want to store the graphh in your custom database\n",
|
205 | 205 | ")\n",
|
|
320 | 320 | " host=\"bolt://192.168.0.115\",\n",
|
321 | 321 | " port=7687,\n",
|
322 | 322 | " database=\"neo4j\",\n",
|
323 |
| - " llm=OpenAI(model=\"gpt-4o\", temperature=0.0),\n", |
| 323 | + " llm=OpenAI(model=\"gpt-4.1\", temperature=0.0),\n", |
324 | 324 | " embedding=OpenAIEmbedding(model_name=\"text-embedding-3-small\"),\n",
|
325 | 325 | " entities=entities, # possible entities\n",
|
326 | 326 | " relations=relations, # possible relations\n",
|
|
0 commit comments