Skip to content

Commit

Permalink
update changelog for 2.1.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
rgbkrk committed Mar 4, 2024
1 parent c493e12 commit ddf8a43
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,21 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [2.1.0]

### Added
- New `tools` namespace to replace the `builtins` namespace.
- Simplified `Palette` class in `colors.py` for displaying color palettes, now leveraging Pydantic for validation.

### Changed
- Default model in `Chat` class constructor now uses the `GPT_3_5_TURBO` enum.
- Migrated `run_cell` to `run_python` to avoid naming confusion and deprecated `run_cell`.
- Updated documentation and examples to reflect the new `tools` namespace and usage patterns.
- Removed `__required__` from `extract_model_from_function` in `registry.py` to suppress Pydantic warnings.

### Fixed
- Ensured the final tool call result properly updates the UI to reflect the outcome of tool execution.

## [2.0.0]

- Support parallel tool calling by default in `Chat`.
Expand Down
3 changes: 2 additions & 1 deletion chatlab/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
from . import models
from ._version import __version__
from .chat import Chat
from .decorators import ChatlabMetadata, expose_exception_to_llm
from .decorators import ChatlabMetadata, expose_exception_to_llm, incremental_display
from .messaging import (
ai,
assistant,
Expand All @@ -45,6 +45,7 @@
"user",
"assistant",
"assistant_function_call",
"incremental_display",
"function_result",
"tool_result",
"models",
Expand Down

0 comments on commit ddf8a43

Please sign in to comment.