Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
Niansuh/Test24
mxrkai
/
test24
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
dae79c0
test24
/
api
/
helper.py
Niansuh
Create helper.py
92ffea2
verified
6 months ago
raw
Copy download link
history
blame
Safe
218 Bytes
def
format_prompt
(
messages
):
# Combine the messages into a single prompt string
prompt =
''
for
message
in
messages:
prompt +=
f"
{message[
'role'
]}
:
{message[
'content'
]}
\n"
return
prompt.strip()