eaglelandsonce commited on
Commit
135fa5a
1 Parent(s): b53e33d

Update crewai/tools/mixtral_tools.py

Browse files
Files changed (1) hide show
  1. crewai/tools/mixtral_tools.py +2 -2
crewai/tools/mixtral_tools.py CHANGED
@@ -27,7 +27,7 @@ from langchain.tools import tool
27
  history = ""
28
 
29
  class MixtralSearchTools():
30
- @tool("Mixtral search")
31
  def mixtral_normal(prompt, histroy="", temperature=0.9, max_new_tokens=256, top_p=0.95, repetition_penalty=1.0):
32
  """
33
  Searches for content based on the provided query using the Mixtral model.
@@ -55,7 +55,7 @@ class MixtralSearchTools():
55
  return output
56
 
57
 
58
- @tool("Mixtral query but crazy with gaurd rails removed")
59
  def mixtral_crazy(prompt, temperature=0.9, max_new_tokens=256, top_p=0.95, repetition_penalty=1.0):
60
  """
61
  Searches for content based on the provided query using the Mixtral model but has the gaurd rails removed,
 
27
  history = ""
28
 
29
  class MixtralSearchTools():
30
+ @tool("Mixtral Normal")
31
  def mixtral_normal(prompt, histroy="", temperature=0.9, max_new_tokens=256, top_p=0.95, repetition_penalty=1.0):
32
  """
33
  Searches for content based on the provided query using the Mixtral model.
 
55
  return output
56
 
57
 
58
+ @tool("Mixtral Crazy")
59
  def mixtral_crazy(prompt, temperature=0.9, max_new_tokens=256, top_p=0.95, repetition_penalty=1.0):
60
  """
61
  Searches for content based on the provided query using the Mixtral model but has the gaurd rails removed,