Skip to content

Commit 6825686

Browse files
authored
Merge pull request #4 from RoboFinSystems/release/0.1.12
Release v0.1.12: Add Subgraph API Support and Documentation Updates
2 parents 6869e2f + 9323e67 commit 6825686

22 files changed

+2799
-21
lines changed

.github/workflows/publish.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
1-
name: Publish Python Client to PyPI
1+
name: Publish to PyPI
22

33
on:
44
workflow_dispatch:
5+
push:
6+
branches:
7+
- main
58

69
jobs:
710
publish:
@@ -40,7 +43,7 @@ jobs:
4043
run: |
4144
VERSION="${{ steps.current-version.outputs.current_version }}"
4245
PACKAGE_NAME="robosystems-client"
43-
46+
4447
# Check if version exists on PyPI
4548
if curl -s "https://pypi.org/pypi/${PACKAGE_NAME}/${VERSION}/json" | grep -q "\"version\""; then
4649
echo "❌ Version ${VERSION} already exists on PyPI"

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "robosystems-client"
3-
version = "0.1.11"
3+
version = "0.1.12"
44
description = "Python Client for RoboSystems financial graph database API"
55
readme = "README.md"
66
requires-python = ">=3.10"

robosystems_client/api/agent/query_financial_agent.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ def sync_detailed(
138138
139139
**Credit Consumption:**
140140
- AI operations consume credits based on actual token usage
141-
- Claude 4 Opus: ~15 credits per 1K input tokens, ~75 credits per 1K output tokens
141+
- Claude 4/4.1 Opus: ~15 credits per 1K input tokens, ~75 credits per 1K output tokens
142142
- Claude 4 Sonnet: ~3 credits per 1K input tokens, ~15 credits per 1K output tokens
143143
- Credits are consumed after operation completes based on actual usage
144144
@@ -225,7 +225,7 @@ def sync(
225225
226226
**Credit Consumption:**
227227
- AI operations consume credits based on actual token usage
228-
- Claude 4 Opus: ~15 credits per 1K input tokens, ~75 credits per 1K output tokens
228+
- Claude 4/4.1 Opus: ~15 credits per 1K input tokens, ~75 credits per 1K output tokens
229229
- Claude 4 Sonnet: ~3 credits per 1K input tokens, ~15 credits per 1K output tokens
230230
- Credits are consumed after operation completes based on actual usage
231231
@@ -307,7 +307,7 @@ async def asyncio_detailed(
307307
308308
**Credit Consumption:**
309309
- AI operations consume credits based on actual token usage
310-
- Claude 4 Opus: ~15 credits per 1K input tokens, ~75 credits per 1K output tokens
310+
- Claude 4/4.1 Opus: ~15 credits per 1K input tokens, ~75 credits per 1K output tokens
311311
- Claude 4 Sonnet: ~3 credits per 1K input tokens, ~15 credits per 1K output tokens
312312
- Credits are consumed after operation completes based on actual usage
313313
@@ -392,7 +392,7 @@ async def asyncio(
392392
393393
**Credit Consumption:**
394394
- AI operations consume credits based on actual token usage
395-
- Claude 4 Opus: ~15 credits per 1K input tokens, ~75 credits per 1K output tokens
395+
- Claude 4/4.1 Opus: ~15 credits per 1K input tokens, ~75 credits per 1K output tokens
396396
- Claude 4 Sonnet: ~3 credits per 1K input tokens, ~15 credits per 1K output tokens
397397
- Credits are consumed after operation completes based on actual usage
398398
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
"""Contains endpoint functions for accessing the API"""

0 commit comments

Comments
 (0)