Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Small SDK updates #560

Merged
merged 5 commits into from
Sep 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/build/sdks/python/copilot.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ for response in pieces_client.copilot.stream_question(question):
pieces_client.close()
```

If you do not want to stream the response, you can use the `quesiton()` method instead.
If you do not want to stream the response, you can use the `question()` method instead.

#### Example

Expand Down
2 changes: 1 addition & 1 deletion docs/build/sdks/python/quickstart.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ pieces_client.close()

### Get All Assets

To get all your assets, you can use the `assets` method of the Pieces Client. Here's an example of how to get all your assets and print their names:
To get all your [assets](/build/glossary/terms/asset), you can use the `assets` method of the Pieces Client. Here's an example of how to get all your assets and print their names:

```python
from pieces_os_client.wrapper import PiecesClient
Expand Down