Skip to content

Releases: ju-bezdek/langchain-decorators

v0.0.12

09 Jul 07:50
Compare
Choose a tag to compare

New parameters in llm decorator

support for llm_selector_rule_key to sub selection of LLM's to for consideration during selection. This enables you to enforce pick only some models (like GPT4 for instance) for particular prompts, or even for particular runs
support for function_source and memory_source to point pick properties/attributes of the instance prompt is bound to (aka self) as a source of functions and memories, so we won't need to send pass it in every time

v0.0.9

17 Jun 14:24
Compare
Choose a tag to compare

Version 0.0.9 (2023-06-17)

  • fix some scenarios of LLM response that raised error
  • save AIMessage with function call in output wrapper
  • fix logging that we are out or stream context, when stream is not on

v0.0.8

16 Jun 23:07
Compare
Choose a tag to compare

Version 0.0.8 (2023-06-16)

  • support for parsing via OpenAI functions πŸš€
  • support for controlling function_call
  • add BIG_CONTEXT prompt type
  • ton of bugfixes

v0.0.7

15 Jun 13:41
Compare
Choose a tag to compare

Version 0.0.7 (2023-06-15)

  • fixed streaming capture
  • better handling for missing docs for llm_function

v0.0.6

15 Jun 09:34
Compare
Choose a tag to compare

Version 0.0.6 (2023-06-15)

  • fix some issues with async prompts

v0.0.5

14 Jun 19:58
Compare
Choose a tag to compare

Version 0.0.5 (2023-06-14)

  • support for OpenAI functions πŸš€

v0.0.4

13 Jun 10:03
Compare
Choose a tag to compare

Version 0.0.4 (2023-06-12)

  • improved pydantic parser is not more tolerant to the casing (accepts pascalCase, snake_case, CamelCase field names, no matter what casing uses model)
  • added boolean output parser

v0.0.3

11 Jun 12:46
Compare
Choose a tag to compare
  • fix #2 - incorrect default LLM initialization enforcing OPENAI_API_KEY check
    (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)

v0.0.2

10 Jun 19:11
Compare
Choose a tag to compare
  • fixed typo that caused broken async executions πŸ˜…

0.0.1

10 Jun 06:49
Compare
Choose a tag to compare
  • Initial release of the package.