airia 0.1.7__tar.gz → 0.1.8__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.
Files changed (29) hide show
  1. {airia-0.1.7 → airia-0.1.8}/PKG-INFO +1 -1
  2. {airia-0.1.7 → airia-0.1.8}/airia/types/api/get_pipeline_config.py +5 -3
  3. {airia-0.1.7 → airia-0.1.8}/airia.egg-info/PKG-INFO +1 -1
  4. {airia-0.1.7 → airia-0.1.8}/pyproject.toml +1 -1
  5. {airia-0.1.7 → airia-0.1.8}/LICENSE +0 -0
  6. {airia-0.1.7 → airia-0.1.8}/README.md +0 -0
  7. {airia-0.1.7 → airia-0.1.8}/airia/__init__.py +0 -0
  8. {airia-0.1.7 → airia-0.1.8}/airia/client/__init__.py +0 -0
  9. {airia-0.1.7 → airia-0.1.8}/airia/client/async_client.py +0 -0
  10. {airia-0.1.7 → airia-0.1.8}/airia/client/base_client.py +0 -0
  11. {airia-0.1.7 → airia-0.1.8}/airia/client/sync_client.py +0 -0
  12. {airia-0.1.7 → airia-0.1.8}/airia/exceptions.py +0 -0
  13. {airia-0.1.7 → airia-0.1.8}/airia/logs.py +0 -0
  14. {airia-0.1.7 → airia-0.1.8}/airia/types/__init__.py +0 -0
  15. {airia-0.1.7 → airia-0.1.8}/airia/types/api/pipeline_execution.py +0 -0
  16. {airia-0.1.7 → airia-0.1.8}/airia/types/api_version.py +0 -0
  17. {airia-0.1.7 → airia-0.1.8}/airia/types/request_data.py +0 -0
  18. {airia-0.1.7 → airia-0.1.8}/airia/types/sse_messages.py +0 -0
  19. {airia-0.1.7 → airia-0.1.8}/airia/utils/sse_parser.py +0 -0
  20. {airia-0.1.7 → airia-0.1.8}/airia.egg-info/SOURCES.txt +0 -0
  21. {airia-0.1.7 → airia-0.1.8}/airia.egg-info/dependency_links.txt +0 -0
  22. {airia-0.1.7 → airia-0.1.8}/airia.egg-info/requires.txt +0 -0
  23. {airia-0.1.7 → airia-0.1.8}/airia.egg-info/top_level.txt +0 -0
  24. {airia-0.1.7 → airia-0.1.8}/setup.cfg +0 -0
  25. {airia-0.1.7 → airia-0.1.8}/tests/test_anthropic_gateway.py +0 -0
  26. {airia-0.1.7 → airia-0.1.8}/tests/test_execute_pipeline.py +0 -0
  27. {airia-0.1.7 → airia-0.1.8}/tests/test_get_active_pipelines_ids.py +0 -0
  28. {airia-0.1.7 → airia-0.1.8}/tests/test_get_pipeline_config.py +0 -0
  29. {airia-0.1.7 → airia-0.1.8}/tests/test_openai_gateway.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: airia
3
- Version: 0.1.7
3
+ Version: 0.1.8
4
4
  Summary: Python SDK for Airia API
5
5
  Author-email: Airia LLC <support@airia.com>
6
6
  License: MIT
@@ -75,7 +75,9 @@ class Tool(BaseModel):
75
75
  tool_description: str = Field(alias="toolDescription")
76
76
  purpose: str
77
77
  api_endpoint: str = Field(alias="apiEndpoint")
78
- credentials_definition: CredentialsDefinition = Field(alias="credentialsDefinition")
78
+ credentials_definition: Optional[CredentialsDefinition] = Field(
79
+ alias="credentialsDefinition"
80
+ )
79
81
  headers_definition: List[HeaderDefinition] = Field(alias="headersDefinition")
80
82
  body: str
81
83
  parameters_definition: List[ParameterDefinition] = Field(
@@ -110,14 +112,14 @@ class Model(BaseModel):
110
112
  uploaded_container_id: Optional[str] = Field(
111
113
  alias="uploadedContainerId", default=None
112
114
  )
113
- library_model_id: str = Field(alias="libraryModelId")
115
+ library_model_id: Optional[str] = Field(alias="libraryModelId")
114
116
  input_token_price: str = Field(alias="inputTokenPrice")
115
117
  output_token_price: str = Field(alias="outputTokenPrice")
116
118
  token_units: int = Field(alias="tokenUnits")
117
119
  has_tool_support: bool = Field(alias="hasToolSupport")
118
120
  allow_airia_credentials: bool = Field(alias="allowAiriaCredentials")
119
121
  allow_byok_credentials: bool = Field(alias="allowBYOKCredentials")
120
- author: str
122
+ author: Optional[str]
121
123
  price_type: str = Field(alias="priceType")
122
124
 
123
125
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: airia
3
- Version: 0.1.7
3
+ Version: 0.1.8
4
4
  Summary: Python SDK for Airia API
5
5
  Author-email: Airia LLC <support@airia.com>
6
6
  License: MIT
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "airia"
7
- version = "0.1.7"
7
+ version = "0.1.8"
8
8
  description = "Python SDK for Airia API"
9
9
  license = { text = "MIT" }
10
10
  authors = [{ name = "Airia LLC", email = "support@airia.com" }]
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
File without changes
File without changes
File without changes