-
Notifications
You must be signed in to change notification settings - Fork 471
/
Copy pathcustom.py
68 lines (52 loc) · 1.44 KB
/
custom.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
# /// script
# requires-python = ">=3.11"
# dependencies = [
# "marimo",
# ]
# ///
import marimo
__generated_with = "0.8.22"
app = marimo.App(width="medium")
@app.cell
def __():
import marimo as mo
return (mo,)
@app.cell(hide_code=True)
def __(mo):
mo.md(
"""
# Custom chatbot
This example shows how to make a custom chatbot: just supply a function that takes two arguments,
`messages` and `config`, and returns the chatbot's response. This response can be any object; it
doesn't have to be a string!
"""
)
return
@app.cell
def __(mo):
def simple_echo_model(messages, config):
"""This chatbot echoes what the user says."""
# messages is a list of chatbot messages
message = messages[-1]
# Each message has two fields:
# message.role, which may be "user", "assistant", or "system"
# message.content: the content of the message
return f"You said: {messages[-1].content}!"
chatbot = mo.ui.chat(
simple_echo_model,
prompts=["Hello", "How are you?"],
show_configuration_controls=False
)
chatbot
return chatbot, simple_echo_model
@app.cell
def __(mo):
mo.md("""Access the chatbot's historical messages with `chatbot.value`.""")
return
@app.cell
def __(chatbot):
# chatbot.value is the list of chat messages
chatbot.value
return
if __name__ == "__main__":
app.run()