Skip to content

Commit eeb59c9

Browse files
SDK regeneration
1 parent adf7d68 commit eeb59c9

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+289
-698
lines changed

.fern/metadata.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
2-
"cliVersion": "3.37.5",
2+
"cliVersion": "3.51.3",
33
"generatorName": "fernapi/fern-python-sdk",
4-
"generatorVersion": "4.46.14",
4+
"generatorVersion": "4.53.0",
55
"generatorConfig": {
66
"client": {
77
"class_name": "BaseClient",

poetry.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

reference.md

Lines changed: 40 additions & 40 deletions
Large diffs are not rendered by default.

src/deepgram/agent/client.py

Lines changed: 0 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -5,29 +5,16 @@
55
import typing
66

77
from ..core.client_wrapper import AsyncClientWrapper, SyncClientWrapper
8-
from .raw_client import AsyncRawAgentClient, RawAgentClient
98

109
if typing.TYPE_CHECKING:
1110
from .v1.client import AsyncV1Client, V1Client
1211

1312

1413
class AgentClient:
1514
def __init__(self, *, client_wrapper: SyncClientWrapper):
16-
self._raw_client = RawAgentClient(client_wrapper=client_wrapper)
1715
self._client_wrapper = client_wrapper
1816
self._v1: typing.Optional[V1Client] = None
1917

20-
@property
21-
def with_raw_response(self) -> RawAgentClient:
22-
"""
23-
Retrieves a raw implementation of this client that returns raw responses.
24-
25-
Returns
26-
-------
27-
RawAgentClient
28-
"""
29-
return self._raw_client
30-
3118
@property
3219
def v1(self):
3320
if self._v1 is None:
@@ -39,21 +26,9 @@ def v1(self):
3926

4027
class AsyncAgentClient:
4128
def __init__(self, *, client_wrapper: AsyncClientWrapper):
42-
self._raw_client = AsyncRawAgentClient(client_wrapper=client_wrapper)
4329
self._client_wrapper = client_wrapper
4430
self._v1: typing.Optional[AsyncV1Client] = None
4531

46-
@property
47-
def with_raw_response(self) -> AsyncRawAgentClient:
48-
"""
49-
Retrieves a raw implementation of this client that returns raw responses.
50-
51-
Returns
52-
-------
53-
AsyncRawAgentClient
54-
"""
55-
return self._raw_client
56-
5732
@property
5833
def v1(self):
5934
if self._v1 is None:

src/deepgram/agent/raw_client.py

Lines changed: 0 additions & 13 deletions
This file was deleted.

src/deepgram/agent/v1/client.py

Lines changed: 0 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -5,29 +5,16 @@
55
import typing
66

77
from ...core.client_wrapper import AsyncClientWrapper, SyncClientWrapper
8-
from .raw_client import AsyncRawV1Client, RawV1Client
98

109
if typing.TYPE_CHECKING:
1110
from .settings.client import AsyncSettingsClient, SettingsClient
1211

1312

1413
class V1Client:
1514
def __init__(self, *, client_wrapper: SyncClientWrapper):
16-
self._raw_client = RawV1Client(client_wrapper=client_wrapper)
1715
self._client_wrapper = client_wrapper
1816
self._settings: typing.Optional[SettingsClient] = None
1917

20-
@property
21-
def with_raw_response(self) -> RawV1Client:
22-
"""
23-
Retrieves a raw implementation of this client that returns raw responses.
24-
25-
Returns
26-
-------
27-
RawV1Client
28-
"""
29-
return self._raw_client
30-
3118
@property
3219
def settings(self):
3320
if self._settings is None:
@@ -39,21 +26,9 @@ def settings(self):
3926

4027
class AsyncV1Client:
4128
def __init__(self, *, client_wrapper: AsyncClientWrapper):
42-
self._raw_client = AsyncRawV1Client(client_wrapper=client_wrapper)
4329
self._client_wrapper = client_wrapper
4430
self._settings: typing.Optional[AsyncSettingsClient] = None
4531

46-
@property
47-
def with_raw_response(self) -> AsyncRawV1Client:
48-
"""
49-
Retrieves a raw implementation of this client that returns raw responses.
50-
51-
Returns
52-
-------
53-
AsyncRawV1Client
54-
"""
55-
return self._raw_client
56-
5732
@property
5833
def settings(self):
5934
if self._settings is None:

src/deepgram/agent/v1/raw_client.py

Lines changed: 0 additions & 13 deletions
This file was deleted.

src/deepgram/agent/v1/settings/client.py

Lines changed: 0 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -5,29 +5,16 @@
55
import typing
66

77
from ....core.client_wrapper import AsyncClientWrapper, SyncClientWrapper
8-
from .raw_client import AsyncRawSettingsClient, RawSettingsClient
98

109
if typing.TYPE_CHECKING:
1110
from .think.client import AsyncThinkClient, ThinkClient
1211

1312

1413
class SettingsClient:
1514
def __init__(self, *, client_wrapper: SyncClientWrapper):
16-
self._raw_client = RawSettingsClient(client_wrapper=client_wrapper)
1715
self._client_wrapper = client_wrapper
1816
self._think: typing.Optional[ThinkClient] = None
1917

20-
@property
21-
def with_raw_response(self) -> RawSettingsClient:
22-
"""
23-
Retrieves a raw implementation of this client that returns raw responses.
24-
25-
Returns
26-
-------
27-
RawSettingsClient
28-
"""
29-
return self._raw_client
30-
3118
@property
3219
def think(self):
3320
if self._think is None:
@@ -39,21 +26,9 @@ def think(self):
3926

4027
class AsyncSettingsClient:
4128
def __init__(self, *, client_wrapper: AsyncClientWrapper):
42-
self._raw_client = AsyncRawSettingsClient(client_wrapper=client_wrapper)
4329
self._client_wrapper = client_wrapper
4430
self._think: typing.Optional[AsyncThinkClient] = None
4531

46-
@property
47-
def with_raw_response(self) -> AsyncRawSettingsClient:
48-
"""
49-
Retrieves a raw implementation of this client that returns raw responses.
50-
51-
Returns
52-
-------
53-
AsyncRawSettingsClient
54-
"""
55-
return self._raw_client
56-
5732
@property
5833
def think(self):
5934
if self._think is None:

src/deepgram/agent/v1/settings/raw_client.py

Lines changed: 0 additions & 13 deletions
This file was deleted.

src/deepgram/agent/v1/settings/think/client.py

Lines changed: 0 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -5,29 +5,16 @@
55
import typing
66

77
from .....core.client_wrapper import AsyncClientWrapper, SyncClientWrapper
8-
from .raw_client import AsyncRawThinkClient, RawThinkClient
98

109
if typing.TYPE_CHECKING:
1110
from .models.client import AsyncModelsClient, ModelsClient
1211

1312

1413
class ThinkClient:
1514
def __init__(self, *, client_wrapper: SyncClientWrapper):
16-
self._raw_client = RawThinkClient(client_wrapper=client_wrapper)
1715
self._client_wrapper = client_wrapper
1816
self._models: typing.Optional[ModelsClient] = None
1917

20-
@property
21-
def with_raw_response(self) -> RawThinkClient:
22-
"""
23-
Retrieves a raw implementation of this client that returns raw responses.
24-
25-
Returns
26-
-------
27-
RawThinkClient
28-
"""
29-
return self._raw_client
30-
3118
@property
3219
def models(self):
3320
if self._models is None:
@@ -39,21 +26,9 @@ def models(self):
3926

4027
class AsyncThinkClient:
4128
def __init__(self, *, client_wrapper: AsyncClientWrapper):
42-
self._raw_client = AsyncRawThinkClient(client_wrapper=client_wrapper)
4329
self._client_wrapper = client_wrapper
4430
self._models: typing.Optional[AsyncModelsClient] = None
4531

46-
@property
47-
def with_raw_response(self) -> AsyncRawThinkClient:
48-
"""
49-
Retrieves a raw implementation of this client that returns raw responses.
50-
51-
Returns
52-
-------
53-
AsyncRawThinkClient
54-
"""
55-
return self._raw_client
56-
5732
@property
5833
def models(self):
5934
if self._models is None:

0 commit comments

Comments
 (0)