-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed crash on startup if Ollama is not available
Fixed markdown display issues around fences Added "thinking" fence for deepseek thought output Much better support for displaying max input context size Updated deps
- Loading branch information
1 parent
9e4c9f3
commit 2e98ed8
Showing
14 changed files
with
170 additions
and
131 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,9 +6,10 @@ | |
import warnings | ||
|
||
import clipman | ||
from langchain._api import LangChainDeprecationWarning | ||
from langchain_core._api import LangChainBetaWarning | ||
|
||
warnings.simplefilter("ignore", category=LangChainDeprecationWarning) | ||
warnings.simplefilter("ignore", category=LangChainBetaWarning) | ||
warnings.simplefilter("ignore", category=DeprecationWarning) | ||
|
||
try: | ||
clipman.init() | ||
|
@@ -20,7 +21,7 @@ | |
__credits__ = ["Paul Robello"] | ||
__maintainer__ = "Paul Robello" | ||
__email__ = "[email protected]" | ||
__version__ = "0.3.16" | ||
__version__ = "0.3.17" | ||
__licence__ = "MIT" | ||
__application_title__ = "PAR LLAMA" | ||
__application_binary__ = "parllama" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.