SamVidur commited on
Commit
a59db77
·
unverified ·
1 Parent(s): d6fca32

Update main.py

Browse files
Files changed (1) hide show
  1. main.py +3 -0
main.py CHANGED
@@ -39,6 +39,7 @@ async def generate_report(request: ReportRequest):
39
  # print(item["content"]["original"])
40
  original = item["content"].get('original')
41
 
 
42
 
43
  prompt = f"""
44
  I am giving you the complete mind dump as written by the user :{original}
@@ -48,6 +49,8 @@ async def generate_report(request: ReportRequest):
48
  Now starting from start to finish and linking multiple parts in proper series you have to tell user what he has been expriencing
49
  You need to untie those knots identifying the problems adn what could possibly be causing them
50
  You should not bring rememdies or solution externally, whatever you say to the user has to be from what he has written in the mind dump section
 
 
51
 
52
  """
53
 
 
39
  # print(item["content"]["original"])
40
  original = item["content"].get('original')
41
 
42
+ print(original)
43
 
44
  prompt = f"""
45
  I am giving you the complete mind dump as written by the user :{original}
 
49
  Now starting from start to finish and linking multiple parts in proper series you have to tell user what he has been expriencing
50
  You need to untie those knots identifying the problems adn what could possibly be causing them
51
  You should not bring rememdies or solution externally, whatever you say to the user has to be from what he has written in the mind dump section
52
+ Remember, you're not being asked as a chatbot, you'll have to run just one time and hence whatever output you give should be complete in it's own sense
53
+ You shouldn't ask questions or further clarifications.
54
 
55
  """
56