diff --git a/apps/python-sdk/README.md b/apps/python-sdk/README.md index d34edb8c..b63e3786 100644 --- a/apps/python-sdk/README.md +++ b/apps/python-sdk/README.md @@ -24,7 +24,7 @@ from rowboat.schema import UserMessage, SystemMessage client = Client( host="", project_id="", - project_secret="" + api_key="" ) # Create messages @@ -90,17 +90,9 @@ print(response) The `Client` class handles communication with the Rowboat API. ```python -Client(host: str, project_id: str, project_secret: str) +Client(host: str, project_id: str, api_key: str) ``` ### StatefulChat -The `StatefulChat` class maintains conversation state across multiple turns. - -```python -StatefulChat( - client: Client, - tools: Optional[Dict[str, Callable[..., str]]] = None, - system_prompt: Optional[str] = None -) -``` \ No newline at end of file +The ` \ No newline at end of file diff --git a/apps/python-sdk/pyproject.toml b/apps/python-sdk/pyproject.toml index f7b40419..55c5d849 100644 --- a/apps/python-sdk/pyproject.toml +++ b/apps/python-sdk/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "rowboat" -version = "1.0.0" +version = "1.0.1" authors = [ { name = "Your Name", email = "your.email@example.com" }, ]