answerrocket-client 0.2.102__tar.gz → 0.2.104__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.
- {answerrocket_client-0.2.102 → answerrocket_client-0.2.104}/PKG-INFO +1 -1
- {answerrocket_client-0.2.102 → answerrocket_client-0.2.104}/answer_rocket/__init__.py +1 -1
- {answerrocket_client-0.2.102 → answerrocket_client-0.2.104}/answer_rocket/data.py +1 -0
- {answerrocket_client-0.2.102 → answerrocket_client-0.2.104}/answer_rocket/graphql/schema.py +6 -3
- {answerrocket_client-0.2.102 → answerrocket_client-0.2.104}/answerrocket_client.egg-info/PKG-INFO +1 -1
- {answerrocket_client-0.2.102 → answerrocket_client-0.2.104}/answer_rocket/auth.py +0 -0
- {answerrocket_client-0.2.102 → answerrocket_client-0.2.104}/answer_rocket/chat.py +0 -0
- {answerrocket_client-0.2.102 → answerrocket_client-0.2.104}/answer_rocket/client.py +0 -0
- {answerrocket_client-0.2.102 → answerrocket_client-0.2.104}/answer_rocket/client_config.py +0 -0
- {answerrocket_client-0.2.102 → answerrocket_client-0.2.104}/answer_rocket/config.py +0 -0
- {answerrocket_client-0.2.102 → answerrocket_client-0.2.104}/answer_rocket/email.py +0 -0
- {answerrocket_client-0.2.102 → answerrocket_client-0.2.104}/answer_rocket/error.py +0 -0
- {answerrocket_client-0.2.102 → answerrocket_client-0.2.104}/answer_rocket/graphql/__init__.py +0 -0
- {answerrocket_client-0.2.102 → answerrocket_client-0.2.104}/answer_rocket/graphql/client.py +0 -0
- {answerrocket_client-0.2.102 → answerrocket_client-0.2.104}/answer_rocket/graphql/sdk_operations.py +0 -0
- {answerrocket_client-0.2.102 → answerrocket_client-0.2.104}/answer_rocket/layouts.py +0 -0
- {answerrocket_client-0.2.102 → answerrocket_client-0.2.104}/answer_rocket/llm.py +0 -0
- {answerrocket_client-0.2.102 → answerrocket_client-0.2.104}/answer_rocket/output.py +0 -0
- {answerrocket_client-0.2.102 → answerrocket_client-0.2.104}/answer_rocket/skill.py +0 -0
- {answerrocket_client-0.2.102 → answerrocket_client-0.2.104}/answer_rocket/types.py +0 -0
- {answerrocket_client-0.2.102 → answerrocket_client-0.2.104}/answer_rocket/util/__init__.py +0 -0
- {answerrocket_client-0.2.102 → answerrocket_client-0.2.104}/answer_rocket/util/meta_data_frame.py +0 -0
- {answerrocket_client-0.2.102 → answerrocket_client-0.2.104}/answerrocket_client.egg-info/SOURCES.txt +0 -0
- {answerrocket_client-0.2.102 → answerrocket_client-0.2.104}/answerrocket_client.egg-info/dependency_links.txt +0 -0
- {answerrocket_client-0.2.102 → answerrocket_client-0.2.104}/answerrocket_client.egg-info/requires.txt +0 -0
- {answerrocket_client-0.2.102 → answerrocket_client-0.2.104}/answerrocket_client.egg-info/top_level.txt +0 -0
- {answerrocket_client-0.2.102 → answerrocket_client-0.2.104}/pyproject.toml +0 -0
- {answerrocket_client-0.2.102 → answerrocket_client-0.2.104}/readme.md +0 -0
- {answerrocket_client-0.2.102 → answerrocket_client-0.2.104}/setup.cfg +0 -0
- {answerrocket_client-0.2.102 → answerrocket_client-0.2.104}/test/test_client.py +0 -0
|
@@ -1138,6 +1138,7 @@ class Data:
|
|
|
1138
1138
|
domain_object.synonyms()
|
|
1139
1139
|
domain_object.output_label_plural()
|
|
1140
1140
|
domain_object.hide_from_user()
|
|
1141
|
+
domain_object.misc_info()
|
|
1141
1142
|
|
|
1142
1143
|
def _add_domain_attribute_fields(self, fragment: Fragment):
|
|
1143
1144
|
fragment.display_format()
|
|
@@ -240,12 +240,13 @@ class PagingInput(sgqlc.types.Input):
|
|
|
240
240
|
########################################################################
|
|
241
241
|
class DomainArtifact(sgqlc.types.Interface):
|
|
242
242
|
__schema__ = schema
|
|
243
|
-
__field_names__ = ('id', 'name', 'description', 'output_label', 'is_active', 'misc_info')
|
|
243
|
+
__field_names__ = ('id', 'name', 'description', 'output_label', 'is_active', 'hide_from_user', 'misc_info')
|
|
244
244
|
id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='id')
|
|
245
245
|
name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='name')
|
|
246
246
|
description = sgqlc.types.Field(String, graphql_name='description')
|
|
247
247
|
output_label = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='outputLabel')
|
|
248
248
|
is_active = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name='isActive')
|
|
249
|
+
hide_from_user = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name='hideFromUser')
|
|
249
250
|
misc_info = sgqlc.types.Field(String, graphql_name='miscInfo')
|
|
250
251
|
|
|
251
252
|
|
|
@@ -2062,7 +2063,7 @@ class UserGroup(sgqlc.types.Type):
|
|
|
2062
2063
|
|
|
2063
2064
|
class AzureOpenaiCompletionLLMApiConfig(sgqlc.types.Type, LLMApiConfig):
|
|
2064
2065
|
__schema__ = schema
|
|
2065
|
-
__field_names__ = ('api_base_url', 'api_version', 'openai_model_name', 'max_tokens_input', 'max_tokens_content_generation', 'temperature', 'top_p', 'presence_penalty', 'frequency_penalty', 'cost_per_model_input_unit', 'cost_per_model_output_unit')
|
|
2066
|
+
__field_names__ = ('api_base_url', 'api_version', 'openai_model_name', 'max_tokens_input', 'max_tokens_content_generation', 'temperature', 'top_p', 'presence_penalty', 'frequency_penalty', 'cost_per_model_input_unit', 'cost_per_model_output_unit', 'use_apim_auth')
|
|
2066
2067
|
api_base_url = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='apiBaseUrl')
|
|
2067
2068
|
api_version = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='apiVersion')
|
|
2068
2069
|
openai_model_name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='openaiModelName')
|
|
@@ -2074,13 +2075,15 @@ class AzureOpenaiCompletionLLMApiConfig(sgqlc.types.Type, LLMApiConfig):
|
|
|
2074
2075
|
frequency_penalty = sgqlc.types.Field(sgqlc.types.non_null(Float), graphql_name='frequencyPenalty')
|
|
2075
2076
|
cost_per_model_input_unit = sgqlc.types.Field(Float, graphql_name='costPerModelInputUnit')
|
|
2076
2077
|
cost_per_model_output_unit = sgqlc.types.Field(Float, graphql_name='costPerModelOutputUnit')
|
|
2078
|
+
use_apim_auth = sgqlc.types.Field(Boolean, graphql_name='useApimAuth')
|
|
2077
2079
|
|
|
2078
2080
|
|
|
2079
2081
|
class AzureOpenaiEmbeddingLLMApiConfig(sgqlc.types.Type, LLMApiConfig):
|
|
2080
2082
|
__schema__ = schema
|
|
2081
|
-
__field_names__ = ('api_base_url', 'api_version')
|
|
2083
|
+
__field_names__ = ('api_base_url', 'api_version', 'use_apim_auth')
|
|
2082
2084
|
api_base_url = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='apiBaseUrl')
|
|
2083
2085
|
api_version = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='apiVersion')
|
|
2086
|
+
use_apim_auth = sgqlc.types.Field(Boolean, graphql_name='useApimAuth')
|
|
2084
2087
|
|
|
2085
2088
|
|
|
2086
2089
|
class Dimension(sgqlc.types.Type, DomainArtifact):
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{answerrocket_client-0.2.102 → answerrocket_client-0.2.104}/answer_rocket/graphql/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
{answerrocket_client-0.2.102 → answerrocket_client-0.2.104}/answer_rocket/graphql/sdk_operations.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{answerrocket_client-0.2.102 → answerrocket_client-0.2.104}/answer_rocket/util/meta_data_frame.py
RENAMED
|
File without changes
|
{answerrocket_client-0.2.102 → answerrocket_client-0.2.104}/answerrocket_client.egg-info/SOURCES.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|