Chat
Composants de chat (Oliver) : bpm.chat.message, bpm.chat.input, bpm.write_stream.
Référence API
| Fonction | BPM |
|---|---|
| chat_message() | bpm.chat.message() |
| chat_input() | bpm.chat.input() |
| write_stream() | bpm.write_stream() |
Exemples
import bpm
with bpm.chat.message("user"):
bpm.write("Bonjour !")
with bpm.chat.message("assistant"):
bpm.write("Réponse de l'assistant.")
user_input = bpm.chat.input("Votre message")
if user_input:
with bpm.chat.message("assistant"):
bpm.write_stream(generate_response(user_input))
Catalogue des composants — composants conversationnels.