Spaces:
Running
on
Zero
Running
on
Zero
prompt
Browse files
mysite/interpreter/prompt.py
CHANGED
@@ -71,9 +71,9 @@ def prompt_genalate(word,sys_prompt="あなたはプロンプト作成の優秀
|
|
71 |
|
72 |
|
73 |
# プロンプトを文字列としてフォーマット
|
74 |
-
formatted_prompt = prompt.format(chat_history=memory.load_memory_variables(), human_input=user_question)
|
75 |
|
76 |
-
print("Formatted Prompt:\n", formatted_prompt)
|
77 |
|
78 |
|
79 |
conversation = LLMChain(
|
@@ -87,4 +87,4 @@ def prompt_genalate(word,sys_prompt="あなたはプロンプト作成の優秀
|
|
87 |
print("User: ", user_question)
|
88 |
print("Assistant:", response)
|
89 |
|
90 |
-
return user_question+"[役割]"+response
|
|
|
71 |
|
72 |
|
73 |
# プロンプトを文字列としてフォーマット
|
74 |
+
#formatted_prompt = prompt.format(chat_history=memory.load_memory_variables(), human_input=user_question)
|
75 |
|
76 |
+
#print("Formatted Prompt:\n", formatted_prompt)
|
77 |
|
78 |
|
79 |
conversation = LLMChain(
|
|
|
87 |
print("User: ", user_question)
|
88 |
print("Assistant:", response)
|
89 |
|
90 |
+
return user_question+"\r\n[役割]\r\n"+response
|