{"id":22065429,"url":"https://github.com/tryagi/replicate","last_synced_at":"2025-10-30T19:17:23.918Z","repository":{"id":185191594,"uuid":"673117220","full_name":"tryAGI/Replicate","owner":"tryAGI","description":"Generated C# SDK based on official Replicate OpenAPI specification","archived":false,"fork":false,"pushed_at":"2025-05-12T06:31:28.000Z","size":748,"stargazers_count":6,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-05-13T01:16:08.761Z","etag":null,"topics":["ai","api","csharp","dotnet","generated","langchain","langchain-dotnet","llm","llms","net6","nswag","openapi","replicate","sdk"],"latest_commit_sha":null,"homepage":"https://tryagi.github.io/Replicate/","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/tryAGI.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null},"funding":{"github":"HavenDV","patreon":"havendv","ko_fi":"havendv","custom":["https://www.paypal.me/havendv","https://www.buymeacoffee.com/havendv","https://donate.stripe.com/00gfZ19zkeKLh1eaEE","https://www.upwork.com/freelancers/~017b1ad6f6af9cc189"]}},"created_at":"2023-07-31T23:10:43.000Z","updated_at":"2025-05-12T06:31:31.000Z","dependencies_parsed_at":"2023-11-22T06:23:46.353Z","dependency_job_id":"3cdc6e19-a356-42c0-8881-05d2e842dbd0","html_url":"https://github.com/tryAGI/Replicate","commit_stats":null,"previous_names":["tryagi/replicate"],"tags_count":9,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tryAGI%2FReplicate","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tryAGI%2FReplicate/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tryAGI%2FReplicate/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tryAGI%2FReplicate/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tryAGI","download_url":"https://codeload.github.com/tryAGI/Replicate/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":253851075,"owners_count":21973674,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ai","api","csharp","dotnet","generated","langchain","langchain-dotnet","llm","llms","net6","nswag","openapi","replicate","sdk"],"created_at":"2024-11-30T19:18:09.589Z","updated_at":"2025-10-30T19:17:23.578Z","avatar_url":"https://github.com/tryAGI.png","language":"C#","funding_links":["https://github.com/sponsors/HavenDV","https://patreon.com/havendv","https://ko-fi.com/havendv","https://www.paypal.me/havendv","https://www.buymeacoffee.com/havendv","https://donate.stripe.com/00gfZ19zkeKLh1eaEE","https://www.upwork.com/freelancers/~017b1ad6f6af9cc189"],"categories":[],"sub_categories":[],"readme":"# Replicate\n\n[![Nuget package](https://img.shields.io/nuget/vpre/tryAGI.Replicate)](https://www.nuget.org/packages/tryAGI.Replicate/)\n[![dotnet](https://github.com/tryAGI/Replicate/actions/workflows/dotnet.yml/badge.svg?branch=main)](https://github.com/tryAGI/Replicate/actions/workflows/dotnet.yml)\n[![License: MIT](https://img.shields.io/github/license/tryAGI/Replicate)](https://github.com/tryAGI/Replicate/blob/main/LICENSE.txt)\n[![Discord](https://img.shields.io/discord/1115206893015662663?label=Discord\u0026logo=discord\u0026logoColor=white\u0026color=d82679)](https://discord.gg/Ca2xhfBf3v)\n\n## Features 🔥\n- Fully generated C# SDK based on [official Replicate OpenAPI specification](https://api.replicate.com/openapi.json) using [OpenApiGenerator](https://github.com/HavenDV/OpenApiGenerator)\n- Same day update to support new features\n- Updated and supported automatically if there are no breaking changes\n- All modern .NET features - nullability, trimming, NativeAOT, etc.\n- Support .Net Framework/.Net Standard 2.0\n\n## Documentation\nExamples and documentation can be found here: https://tryagi.github.io/Replicate/\n\n### Usage\n```csharp\nusing Replicate;\n\nusing var api = new ReplicateApi(apiKey);\nvar response = await api.ModelsPredictionsCreateAsync(\n    input: new PredictionRequestInput\n    {\n        AdditionalProperties = new Dictionary\u003cstring, object\u003e\n        {\n            [\"seed\"] = Random.Shared.Next(0, 1000000),\n            [\"steps\"] = 25,\n            [\"prompt\"] = \"a female, european, young adult, fit body, wavy acid orange hair, wearing open swimsuit, sea in the background.\",\n            [\"guidance\"] = 3.5,\n            [\"interval\"] = 3,\n            [\"aspect_ratio\"] = \"16:9\",\n            [\"safety_tolerance\"] = 5,\n        },\n    },\n    prefer: \"wait=60\",\n    modelOwner: \"black-forest-labs\",\n    modelName: \"flux-pro\");\n        \nvar endResponse = await response.WaitUntilSuccessfulAsync(api);\n\nConsole.WriteLine($@\"Seed: {endResponse.Input?.Seed}.\nImage available at:\\n{endResponse.Output}\");\n```\n![output](assets/output.webp)\n\n## Support\n\nPriority place for bugs: https://github.com/tryAGI/Replicate/issues  \nPriority place for ideas and general questions: https://github.com/tryAGI/Replicate/discussions  \nDiscord: https://discord.gg/Ca2xhfBf3v  \n\n## Acknowledgments\n\n![JetBrains logo](https://resources.jetbrains.com/storage/products/company/brand/logos/jetbrains.png)\n\nThis project is supported by JetBrains through the [Open Source Support Program](https://jb.gg/OpenSourceSupport).\n\n![CodeRabbit logo](https://opengraph.githubassets.com/1c51002d7d0bbe0c4fd72ff8f2e58192702f73a7037102f77e4dbb98ac00ea8f/marketplace/coderabbitai)\n\nThis project is supported by CodeRabbit through the [Open Source Support Program](https://github.com/marketplace/coderabbitai).","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftryagi%2Freplicate","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftryagi%2Freplicate","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftryagi%2Freplicate/lists"}