@@ -33,6 +33,7 @@ def add(
3333 self ,
3434 * ,
3535 user_id : str ,
36+ disable_default_ontology : typing .Optional [bool ] = OMIT ,
3637 email : typing .Optional [str ] = OMIT ,
3738 fact_rating_instruction : typing .Optional [FactRatingInstruction ] = OMIT ,
3839 first_name : typing .Optional [str ] = OMIT ,
@@ -48,6 +49,9 @@ def add(
4849 user_id : str
4950 The unique identifier of the user.
5051
52+ disable_default_ontology : typing.Optional[bool]
53+ When true, disables the use of default/fallback ontology for the user's graph.
54+
5155 email : typing.Optional[str]
5256 The email address of the user.
5357
@@ -75,6 +79,7 @@ def add(
7579 "users" ,
7680 method = "POST" ,
7781 json = {
82+ "disable_default_ontology" : disable_default_ontology ,
7883 "email" : email ,
7984 "fact_rating_instruction" : convert_and_respect_annotation_metadata (
8085 object_ = fact_rating_instruction , annotation = FactRatingInstruction , direction = "write"
@@ -339,6 +344,7 @@ def update(
339344 self ,
340345 user_id : str ,
341346 * ,
347+ disable_default_ontology : typing .Optional [bool ] = OMIT ,
342348 email : typing .Optional [str ] = OMIT ,
343349 fact_rating_instruction : typing .Optional [FactRatingInstruction ] = OMIT ,
344350 first_name : typing .Optional [str ] = OMIT ,
@@ -354,6 +360,9 @@ def update(
354360 user_id : str
355361 User ID
356362
363+ disable_default_ontology : typing.Optional[bool]
364+ When true, disables the use of default/fallback ontology for the user's graph.
365+
357366 email : typing.Optional[str]
358367 The email address of the user.
359368
@@ -381,6 +390,7 @@ def update(
381390 f"users/{ jsonable_encoder (user_id )} " ,
382391 method = "PATCH" ,
383392 json = {
393+ "disable_default_ontology" : disable_default_ontology ,
384394 "email" : email ,
385395 "fact_rating_instruction" : convert_and_respect_annotation_metadata (
386396 object_ = fact_rating_instruction , annotation = FactRatingInstruction , direction = "write"
@@ -640,6 +650,7 @@ async def add(
640650 self ,
641651 * ,
642652 user_id : str ,
653+ disable_default_ontology : typing .Optional [bool ] = OMIT ,
643654 email : typing .Optional [str ] = OMIT ,
644655 fact_rating_instruction : typing .Optional [FactRatingInstruction ] = OMIT ,
645656 first_name : typing .Optional [str ] = OMIT ,
@@ -655,6 +666,9 @@ async def add(
655666 user_id : str
656667 The unique identifier of the user.
657668
669+ disable_default_ontology : typing.Optional[bool]
670+ When true, disables the use of default/fallback ontology for the user's graph.
671+
658672 email : typing.Optional[str]
659673 The email address of the user.
660674
@@ -682,6 +696,7 @@ async def add(
682696 "users" ,
683697 method = "POST" ,
684698 json = {
699+ "disable_default_ontology" : disable_default_ontology ,
685700 "email" : email ,
686701 "fact_rating_instruction" : convert_and_respect_annotation_metadata (
687702 object_ = fact_rating_instruction , annotation = FactRatingInstruction , direction = "write"
@@ -948,6 +963,7 @@ async def update(
948963 self ,
949964 user_id : str ,
950965 * ,
966+ disable_default_ontology : typing .Optional [bool ] = OMIT ,
951967 email : typing .Optional [str ] = OMIT ,
952968 fact_rating_instruction : typing .Optional [FactRatingInstruction ] = OMIT ,
953969 first_name : typing .Optional [str ] = OMIT ,
@@ -963,6 +979,9 @@ async def update(
963979 user_id : str
964980 User ID
965981
982+ disable_default_ontology : typing.Optional[bool]
983+ When true, disables the use of default/fallback ontology for the user's graph.
984+
966985 email : typing.Optional[str]
967986 The email address of the user.
968987
@@ -990,6 +1009,7 @@ async def update(
9901009 f"users/{ jsonable_encoder (user_id )} " ,
9911010 method = "PATCH" ,
9921011 json = {
1012+ "disable_default_ontology" : disable_default_ontology ,
9931013 "email" : email ,
9941014 "fact_rating_instruction" : convert_and_respect_annotation_metadata (
9951015 object_ = fact_rating_instruction , annotation = FactRatingInstruction , direction = "write"
0 commit comments