Skip to content

Commit 585fa46

Browse files
Release v0.7.0
1 parent acf2c87 commit 585fa46

File tree

5 files changed

+24
-9
lines changed

5 files changed

+24
-9
lines changed

README.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,21 @@
55

66
The Airweave Python library provides convenient access to the Airweave APIs from Python.
77

8+
## Table of Contents
9+
10+
- [Installation](#installation)
11+
- [Reference](#reference)
12+
- [Usage](#usage)
13+
- [Framework Tracking](#framework-tracking)
14+
- [Async Client](#async-client)
15+
- [Exception Handling](#exception-handling)
16+
- [Advanced](#advanced)
17+
- [Access Raw Response Data](#access-raw-response-data)
18+
- [Retries](#retries)
19+
- [Timeouts](#timeouts)
20+
- [Custom Client](#custom-client)
21+
- [Contributing](#contributing)
22+
823
## Installation
924

1025
```sh

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "airweave-sdk"
33

44
[tool.poetry]
55
name = "airweave-sdk"
6-
version = "v0.6.98"
6+
version = "v0.7.0"
77
description = ""
88
readme = "README.md"
99
authors = []

src/airweave/core/client_wrapper.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@ def __init__(
2626

2727
def get_headers(self) -> typing.Dict[str, str]:
2828
headers: typing.Dict[str, str] = {
29-
"User-Agent": "airweave-sdk/v0.6.98",
29+
"User-Agent": "airweave-sdk/v0.7.0",
3030
"X-Fern-Language": "Python",
3131
"X-Fern-SDK-Name": "airweave-sdk",
32-
"X-Fern-SDK-Version": "v0.6.98",
32+
"X-Fern-SDK-Version": "v0.7.0",
3333
**(self.get_custom_headers() or {}),
3434
}
3535
if self._framework_name is not None:

src/airweave/types/filter.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -42,12 +42,12 @@ class Config:
4242
from .min_should import MinShould # noqa: E402, F401, I001
4343
from .nested import Nested # noqa: E402, F401, I001
4444
from .nested_condition import NestedCondition # noqa: E402, F401, I001
45-
from .should import Should # noqa: E402, F401, I001
46-
from .filter_must_not import FilterMustNot # noqa: E402, F401, I001
47-
from .min_should_conditions_item import MinShouldConditionsItem # noqa: E402, F401, I001
48-
from .filter_must_item import FilterMustItem # noqa: E402, F401, I001
4945
from .must import Must # noqa: E402, F401, I001
50-
from .filter_should_item import FilterShouldItem # noqa: E402, F401, I001
5146
from .filter_must_not_item import FilterMustNotItem # noqa: E402, F401, I001
47+
from .min_should_conditions_item import MinShouldConditionsItem # noqa: E402, F401, I001
48+
from .should import Should # noqa: E402, F401, I001
49+
from .filter_should_item import FilterShouldItem # noqa: E402, F401, I001
50+
from .filter_must_item import FilterMustItem # noqa: E402, F401, I001
51+
from .filter_must_not import FilterMustNot # noqa: E402, F401, I001
5252

5353
update_forward_refs(Filter)

src/airweave/types/organization_metrics.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ class OrganizationMetrics(UniversalBaseModel):
7676

7777
source_connection_count: typing.Optional[int] = pydantic.Field(default=None)
7878
"""
79-
Number of source connections (from Usage.source_connections)
79+
Number of source connections (computed from source_connection table)
8080
"""
8181

8282
entity_count: typing.Optional[int] = pydantic.Field(default=None)

0 commit comments

Comments
 (0)