api-interfaces
api-interfaces copied to clipboard
Interface definitions for API interactions between components
note: I've disabled the buf workflow since deleting the completion.proto file is a breaking change, but post-merge I'll re-enable it.
Hello, I am currently trying to use the Color Matching in golang. Here is my code: ```go ... req := generation.Request{ EngineId: "stable-diffusion-xl-1024-v1-0", RequestedType: generation.ArtifactType_ARTIFACT_IMAGE, Params: &generation.Request_Transform{ Transform: &generation.TransformParameters{ Transform:...
Recently integrated stability in the Vue3+typescript project, following the tutorial https://platform.stability.ai/docs/getting-started/typescript-client It has been integrated into the project, but it keeps running with errors as follows: main.ts:42 SyntaxError: The requested...
``` stability_api = client.StabilityInference( key=os.environ["STABILITY_KEY"], upscale_engine="stable-diffusion-x4-latent-upscaler", # esrgan-v1-x2plus verbose=True, ) ``` `esrgan-v1-x2plus` works but `stable-diffusion-x4-latent-upscaler` makes error like below ` debug_error_string = "UNKNOWN:Error received from peer ipv4:172.64.153.32:443 {created_time:"2023-11-21T01:36:01.677099235+09:00", grpc_status:5, grpc_message:"The...
Bumps [golang.org/x/net](https://github.com/golang/net) from 0.9.0 to 0.17.0. Commits b225e7c http2: limit maximum handler goroutines to MaxConcurrentStreams 88194ad go.mod: update golang.org/x dependencies 2b60a61 quic: fix several bugs in flow control accounting 73d82ef...
Bumps [google.golang.org/grpc](https://github.com/grpc/grpc-go) from 1.57.0 to 1.57.1. Release notes Sourced from google.golang.org/grpc's releases. Release 1.57.1 Security server: prohibit more than MaxConcurrentStreams handlers from running at once (CVE-2023-44487) In addition to this...
Bumps [semver](https://github.com/npm/node-semver) from 6.3.0 to 6.3.1. Release notes Sourced from semver's releases. v6.3.1 6.3.1 (2023-07-10) Bug Fixes 928e56d #591 better handling of whitespace (#591) (@lukekarrys, @joaomoreno, @nicolo-ribaudo) Changelog Sourced from...
เราสามารถปรับแต่งการเชื่อมต่อของเรากับ API ได้ด้วยการแก้ไขค่าต่างๆ ใน Stability_api = client.StabilityInference() ดังนี้ - key: คีย์ API ที่ได้รับจาก Stability เช่น key=os.environ['STABILITY_KEY'] - verbose: กำหนดว่าจะแสดงข้อความแก้ไขข้อบกพร่องหรือไม่ เช่น verbose=True - engine: เลือกเครื่องยนต์ที่จะใช้สำหรับการสร้างข้อความ มีหลายตัวให้เลือกตามความต้องการ เช่น engine="stable-diffusion-xl-beta-v2-2-2"