Skip to content

Commit

Permalink
increase version
Browse files Browse the repository at this point in the history
  • Loading branch information
ju-bezdek committed Jun 13, 2023
1 parent 4707de8 commit e6158ce
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,8 @@
## Version 0.0.3 (2023-06-11)
- fix https://github.com/ju-bezdek/langchain-decorators/issues/2
(shoutout to @lukestanley who fixed it using Anthropic's LLM :)
- better pydantic and markdown output parser... now can self fix casing problems with keys (i.e. field in schema is "ceo_salary", now will accept "CEO salary" as well as "CeoSalary" and any other variations)
- better pydantic and markdown output parser... now can self fix casing problems with keys (i.e. field in schema is "ceo_salary", now will accept "CEO salary" as well as "CeoSalary" and any other variations)

## Version 0.0.4 (2023-06-12)
- improved `pydantic` parser is not more tolerant to casing (accepts pascalCase, snake_case, CamelCase field names, no matter what what casing uses model)
- added boolean output parser
2 changes: 1 addition & 1 deletion src/langchain_decorators/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
from .prompt_decorator import PromptDecoratorTemplate
from .streaming_context import StreamingContext
from .prompt_decorator import llm_prompt
__version__="0.0.3"
__version__="0.0.4"

0 comments on commit e6158ce

Please sign in to comment.