Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

prompt.json 569 B

You have to be logged in to leave a comment. Sign In
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
  1. [
  2. {
  3. "role": "system",
  4. "content": [
  5. {
  6. "modality": "text",
  7. "value": {{ system_message | dump }}
  8. }
  9. ]
  10. },
  11. {% for message in previous_messages %}
  12. {% for role, content in message %}
  13. {
  14. "role": "{{ role }}",
  15. "content": [
  16. {
  17. "modality": "text",
  18. "value": {{ content | dump }}
  19. }
  20. ]
  21. },
  22. {% endfor %}
  23. {% endfor %}
  24. {
  25. "role": "user",
  26. "content": [
  27. {
  28. "modality": "text",
  29. "value": {{ question | dump }}
  30. }
  31. ]
  32. }
  33. ]
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...