mirror of
https://github.com/ParisNeo/lollms.git
synced 2025-02-28 20:05:51 +00:00
enhanced
This commit is contained in:
parent
9efab84767
commit
cb874b137e
@ -339,7 +339,7 @@ current_language: english
|
||||
fun_mode: false
|
||||
think_first_mode: false
|
||||
thinking_prompt: "Use a think first process to answer the user:
|
||||
<thinking>
|
||||
<think>
|
||||
Ask yourself about the user's request and answer it with logical details.
|
||||
If the user is requesting general information that does not require internet search and you are confident about it, then prepare to answer directly.
|
||||
If the user is requesting general information that does require internet search and you have in the context enough information to answer, then use that data to answer.
|
||||
@ -351,7 +351,7 @@ thinking_prompt: "Use a think first process to answer the user:
|
||||
|
||||
Make sure you continue thinking until you find a satisfactory answer
|
||||
Assess any potential errors you may make
|
||||
</thinking>
|
||||
</think>
|
||||
|
||||
After thinking you can answer the user."
|
||||
|
||||
|
@ -339,7 +339,7 @@ current_language: english
|
||||
fun_mode: false
|
||||
think_first_mode: false
|
||||
thinking_prompt: "Use a think first process to answer the user:
|
||||
<thinking>
|
||||
<think>
|
||||
Ask yourself about the user's request and answer it with logical details.
|
||||
If the user is requesting general information that does not require internet search and you are confident about it, then prepare to answer directly.
|
||||
If the user is requesting general information that does require internet search and you have in the context enough information to answer, then use that data to answer.
|
||||
@ -351,7 +351,7 @@ thinking_prompt: "Use a think first process to answer the user:
|
||||
|
||||
Make sure you continue thinking until you find a satisfactory answer
|
||||
Assess any potential errors you may make
|
||||
</thinking>
|
||||
</think>
|
||||
|
||||
After thinking you can answer the user."
|
||||
|
||||
|
@ -212,7 +212,6 @@ def add_events(sio:socketio):
|
||||
|
||||
client.generation_thread = threading.Thread(target=do_generation)
|
||||
client.generation_thread.start()
|
||||
ASCIIColors.info("Started generation task")
|
||||
lollmsElfServer.busy=True
|
||||
|
||||
except Exception as ex:
|
||||
@ -269,7 +268,6 @@ def add_events(sio:socketio):
|
||||
ASCIIColors.green("Starting message generation by "+lollmsElfServer.personality.name)
|
||||
client.generation_thread = threading.Thread(target=lollmsElfServer.start_message_generation, args=(message, message.id, client_id))
|
||||
client.generation_thread.start()
|
||||
ASCIIColors.info("Started generation task")
|
||||
lollmsElfServer.busy=True
|
||||
#tpe = threading.Thread(target=lollmsElfServer.start_message_generation, args=(message, message_id, client_id))
|
||||
#tpe.start()
|
||||
|
@ -183,4 +183,3 @@ def add_events(sio:socketio):
|
||||
|
||||
client.generation_thread = threading.Thread(target=do_generation)
|
||||
client.generation_thread.start()
|
||||
ASCIIColors.info("Started generation task")
|
||||
|
Loading…
x
Reference in New Issue
Block a user