nomic 3.0.38__tar.gz → 3.0.39__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of nomic might be problematic. Click here for more details.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: nomic
3
- Version: 3.0.38
3
+ Version: 3.0.39
4
4
  Summary: The official Nomic python client.
5
5
  Home-page: https://github.com/nomic-ai/nomic
6
6
  Author: nomic.ai
@@ -1064,7 +1064,7 @@ class AtlasDataset(AtlasClass):
1064
1064
  elif isinstance(topic_model, NomicTopicOptions):
1065
1065
  pass
1066
1066
  elif topic_model:
1067
- topic_model = NomicTopicOptions()
1067
+ topic_model = NomicTopicOptions(topic_label_field=indexed_field)
1068
1068
  else:
1069
1069
  topic_model = NomicTopicOptions(build_topic_model=False)
1070
1070
 
@@ -1168,7 +1168,9 @@ class AtlasDataset(AtlasClass):
1168
1168
  topic_field = None
1169
1169
  topic_model.build_topic_model = False
1170
1170
  else:
1171
- topic_field = topic_model.topic_label_field
1171
+ topic_field = (
1172
+ topic_model.topic_label_field if topic_model.topic_label_field != indexed_field else None
1173
+ )
1172
1174
  else:
1173
1175
  topic_field = topic_model.topic_label_field
1174
1176
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: nomic
3
- Version: 3.0.38
3
+ Version: 3.0.39
4
4
  Summary: The official Nomic python client.
5
5
  Home-page: https://github.com/nomic-ai/nomic
6
6
  Author: nomic.ai
@@ -8,7 +8,7 @@ description = "The official Nomic python client."
8
8
 
9
9
  setup(
10
10
  name="nomic",
11
- version="3.0.38",
11
+ version="3.0.39",
12
12
  url="https://github.com/nomic-ai/nomic",
13
13
  description=description,
14
14
  long_description=description,
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes