diff --git a/docs/pipeline/text/llm.md b/docs/pipeline/text/llm.md index 323755688..2e72e7605 100644 --- a/docs/pipeline/text/llm.md +++ b/docs/pipeline/text/llm.md @@ -49,8 +49,8 @@ llm = LLM("google/gemma-2-9b") llm = LLM("google/gemma-2-9b", method="transformers") # llama.cpp -llm = LLM("microsoft/Phi-3-mini-4k-instruct-gguf/microsoft/Phi-3-mini-4k-instruct-gguf") -llm = LLM("microsoft/Phi-3-mini-4k-instruct-gguf/microsoft/Phi-3-mini-4k-instruct-gguf", +llm = LLM("microsoft/Phi-3-mini-4k-instruct-gguf/Phi-3-mini-4k-instruct-gguf") +llm = LLM("microsoft/Phi-3-mini-4k-instruct-gguf/Phi-3-mini-4k-instruct-gguf", method="llama.cpp") # LiteLLM diff --git a/src/python/txtai/pipeline/data/textractor.py b/src/python/txtai/pipeline/data/textractor.py index 767d9a96d..5974509e6 100644 --- a/src/python/txtai/pipeline/data/textractor.py +++ b/src/python/txtai/pipeline/data/textractor.py @@ -186,7 +186,7 @@ def __init__(self, paragraphs, sections): Create a new Extract instance. Args: - paragraphs: True if paragraph parsing enable, False otherwise + paragraphs: True if paragraph parsing enabled, False otherwise sections: True if section parsing enabled, False otherwise """