-
Notifications
You must be signed in to change notification settings - Fork 74
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Thinking models Part 1: Parsers and OpenAI adapter (#137)
Lots here: - OpenAI adapter for better control. - R1 support that really works. Saves reasoning into intermediate outputs. - Parser infra and R1 parser Still need some tests, but working.
- Loading branch information
Showing
25 changed files
with
984 additions
and
221 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
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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
""" | ||
# Model Adapters | ||
Model adapters are used to call AI models, like Ollama, OpenAI, Anthropic, etc. | ||
""" | ||
|
||
from . import ( | ||
base_adapter, | ||
langchain_adapters, | ||
openai_model_adapter, | ||
) | ||
|
||
__all__ = [ | ||
"base_adapter", | ||
"langchain_adapters", | ||
"openai_model_adapter", | ||
] |
Oops, something went wrong.