Skip to content

Commit ff2d800

Browse files
Merge branch 'main' into qb/save-thread-meta
2 parents 8885a10 + 7133dc0 commit ff2d800

File tree

6 files changed

+8
-6
lines changed

6 files changed

+8
-6
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
name: Release PyPI
1616
environment:
1717
name: pypi
18-
url: https://pypi.org/p/openai-agents
18+
url: https://pypi.org/p/openai-chatkit
1919
runs-on: ubuntu-latest
2020
steps:
2121
- name: Checkout repository
@@ -31,6 +31,6 @@ jobs:
3131

3232
- name: Build package
3333
run: make build
34-
34+
3535
- name: Publish to PyPI
3636
uses: pypa/gh-action-pypi-publish@release/v1

chatkit/agents.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
from inspect import cleandoc
66
from typing import (
77
Annotated,
8+
Any,
89
AsyncGenerator,
910
Awaitable,
1011
Generic,
@@ -84,7 +85,7 @@ class ClientToolCall(BaseModel):
8485
"""
8586

8687
name: str
87-
arguments: dict[str, str]
88+
arguments: dict[str, Any]
8889

8990

9091
class _QueueCompleteSentinel: ...

chatkit/server.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -306,7 +306,7 @@ def action(
306306
) -> AsyncIterator[ThreadStreamEvent]:
307307
raise NotImplementedError(
308308
"The action() method must be overridden to react to actions. "
309-
"See https://github.com/OpenAI-Early-Access/chatkit/blob/main/docs/widgets.md#widget-actions"
309+
"See https://github.com/openai/chatkit-python/blob/main/docs/widgets.md#widget-actions"
310310
)
311311

312312
async def process(

chatkit/types.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -813,6 +813,7 @@ class EntitySource(SourceBase):
813813
id: str
814814
icon: str | None = None
815815
preview: Literal["lazy"] | None = None
816+
data: dict[str, Any] = Field(default_factory=dict)
816817

817818

818819
Source = Annotated[

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "openai-chatkit"
3-
version = "0.0.2"
3+
version = "1.0.2"
44
description = "A ChatKit backend SDK."
55
readme = "README.md"
66
requires-python = ">=3.10"

uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)