Skip to content

Releases: nomic-ai/nomic

v3.3.0

31 Oct 00:10
52329a8
Compare
Choose a tag to compare

3.3.0 (2024-10-30)

Features

v3.2.0

29 Oct 16:32
f080fbd
Compare
Choose a tag to compare

3.2.0 (2024-10-29)

Features

  • Nomic Python SDK defaults to using the API key of the issuing organization (organization scoped API keys) (#340) (9e4701c)

v3.1.3

29 Oct 01:36
c4e652e
Compare
Choose a tag to compare

3.1.3 (2024-10-23)

Bug Fixes

v3.1.2

27 Aug 01:36
d67643c
Compare
Choose a tag to compare

3.1.2 (2024-08-27)

Bug Fixes

v3.1.1

22 Jul 20:00
f474849
Compare
Choose a tag to compare

3.1.1 (2024-07-22)

Bug Fixes

  • release-please releases twice, check if commit message is chore(main) (#332) (c5ab322)

v3.1.0

22 Jul 19:19
6bc137d
Compare
Choose a tag to compare

3.1.0 (2024-07-22)

Features

Bug Fixes

Documentation

  • update docs to make more clear that blobs are stored locally only (#318) (aa863ec)

v3.0.6: Task type for text embeddings

23 Jan 20:30
f8ddd74
Compare
Choose a tag to compare
  • Allows specifying task type for text embeddings.

Nomic Client 3.0.5: API key support, faster embedding inference

22 Jan 14:58
312b151
Compare
Choose a tag to compare
  • Support for using Nomic API keys as your authentication method by running nomic login <api_key>
  • Faster text embedding inference

Nomic Client 3.0.0: Slugs, AtlasDataset and Developer Ergonomics

11 Jan 17:45
Compare
Choose a tag to compare

Nomic Client 3.0.0

New Features

  • All identifiers moved to unique, human-readable, URL valid organization/project slugs. These are auto-created for you on dataset creation and are ensured to be unique across your Atlas organization
from nomic import AtlasDataset
dataset = AtlasDataset('my-organization/my-dataset')
print(dataset.maps[0])
  • AtlasProject renamed to AtlasDataset
  • Makes supplying an index_name optional (by being set to None)
  • map_data unifies easy interfaces for indexing datasets.

Deprecations:

  • map_embeddings, map_text in favor a single map_data
  • Deprecates iterable in map_text, map_data will no longer support this iterable workflow. Use AtlasDataset and .add_data instead.

Transitioning from 2.x to 3.x

  • Rename all map_text and map_embedding calls to map_data
  • Replace any use of AtlasProject with AtlasDataset
  • See examples in the python client examples folder for details.

v1.1.14: Topics and duplicate detection are accessible in client.

09 Jun 13:26
c7e04de
Compare
Choose a tag to compare