Jacob Valdez

Results 36 issues of Jacob Valdez

A lot of config information doesn't justify a full blown class, but Python dicts can be hard on my eyes and right pinky because arbitrary keys must be enclosed in...

feature

Sometimes you have a bunch of small classes that don't justify all the trouble of writing `class` a hundred times. The same could be said for subclasses or a class...

feature

# Are there plans to add support for labeled `for`, `while`, `break`, and `continue` statements? ## Reasons This feature is primarily intended for correctness' sake, but also convenience. **Correctness**: Say...

feature

My Jekyll site needed a phone encoder, and I just felt terrible typing `{{ phone | encode_email }}` so I renamed everything in this repo to make it say "phone"...

### Feature request Define corresponding primitive structures and interfaces for images, audio, and video as has already been done for text. Currently we have [this base Document class](https://github.com/hwchase17/langchain/blob/04b74d0446bdb8fc1f9e544d2f164a59bbd0df0c/langchain/schema.py#L269): ```python class...

### Feature request The concise API provides many one-liners for common use cases ### Motivation - Many devs are too busy to learn langchain's abstractions and paradigms - Many devs...

### Feature request Provide facades for wrapping any `BaseChatModel` into an `LLM` interface and wrapping any `BaseLanguageModel` into a `BaseChatModel` interface. ### Motivation This dramatically simplifies the process of supporting...

### Feature request OutputParser for removing quotes from the input ### Motivation Sometimes we end up using quotes to identify our examples. In these cases, the LLM usually assumes it...

### Feature request Pases the output from one parser into the input of another ### Motivation Useful when coupling a `RemoveQuotesOutputParser` (#4252), the primary output parser, and a `Retry/RetryWithErrorOutputParser` ###...