Skip to content

Commit 73d87b6

Browse files
author
Matt Carey
committed
docs: nits
1 parent 9a98f9c commit 73d87b6

File tree

3 files changed

+21
-10
lines changed

3 files changed

+21
-10
lines changed

examples/available_tools.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@
88
3. Using multiple patterns for cross-vertical functionality
99
4. Filtering by specific operations
1010
5. Combining multiple operation patterns
11-
12-
TODO: experimental - get_available_tools(account_id="your_account_id")
11+
6. TODO: get_account_tools(account_id="your_account_id")
1312
1413
```bash
1514
uv run examples/available_tools.py

examples/file_uploads.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,7 @@
2424
"""
2525
# Resume content
2626
27-
This is a sample resume content that will be uploaded to StackOne.
28-
27+
This is a sample resume content that will be uploaded using the `hris_upload_employee_document` tool.
2928
"""
3029

3130
resume_content = """

examples/index.py

Lines changed: 19 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,38 @@
11
"""
2-
StackOne AI provides a unified interface for accessing various SaaS tools through AI-friendly APIs.
2+
StackOne AI SDK provides an AI-friendly interface for accessing various SaaS tools through the StackOne Unified API.
3+
4+
This SDK is available on [PyPI](https://pypi.org/project/stackone-ai/) for python projects. There is a node version in the works.
35
46
# Installation
57
68
```bash
7-
# Using pip
8-
pip install stackone-ai
9-
109
# Using uv
1110
uv add stackone-ai
11+
12+
# Using pip
13+
pip install stackone-ai
1214
```
1315
1416
# How to use these docs
1517
1618
All examples are complete and runnable.
17-
We use [uv](https://docs.astral.sh/uv/getting-started/installation/) for python dependency management.
19+
We use [uv](https://docs.astral.sh/uv/getting-started/installation/) for easy python dependency management.
20+
21+
Install uv:
1822
19-
To run this example, install the dependencies (one-time setup) and run the script:
23+
```bash
24+
curl -LsSf https://astral.sh/uv/install.sh | sh
25+
```
26+
To run this example, clone the repo, install the dependencies (one-time setup) and run the script:
2027
2128
```bash
29+
git clone https://github.com/stackoneHQ/stackone-ai-python.git
30+
cd stackone-ai-python
31+
32+
# Install dependencies
2233
uv sync --all-extras
34+
35+
# Run the example
2336
uv run examples/index.py
2437
```
2538

0 commit comments

Comments
 (0)