Skip to content

Releases: closedloop-technologies/PromptedGraphs

bugfix: poetry lock version updates

14 May 18:10
Compare
Choose a tag to compare
📝 (init.py): update version from 0.4.1 to 0.4.3 to reflect the latest…

… changes and improvements

📝 (pyproject.toml): update version from 0.4.1 to 0.4.3 to match the updated version in init.py
📝 (pyproject.toml): update python dependency to be compatible with versions below 4.0 and at least 3.10
♻️ (pyproject.toml): remove twine dependency as it is no longer needed
♻️ (pyproject.toml): remove gcloud dependency as it is no longer needed

Version Bump

14 May 17:55
43ba6d2
Compare
Choose a tag to compare

Full Changelog: v0.4.0...v0.4.2

Version Bump - relaxed python version requirements

14 May 17:40
68d1309
Compare
Choose a tag to compare

Version Bump

08 May 23:14
201808f
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.3.3...v0.4.0

Version Bump

28 Feb 18:20
Compare
Choose a tag to compare

Full Changelog: v0.3.2...v0.3.3

Version Bump

28 Feb 18:16
Compare
Choose a tag to compare

Full Changelog: v0.3.1...v0.3.2

API Cost and Latency added

31 Jan 20:03
d6d9cec
Compare
Choose a tag to compare

Custom tracking of apis

spacy_usage = Usage(model='spacy')
spacy_usage.start()
ents_spacy = await extract_entities_spacy....
spacy_usage.end()
print(spacy_usage)

Can compare api costs and durations across multiple models

image

Brainstorming Data

30 Jan 21:47
Compare
Choose a tag to compare

Enables the generation of structured data. We can brainstorm thousands of samples of arbitrary datatypes.

The way to display the results has improved with a cleaner wrapper of the spacy.displacy functionality

Nested Structured Data Extraction

13 Oct 04:50
Compare
Choose a tag to compare

Added the ability for nested data structures to be extracted from text and returned in Pydantic DataModels

Structured Data Extraction

13 Oct 02:21
Compare
Choose a tag to compare

Implemented a clean way to extract typed objects (via Pydantic) from text.

data = extract_data(text=msg, output_type=list[UserIntent])