Skip to content

Commit

Permalink
Update documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
davidmezzetti committed Jul 15, 2024
1 parent ab8ada9 commit 8efdb21
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions docs/pipeline/text/llm.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/python/txtai/pipeline/data/textractor.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
"""

Expand Down

0 comments on commit 8efdb21

Please sign in to comment.