Update app.py
Browse files
app.py
CHANGED
@@ -34,7 +34,7 @@ Here's a story for you!
|
|
34 |
"""
|
35 |
|
36 |
genai.configure(api_key=os.getenv("GEMINI_API_KEY"))
|
37 |
-
model = genai.GenerativeModel('gemini-
|
38 |
|
39 |
def convert_markdown_to_html(text):
|
40 |
html = markdown2.markdown(text, extras=["fenced-code-blocks", "tables"])
|
|
|
34 |
"""
|
35 |
|
36 |
genai.configure(api_key=os.getenv("GEMINI_API_KEY"))
|
37 |
+
model = genai.GenerativeModel('gemini-2.5-flash', system_instruction=system_instruction)
|
38 |
|
39 |
def convert_markdown_to_html(text):
|
40 |
html = markdown2.markdown(text, extras=["fenced-code-blocks", "tables"])
|