-
Notifications
You must be signed in to change notification settings - Fork 471
/
Copy pathrecipe_bot.py
46 lines (37 loc) · 1.02 KB
/
recipe_bot.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# /// script
# requires-python = ">=3.12"
# dependencies = [
# "marimo",
# "openai==1.53.0",
# ]
# ///
import marimo
__generated_with = "0.9.10"
app = marimo.App(width="medium")
@app.cell
def __():
import marimo as mo
chat = mo.ui.chat(
mo.ai.llm.openai(
"gpt-4o",
system_message="""You are a helpful assistant that can
parse my recipe and summarize them for me.
Give me a title in the first line.""",
),
allow_attachments=["image/png", "image/jpeg"],
prompts=["What is the recipe?"],
)
chat
return chat, mo
@app.cell
def __(chat, mo):
mo.stop(not chat.value)
last_message: str = chat.value[-1].content
title = last_message.split("\n")[0]
summary = "\n".join(last_message.split("\n")[1:])
with open(f"{title}.md", "w") as f:
f.write(summary)
mo.status.toast("Receipt summary saved!", description=title)
return f, last_message, summary, title
if __name__ == "__main__":
app.run()