You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
using Mscc.GenerativeAI.Web;
var builder = WebApplication.CreateBuilder(args);
builder.Services.AddGenerativeAI(builder.Configuration.GetSection("Gemini"));
var app = builder.Build();
app.MapGet("/", async (IGenerativeModelService service) =>
{
var result = await service.GenerateContent("Write about the history of Mauritius.");
return result.Text;
});
app.Run();
IGenerativeModelService doesnt contain any of the definitions of GenerativeModel
The text was updated successfully, but these errors were encountered:
IGenerativeModelService doesnt contain any of the definitions of GenerativeModel
The text was updated successfully, but these errors were encountered: