Skip to content

Commit fb2ee05

Browse files
authored
remove: ollama (#779)
1 parent c922f89 commit fb2ee05

File tree

2 files changed

+6
-10
lines changed

2 files changed

+6
-10
lines changed

site/content/3.12/data-science/graphrag/tutorial-notebook.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,7 @@ Before you begin, ensure you have the following:
4141
- **Jupyter Notebook:** This tutorial is designed to be run in ArangoDB's integrated
4242
Notebook servers.
4343
- **OpenAI API key (optional):** If you plan to use OpenAI's models for LLM
44-
processing, you need an OpenAI API key. Alternatively, you can configure the
45-
services to use other providers like Ollama.
44+
processing, you need an OpenAI API key.
4645

4746
## Environment setup
4847

@@ -164,7 +163,7 @@ parameters.
164163
importer_config = {
165164
"db_name": DB_NAME,
166165
"username": os.environ["USERNAME"],
167-
"api_provider": "openai", # Switch the provider if needed (e.g., 'ollama' or 'openai')
166+
"api_provider": "openai", # Switch the provider if needed
168167
"openai_api_key": os.environ["OPENAI_API_KEY"], # Required if api_provider is 'openai'
169168
}
170169

@@ -231,8 +230,7 @@ and uses an LLM to formulate answers to your queries.
231230

232231
### Startup parameters
233232

234-
- `api_provider`: Defines to which LLM provider you want to connect (e.g., `ollama`, `openai`).
235-
`ollama` is intended for private LLM usage.
233+
- `api_provider`: Defines to which LLM provider you want to connect (e.g., `openai`).
236234
- `openai_api_key`: An API key for usage with ChatGPT. This is only required when
237235
`openai` is selected as the provider.
238236
- `db_name`: The name of the database where your Knowledge Graph was created.

site/content/3.13/data-science/graphrag/tutorial-notebook.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,7 @@ Before you begin, ensure you have the following:
4141
- **Jupyter Notebook:** This tutorial is designed to be run in ArangoDB's integrated
4242
Notebook servers.
4343
- **OpenAI API key (optional):** If you plan to use OpenAI's models for LLM
44-
processing, you need an OpenAI API key. Alternatively, you can configure the
45-
services to use other providers like Ollama.
44+
processing, you need an OpenAI API key.
4645

4746
## Environment setup
4847

@@ -164,7 +163,7 @@ parameters.
164163
importer_config = {
165164
"db_name": DB_NAME,
166165
"username": os.environ["USERNAME"],
167-
"api_provider": "openai", # Switch the provider if needed (e.g., 'ollama' or 'openai')
166+
"api_provider": "openai", # Switch the provider if needed
168167
"openai_api_key": os.environ["OPENAI_API_KEY"], # Required if api_provider is 'openai'
169168
}
170169

@@ -231,8 +230,7 @@ and uses an LLM to formulate answers to your queries.
231230

232231
### Startup parameters
233232

234-
- `api_provider`: Defines to which LLM provider you want to connect (e.g., `ollama`, `openai`).
235-
`ollama` is intended for private LLM usage.
233+
- `api_provider`: Defines to which LLM provider you want to connect (e.g., `openai`).
236234
- `openai_api_key`: An API key for usage with ChatGPT. This is only required when
237235
`openai` is selected as the provider.
238236
- `db_name`: The name of the database where your Knowledge Graph was created.

0 commit comments

Comments
 (0)