Skip to content

Instantly share code, notes, and snippets.

@ayoisaiah
Created May 31, 2025 06:43
Show Gist options
  • Save ayoisaiah/df0d40519047903e0f892545613b86a4 to your computer and use it in GitHub Desktop.
Save ayoisaiah/df0d40519047903e0f892545613b86a4 to your computer and use it in GitHub Desktop.
E
const response = await ai.models.generateContent({
model: "gemini-2.0-flash",
contents: prompt,
config: {
responseMimeType: "application/json",
responseSchema: {
type: Type.OBJECT,
properties: {
title: {
type: Type.STRING,
},
start_time: {
type: Type.STRING,
},
end_time: {
type: Type.STRING,
},
description: {
type: Type.STRING,
},
location: {
type: Type.STRING,
},
},
},
},
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment