File tree Expand file tree Collapse file tree 3 files changed +21
-10
lines changed
Expand file tree Collapse file tree 3 files changed +21
-10
lines changed Original file line number Diff line number Diff line change 883. Using multiple patterns for cross-vertical functionality
994. Filtering by specific operations
10105. 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
1514uv run examples/available_tools.py
Original file line number Diff line number Diff line change 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
3130resume_content = """
Original file line number Diff line number Diff line change 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
1110uv add stackone-ai
11+
12+ # Using pip
13+ pip install stackone-ai
1214```
1315
1416# How to use these docs
1517
1618All 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
2233uv sync --all-extras
34+
35+ # Run the example
2336uv run examples/index.py
2437```
2538
You can’t perform that action at this time.
0 commit comments