File tree Expand file tree Collapse file tree 6 files changed +8
-6
lines changed Expand file tree Collapse file tree 6 files changed +8
-6
lines changed Original file line number Diff line number Diff line change 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
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
Original file line number Diff line number Diff line change 55from inspect import cleandoc
66from 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
9091class _QueueCompleteSentinel : ...
Original file line number Diff line number Diff 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 (
Original file line number Diff line number Diff 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
818819Source = Annotated [
Original file line number Diff line number Diff line change 11[project ]
22name = " openai-chatkit"
3- version = " 0 .0.2"
3+ version = " 1 .0.2"
44description = " A ChatKit backend SDK."
55readme = " README.md"
66requires-python = " >=3.10"
You can’t perform that action at this time.
0 commit comments