You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Remove (previously deprecated) `llama_index.token_counter.token_counter` module. See [migration guide](/how_to/callbacks/token_counting_migration.html) for more details on new callback based token counting.
9828
-
- Remove `ChatGPTLLMPredictor` and `HuggingFaceLLMPredictor`. See [migration guide](/how_to/customization/llms_migration_guide.html) for more details on replacements.
9832
+
- Remove (previously deprecated) `llama_index.token_counter.token_counter` module. See [migration guide](/python/framework/module_guides/observability/callbacks/token_counting_migration/) for more details on new callback based token counting.
9833
+
- Remove `ChatGPTLLMPredictor` and `HuggingFaceLLMPredictor`.
9829
9834
- Remove support for setting `cache` via `LLMPredictor` constructor.
9830
9835
- Update `BaseChatEngine` interface:
9831
9836
- adjust `chat_history` to use `List[ChatMessage]]` as type
-[Vector Store Guide](/python/framework/module_guides/indexing/vector_store_guide)
23
+
-[Vector Store Integrations](/python/framework/community/integrations/vector_stores)
24
24
25
25
## LLMPredictor
26
26
27
27
The `LLMPredictor` object is no longer intended to be used by users. Instead, you can setup an LLM directly and pass it into the `Settings` or the interface using the LLM. The `LLM` class itself has similar attributes and methods as the `LLMPredictor`.
28
28
29
-
-[LLMs in LlamaIndex](../module_guides/models/llms.md)
30
-
-[Setting LLMs in the Settings](../module_guides/supporting_modules/settings.md)
29
+
-[LLMs in LlamaIndex](/python/framework/module_guides/models/llms)
30
+
-[Setting LLMs in the Settings](/python/framework/module_guides/supporting_modules/settings)
31
31
32
32
## PromptHelper and max_input_size/
33
33
@@ -37,31 +37,31 @@ The `PromptHelper` in general has been deprecated in favour of specifying parame
37
37
38
38
See the following links for more details.
39
39
40
-
-[Configuring settings in the Settings](../module_guides/supporting_modules/settings.md)
41
-
-[Parsing Documents into Nodes](../module_guides/loading/node_parsers/index.md)
40
+
-[Configuring settings in the Settings](/python/framework/module_guides/supporting_modules/settings)
41
+
-[Parsing Documents into Nodes](/python/framework/module_guides/loading/node_parsers)
42
42
43
43
## ServiceContext
44
44
45
45
The `ServiceContext` object has been deprecated in favour of the `Settings` object.
46
46
47
-
-[Configuring settings in the Settings](../module_guides/supporting_modules/settings.md)
47
+
-[Configuring settings in the Settings](/python/framework/module_guides/supporting_modules/settings)
48
48
49
49
## llama-index-legacy
50
50
51
51
The `llama-index-legacy` package has been deprecated and removed from the repository. Please see the latest getting started guide for the latest information and usage.
The `AgentRunner` and `AgentWorker` classes have been deprecated in favour of [AgentWorkflow](../module_guides/deploying/agents/index.md) and [Workflows](../module_guides/workflow/index.md).
57
+
The `AgentRunner` and `AgentWorker` classes have been deprecated in favour of [AgentWorkflow](/python/framework/module_guides/deploying/agents) and [Workflows](/python/framework/module_guides/workflow).
Copy file name to clipboardExpand all lines: docs/docs/community/faq/chat_engines.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,10 +9,10 @@
9
9
10
10
##### 1. How to make bot retain context while answering, Can I do that with LlamaIndex?
11
11
12
-
Yes you can, Llamaindex provides chat engines that you can use to retain context and answer as per the context. You can find more here [Chat Engines](../../module_guides/deploying/chat_engines/index.md).
12
+
Yes you can, Llamaindex provides chat engines that you can use to retain context and answer as per the context. You can find more here [Chat Engines](/python/framework/module_guides/deploying/chat_engines).
13
13
14
14
---
15
15
16
16
##### 2. How to use Data Agent with Chat engine?
17
17
18
-
To use data Agents with Chat engine you have to set the chat mode while initializing the chat engine. Find more here [ Data Agents with Chat Engine](../../module_guides/deploying/chat_engines/usage_pattern.md#available-chat-modes)
18
+
To use data Agents with Chat engine you have to set the chat mode while initializing the chat engine. Find more here [ Data Agents with Chat Engine](/python/framework/module_guides/deploying/chat_engines/usage_pattern#available-chat-modes)
Copy file name to clipboardExpand all lines: docs/docs/community/faq/documents_and_nodes.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,18 +10,18 @@
10
10
11
11
##### 1. What is the default `chunk_size` of a Node object?
12
12
13
-
It's 1024 by default. If you want to customize the `chunk_size`, You can follow [Customizing Node](../../module_guides/loading/node_parsers/index.md#customization)
13
+
It's 1024 by default. If you want to customize the `chunk_size`, You can follow [Customizing Node](/python/framework/module_guides/loading/node_parsers#customization)
14
14
15
15
---
16
16
17
17
##### 2. How to add information like name, url in a `Document` object?
18
18
19
-
You can customize the Document object and add extra info in the form of metadata. To know more on this follow [Customize Document](../../module_guides/loading/documents_and_nodes/usage_documents.md#customizing-documents).
19
+
You can customize the Document object and add extra info in the form of metadata. To know more on this follow [Customize Document](/python/framework/module_guides/loading/documents_and_nodes/usage_documents#customizing-documents).
20
20
21
21
---
22
22
23
23
##### 3. How to update existing document in an Index?
24
24
25
-
You can update/delete existing document in an Index with the help of `doc_id`. You can add new document to an existing Index too. To know more check [Document Management](../../module_guides/indexing/document_management.md)
25
+
You can update/delete existing document in an Index with the help of `doc_id`. You can add new document to an existing Index too. To know more check [Document Management](/python/framework/module_guides/indexing/document_management)
##### 4. How to use Huggingface Text-Embedding Inference with LlamaIndex?
35
35
36
-
To use HuggingFace Text-Embedding Inference you can follow [Text-Embedding-Inference](../../examples/embeddings/text_embedding_inference.ipynb) tutorial.
36
+
To use HuggingFace Text-Embedding Inference you can follow [Text-Embedding-Inference](/python/examples/embeddings/text_embedding_inference) tutorial.
0 commit comments