github nomic-ai/nomic v3.0.0
Nomic Client 3.0.0: Slugs, AtlasDataset and Developer Ergonomics

latest releases: v3.5.1, v3.5.0, v3.4.1...
20 months ago

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.

Don't miss a new nomic release

NewReleases is sending notifications on new releases.