Skip to content

Releases: closedloop-technologies/PromptedGraphs

bugfix: poetry lock version updates

14 May 18:10

Choose a tag to compare

v0.4.3

📝 (init.py): update version from 0.4.1 to 0.4.3 to reflect the latest…

Version Bump

14 May 17:55
43ba6d2

Choose a tag to compare

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

Version Bump - relaxed python version requirements

14 May 17:40
68d1309

Choose a tag to compare

Version Bump

08 May 23:14
201808f

Choose a tag to compare

What's Changed

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

Version Bump

28 Feb 18:20

Choose a tag to compare

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

Version Bump

28 Feb 18:16

Choose a tag to compare

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

API Cost and Latency added

31 Jan 20:03
d6d9cec

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

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

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

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])