Add orx-runway (somewhat WIP and undocumented)

This commit is contained in:
Edwin Jakobs
2019-12-02 18:52:43 +01:00
parent 678ac4e72b
commit 6bfc4e274d
5 changed files with 78 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
package org.openrndr.extra.runway
import com.google.gson.annotations.SerializedName
class CaptionRequest(val caption: String)
class CaptionResult(val result: String)
class BigBiGANQuery(@SerializedName("input_image") val inputImage: String)
class BigBiGANResult(@SerializedName("output_image") val outputImage: String)