Skip to content

Commit

Permalink
Wording improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
collindutter committed Aug 22, 2024
1 parent 617e7b3 commit b1ded7b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Iteration support to `ListArtifact`.

### Changed
- **BREAKING**: Split `BaseExtractionEngine.extract` into `extract` and `extract_artifacts` for consistency with `BaseSummaryEngine`.
- **BREAKING**: Split `BaseExtractionEngine.extract` into `extract_text` and `extract_artifacts` for consistency with `BaseSummaryEngine`.
- **BREAKING**: `BaseExtractionEngine` no longer catches exceptions and returns `ErrorArtifact`s.
- **BREAKING**: `JsonExtractionEngine.template_schema` is now required.
- **BREAKING**: `CsvExtractionEngine.column_names` is now required.
Expand Down
4 changes: 2 additions & 2 deletions docs/griptape-framework/engines/extraction-engines.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ As of now, Griptape supports two types of Extraction Engines: the CSV Extraction

## CSV

The CSV Extraction Engine is designed for extracting CSV-formatted content from unstructured data.
The CSV Extraction Engine extracts tabular content from unstructured data.

```python
--8<-- "docs/griptape-framework/engines/src/extraction_engines_1.py"
Expand All @@ -24,7 +24,7 @@ Charlie,40,Texas

## JSON

The JSON Extraction Engine is designed for extracting JSON-formatted content from unstructed data.
The JSON Extraction Engine extracts JSON-formatted content from unstructed data.


```python
Expand Down

0 comments on commit b1ded7b

Please sign in to comment.