https://github.com/tryagi/tripo
C# SDK for the Tripo API -- AI 3D model generation
https://github.com/tryagi/tripo
3d-generation ai autosdk csharp dotnet openapi sdk tripo
Last synced: about 2 months ago
JSON representation
C# SDK for the Tripo API -- AI 3D model generation
- Host: GitHub
- URL: https://github.com/tryagi/tripo
- Owner: tryAGI
- License: mit
- Created: 2024-09-22T07:08:06.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2026-04-29T03:24:46.000Z (2 months ago)
- Last Synced: 2026-04-29T05:17:35.876Z (2 months ago)
- Topics: 3d-generation, ai, autosdk, csharp, dotnet, openapi, sdk, tripo
- Language: C#
- Homepage: https://tryagi.github.io/Tripo/
- Size: 515 KB
- Stars: 2
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Tripo
[](https://www.nuget.org/packages/Tripo/)
[](https://github.com/tryAGI/Tripo/actions/workflows/dotnet.yml)
[](https://github.com/tryAGI/Tripo/blob/main/LICENSE.txt)
[](https://discord.gg/Ca2xhfBf3v)
## Features 🔥
- Fully generated C# SDK based on [official Tripo OpenAPI specification](https://platform.tripo3d.ai/docs/schema) using [AutoSDK](https://github.com/HavenDV/AutoSDK)
- Same day update to support new features
- Updated and supported automatically if there are no breaking changes
- All modern .NET features - nullability, trimming, NativeAOT, etc.
- Support .Net Framework/.Net Standard 2.0
### Usage
```csharp
using Tripo;
using var api = new TripoClient(apiKey);
SuccessTask response = await api.CreateTaskAsync(new CreateTaskRequestVariant1
{
Type = CreateTaskRequestVariant1Type.TextToModel,
Prompt = "Generate some girl face",
});
Console.WriteLine($"Code: {response.Code}");
Console.WriteLine($"TaskId: {response.Data.TaskId}");
await Task.Delay(TimeSpan.FromMinutes(1));
GetTaskResponse taskResponse = await api.GetTaskAsync(response.Data.TaskId);
Console.WriteLine($"Code: {taskResponse.Code}");
Console.WriteLine($"Status: {taskResponse.Data.Status}");
Console.WriteLine($"RenderedImage: {taskResponse.Data.Output.RenderedImage}");;
Console.WriteLine($"Model: {taskResponse.Data.Output.Model}");
Console.WriteLine($"PbrModel: {taskResponse.Data.Output.PbrModel}");
Console.WriteLine($"BaseModel: {taskResponse.Data.Output.BaseModel}");
```

## Support
Priority place for bugs: https://github.com/tryAGI/Tripo/issues
Priority place for ideas and general questions: https://github.com/tryAGI/Tripo/discussions
Discord: https://discord.gg/Ca2xhfBf3v
## Acknowledgments

This project is supported by JetBrains through the [Open Source Support Program](https://jb.gg/OpenSourceSupport).