-
Notifications
You must be signed in to change notification settings - Fork 170
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* textgrad vision integration init * max tokens for multimodal calls * an example nb * support for png and jpgs without having to swap encodings * check if bytes * support image from * check for variable values * remove unfinihsed notebook * remove unused fns * gitignore logs * better error handling in the optimizer * remove redundant logging * better function names, a bit more typing * move the utilities from __init__ to a new file * additional tests and solving small issue --------- Co-authored-by: vinid <[email protected]>
- Loading branch information
Showing
25 changed files
with
1,102 additions
and
133 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
Large diffs are not rendered by default.
Oops, something went wrong.
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
File renamed without changes.
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,4 +6,6 @@ platformdirs>=3.11.0 | |
datasets>=2.14.6 | ||
diskcache>=5.6.3 | ||
graphviz>=0.20.3 | ||
gdown>=5.2.0 | ||
gdown>=5.2.0 | ||
pillow | ||
httpx |
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 |
---|---|---|
@@ -1,4 +1,5 @@ | ||
from .functional import sum, aggregate | ||
from .llm_ops import LLMCall, FormattedLLMCall, LLMCall_with_in_context_examples | ||
from .multimodal_ops import MultimodalLLMCall, OrderedFieldsMultimodalLLMCall | ||
from .function import Module | ||
from .string_based_ops import StringBasedFunction |
Oops, something went wrong.