diff --git a/answer_rocket/graphql/schema.py b/answer_rocket/graphql/schema.py index f2d8dcf..4642b5c 100644 --- a/answer_rocket/graphql/schema.py +++ b/answer_rocket/graphql/schema.py @@ -687,10 +687,11 @@ class MaxContentBlock(sgqlc.types.Type): class MaxCopilot(sgqlc.types.Type): __schema__ = schema - __field_names__ = ('copilot_id', 'name', 'description', 'system_prompt', 'beta_yaml', 'global_python_code', 'copilot_questions', 'connection_datasets', 'copilot_skill_ids', 'copilot_topics', 'database_id', 'dataset_id') + __field_names__ = ('copilot_id', 'name', 'description', 'description_text', 'system_prompt', 'beta_yaml', 'global_python_code', 'copilot_questions', 'connection_datasets', 'copilot_skill_ids', 'copilot_topics', 'database_id', 'dataset_id') copilot_id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='copilotId') name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='name') description = sgqlc.types.Field(String, graphql_name='description') + description_text = sgqlc.types.Field(String, graphql_name='descriptionText') system_prompt = sgqlc.types.Field(String, graphql_name='systemPrompt') beta_yaml = sgqlc.types.Field(String, graphql_name='betaYaml') global_python_code = sgqlc.types.Field(String, graphql_name='globalPythonCode') @@ -728,7 +729,7 @@ class MaxCopilotQuestion(sgqlc.types.Type): class MaxCopilotSkill(sgqlc.types.Type): __schema__ = schema - __field_names__ = ('copilot_skill_id', 'name', 'copilot_skill_type', 'detailed_name', 'description', 'detailed_description', 'dataset_id', 'parameters', 'skill_chat_questions', 'yaml_code', 'skill_code', 'misc_info', 'scheduling_only', 'copilot_skill_nodes', 'capabilities', 'limitations', 'example_questions', 'parameter_guidance') + __field_names__ = ('copilot_skill_id', 'name', 'copilot_skill_type', 'detailed_name', 'description', 'detailed_description', 'dataset_id', 'parameters', 'skill_chat_questions', 'yaml_code', 'skill_code', 'misc_info', 'scheduling_only', 'active', 'copilot_skill_nodes', 'capabilities', 'limitations', 'example_questions', 'parameter_guidance') copilot_skill_id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='copilotSkillId') name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='name') copilot_skill_type = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='copilotSkillType') @@ -742,6 +743,7 @@ class MaxCopilotSkill(sgqlc.types.Type): skill_code = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='skillCode') misc_info = sgqlc.types.Field(JSON, graphql_name='miscInfo') scheduling_only = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name='schedulingOnly') + active = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name='active') copilot_skill_nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('MaxCopilotSkillNode'))), graphql_name='copilotSkillNodes') capabilities = sgqlc.types.Field(String, graphql_name='capabilities') limitations = sgqlc.types.Field(String, graphql_name='limitations')