-
Notifications
You must be signed in to change notification settings - Fork 215
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #281 from SylphAI-Inc/model_provider
add model providers display and code
- Loading branch information
Showing
13 changed files
with
415 additions
and
40 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
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 |
---|---|---|
|
@@ -39,7 +39,7 @@ | |
GroqAPIClient, | ||
OpenAIClient, | ||
GoogleGenAIClient, | ||
OllamaClient | ||
OllamaClient, | ||
) | ||
|
||
|
||
|
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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[tool.poetry] | ||
name = "adalflow" | ||
|
||
version = "0.2.5" | ||
version = "0.2.6" | ||
description = "The Library to Build and Auto-optimize LLM Applications" | ||
authors = ["Li Yin <[email protected]>"] | ||
readme = "README.md" | ||
|
@@ -118,10 +118,20 @@ url = "https://pypi.nvidia.com" | |
# priority = "supplemental" | ||
# url = "https://pypi.nvidia.com" | ||
|
||
[tool.ruff] | ||
exclude = ["images"] | ||
|
||
|
||
[build-system] | ||
requires = ["poetry-core"] | ||
build-backend = "poetry.core.masonry.api" | ||
|
||
# for formatting and linting | ||
[tool.black] | ||
line-length = 88 | ||
target-version = ["py311"] | ||
|
||
[tool.ruff] | ||
exclude = ["images"] | ||
lint.extend-ignore = [ | ||
"E402", # Ignore module-level import issues | ||
"E731", | ||
"UP007", # Wants | over Union, which breaks 3.8 | ||
] |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.