Skip to content

MetaVision

Modern .NET SDK for MetaVision text-to-3D and image-to-3D generation, generated with AutoSDK.

Nuget package dotnet License: MIT Discord

Generated from the source spec

Built from a locally maintained OpenAPI definition based on MetaVision's public API documentation and A2A agent card so the SDK stays close to the upstream API surface.

Auto-updated

Designed for fast regeneration and low-friction updates when the upstream API changes without breaking compatibility.

Modern .NET

Targets current .NET practices including nullability, trimming, NativeAOT awareness, and source-generated serialization.

Docs from examples

Examples stay in sync between the README, MkDocs site, and integration tests through the AutoSDK docs pipeline.

Usage

1
2
3
using MetaVision;

using var client = new MetaVisionClient(apiKey);

Generate

Create a MetaVision client, validate the configured API key, and prepare a text-to-3D generation request.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
using var client = new MetaVisionClient(apiKey);

// Validate the API key before starting a generation task. This endpoint
// does not spend generation credits.
var key = await client.Keys.ValidateApiKeyAsync(apiKey);

// Text-to-3D generation is asynchronous and returns a task id. The
// request below shows the typed payload used by
// `CreateTextTo3DGenerationAsync` without spending credits in tests.
var request = new TextTo3DGenerationRequest("a futuristic spaceship");

Support

Bugs

Open an issue in tryAGI/MetaVision.

Ideas and questions

Use GitHub Discussions for design questions and usage help.

Community

Join the tryAGI Discord for broader discussion across SDKs.

Acknowledgments

JetBrains logo

This project is supported by JetBrains through the Open Source Support Program.