Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
16 commits
Select commit Hold shift + click to select a range
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
Prev Previous commit
Next Next commit
fix(sdks): bump sdk versions (#2142)
  • Loading branch information
waleedlatif1 authored Dec 1, 2025
commit 7b2792122d5d1ed5d5d07fdd6b4616bccc606686
2 changes: 1 addition & 1 deletion packages/python-sdk/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "simstudio-sdk"
version = "0.1.0"
version = "0.1.1"
authors = [
{name = "Sim", email = "support@sim.ai"},
]
Expand Down
2 changes: 1 addition & 1 deletion packages/python-sdk/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setup(
name="simstudio-sdk",
version="0.1.0",
version="0.1.1",
author="Sim",
author_email="support@sim.ai",
description="Sim SDK - Execute workflows programmatically",
Expand Down
2 changes: 1 addition & 1 deletion packages/ts-sdk/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "simstudio-ts-sdk",
"version": "0.1.0",
"version": "0.1.1",
"description": "Sim SDK - Execute workflows programmatically",
"type": "module",
"main": "dist/index.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/ts-sdk/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ export class SimStudioClient {
value: any,
visited: WeakSet<object> = new WeakSet()
): Promise<any> {
if (value instanceof File) {
if (typeof File !== 'undefined' && value instanceof File) {
const arrayBuffer = await value.arrayBuffer()
const buffer = Buffer.from(arrayBuffer)
const base64 = buffer.toString('base64')
Expand Down
Loading