Testing code or libraries you'd rather not run locally (like output from an LLM model or an unfamiliar script).
Serving as a "stateful" serverless backend, handling heavy libraries such as pandas. It's designed for swift scalability, booting pods in mere hundreds of milliseconds.
How does it work? Here’s a quick look: (In IPython or a Jupyter Notebook)
# !pip install telekinesis
from telekinesis import authenticate
node = await authenticate('wss://payper.run')
pod_py = await node.get('/>/market')().get('/>/compute/python')()
pod_js = await node.get('/>/market')().get('/>/compute/js')()
Specifications & Pricing: Default: 400 MB memory, 0.4 vCPUs at $0.000240/min.
Easily adjustable settings & pre-installed pip packages.
Join and get free credits; we even bill to the millionths of a dollar!
A standout feature is the Telekinesis library, which I crafted (https://github.com/telekinesis-inc/telekinesis). It lets you securely transfer functions and objects between computers, simplifying interactions between multiple untrusted code sources without API hassles. function_py = await pod_py.execute("return lambda name='World': f'Hello, {name}!'")
// You can pass remote functions (Telekinesis objects) as arguments:
function_js = await pod_js.execute("return async (f, x) => `Remote function says: ${await f(x)}`")
print(await function_js(function_py, "HN")) # Should print "Remote function says: Hello, HN!"
This establishes rich interactions and avoids the complexities of API setups. It’s a breezy 3-click process.
We don’t request your email.
You receive ample free credits for extensive testing. Need more? I'm eager to exchange additional free credits for feedback to enhance the service.
If you have any ideas for improvements, missing features, or run into any issues, don't hesitate to share!