File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -630,7 +630,7 @@ def user_register(
630630
631631 # Create a default cube for the user using MOSCore's methods
632632 default_cube_name = f"{ user_name } _{ user_id } _default_cube"
633- mem_cube_name_or_path = f" { CUBE_PATH } / { default_cube_name } "
633+ mem_cube_name_or_path = os . path . join ( CUBE_PATH , default_cube_name )
634634 default_cube_id = self .create_cube_for_user (
635635 cube_name = default_cube_name , owner_id = user_id , cube_path = mem_cube_name_or_path
636636 )
Original file line number Diff line number Diff line change 203203FURTHER_SUGGESTION_PROMPT = """
204204You are a helpful assistant.
205205You are given a dialogue between a user and a assistant.
206- You need to suggest a further question based on the dialogue.
206+ You need to suggest a further user query based on the dialogue.
207207Requirements:
2082081. The further question should be related to the dialogue.
2092092. The further question should be concise and accurate.
2102103. You must return ONLY a valid JSON object. Do not include any other text, explanations, or formatting.
211+ 4. The further question should be generated by the user viewpoint and think of yourself as the user
211212the lastest dialogue is:
212213{dialogue}
213214output should be a json format, the key is "query", the value is a list of suggestion query.
You can’t perform that action at this time.
0 commit comments