Skip to content

Commit 389247e

Browse files
SDK regeneration
1 parent ec3815d commit 389247e

6 files changed

Lines changed: 10 additions & 10 deletions

File tree

.fern/metadata.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
"package_name": "agentline_ai",
88
"timeout_in_seconds": 60
99
},
10-
"originGitCommit": "0ac0c54a8fdf9140e93e8b957c7f1dc409ea073a",
10+
"originGitCommit": "f34cf7922214d77b3819757cb38300f3b91df23f",
1111
"originGitCommitIsDirty": false,
1212
"invokedBy": "ci",
1313
"ciProvider": "github",
14-
"sdkVersion": "0.0.5"
14+
"sdkVersion": "0.0.6"
1515
}

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ dynamic = ["version"]
44

55
[tool.poetry]
66
name = "agentline-ai"
7-
version = "0.0.5"
7+
version = "0.0.6"
88
description = ""
99
readme = "README.md"
1010
authors = []

reference.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1495,7 +1495,7 @@ AUTHENTICATION (one of):
14951495
1. **Push token** (preferred — no API key): the ``push_token`` from the
14961496
``call.utterance`` payload, via ``X-Push-Token`` header, ``?token=``
14971497
query param, or ``push_token`` body field.
1498-
2. **Bearer API key**: ``Authorization: Bearer sk_live_...`` for the
1498+
2. **Bearer API key**: ``Authorization: Bearer al_live_...`` for the
14991499
account that owns the call.
15001500

15011501
Body — any of these keys works (``context`` is canonical):

src/agentline_ai/calls/client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ def push_context(
216216
1. **Push token** (preferred — no API key): the ``push_token`` from the
217217
``call.utterance`` payload, via ``X-Push-Token`` header, ``?token=``
218218
query param, or ``push_token`` body field.
219-
2. **Bearer API key**: ``Authorization: Bearer sk_live_...`` for the
219+
2. **Bearer API key**: ``Authorization: Bearer al_live_...`` for the
220220
account that owns the call.
221221
222222
Body — any of these keys works (``context`` is canonical):
@@ -570,7 +570,7 @@ async def push_context(
570570
1. **Push token** (preferred — no API key): the ``push_token`` from the
571571
``call.utterance`` payload, via ``X-Push-Token`` header, ``?token=``
572572
query param, or ``push_token`` body field.
573-
2. **Bearer API key**: ``Authorization: Bearer sk_live_...`` for the
573+
2. **Bearer API key**: ``Authorization: Bearer al_live_...`` for the
574574
account that owns the call.
575575
576576
Body — any of these keys works (``context`` is canonical):

src/agentline_ai/calls/raw_client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -291,7 +291,7 @@ def push_context(
291291
1. **Push token** (preferred — no API key): the ``push_token`` from the
292292
``call.utterance`` payload, via ``X-Push-Token`` header, ``?token=``
293293
query param, or ``push_token`` body field.
294-
2. **Bearer API key**: ``Authorization: Bearer sk_live_...`` for the
294+
2. **Bearer API key**: ``Authorization: Bearer al_live_...`` for the
295295
account that owns the call.
296296
297297
Body — any of these keys works (``context`` is canonical):
@@ -769,7 +769,7 @@ async def push_context(
769769
1. **Push token** (preferred — no API key): the ``push_token`` from the
770770
``call.utterance`` payload, via ``X-Push-Token`` header, ``?token=``
771771
query param, or ``push_token`` body field.
772-
2. **Bearer API key**: ``Authorization: Bearer sk_live_...`` for the
772+
2. **Bearer API key**: ``Authorization: Bearer al_live_...`` for the
773773
account that owns the call.
774774
775775
Body — any of these keys works (``context`` is canonical):

src/agentline_ai/core/client_wrapper.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,12 @@ def get_headers(self) -> typing.Dict[str, str]:
3333
import platform
3434

3535
headers: typing.Dict[str, str] = {
36-
"User-Agent": "agentline-ai/0.0.5",
36+
"User-Agent": "agentline-ai/0.0.6",
3737
"X-Fern-Language": "Python",
3838
"X-Fern-Runtime": f"python/{platform.python_version()}",
3939
"X-Fern-Platform": f"{platform.system().lower()}/{platform.release()}",
4040
"X-Fern-SDK-Name": "agentline-ai",
41-
"X-Fern-SDK-Version": "0.0.5",
41+
"X-Fern-SDK-Version": "0.0.6",
4242
**(self.get_custom_headers() or {}),
4343
}
4444
headers["Authorization"] = f"Bearer {self._get_api_key()}"

0 commit comments

Comments
 (0)