pluto icon indicating copy to clipboard operation
pluto copied to clipboard

Pluto provides a unified programming interface that allows you to seamlessly tap into cloud capabilities and develop your cloud and AI applications.

Results 34 pluto issues
Sort by recently updated
recently updated
newest added

Users interact with resources through a unified interface, regardless of the specific cloud platform. However, when deploying user-written business logic to a cloud platform, adaptation is required. Payload obtained from...

sdk

Currently, the slow deduction speed is mainly due to the slow dependency extraction, which presents several issues: 1. Whenever there's a change in one part of the code, almost all...

deducer

The example "langchain-llama2-chatbot-sagemaker-python" creates a llama2 conversational chatbot using AWS and LangChain. When deploying it on AWS, the initial execution might time out. The issue we've identified is that importing...

bug

If the closure only accesses a regular API (not a client API, infrastructure API, or captured property), the deducer does not add the resource object to the closure's dependencies. Consequently,...

bug
deducer

When deploying on AWS, adding a new path route may not take effect immediately. This could be because after updating the route, the Deployment instance in AWS was not refreshed.

bug
sdk

The text generation process of large language models usually takes some time, so it's common to use streams to send the result back to users. Therefore, we need to support...

good first issue
sdk

In the current deduction system, multiple accesses to the same resource object within a closure do not result in reduced dependencies. This leads to attempts at creating several clients for...

bug
deducer

During the Proof of Concept (PoC) phase, specific Client implementation classes were created through the resource type's `buildClient` method, while specific Infra implementation classes were registered in the Registry and...

enhancement
generator
sdk

https://github.com/pluto-lang/pluto/blob/main/docs/documentation/design/capture-value.en.md

enhancement
deducer
generator
sdk

```typescript import { Router, HttpRequest, HttpResponse } from "@plutolang/pluto"; var users = [ { name: 'tobi' }, { name: 'loki' }, { name: 'jane' } ]; const router = new...