eaglelandsonce commited on
Commit
602879d
·
1 Parent(s): d0cb07d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -52,7 +52,7 @@ def crewai_process(research_topic):
52
  actionable insights.""",
53
  verbose=True,
54
  allow_delegation=False,
55
- llm = model,
56
  tools=[
57
  GeminiSearchTools.gemini_search
58
  ]
@@ -66,7 +66,7 @@ def crewai_process(research_topic):
66
  the tech industry, you transform complex concepts into compelling narratives.""",
67
  verbose=True,
68
  allow_delegation=True,
69
- llm = model
70
 
71
  # Add tools and other optional parameters as needed
72
  )
 
52
  actionable insights.""",
53
  verbose=True,
54
  allow_delegation=False,
55
+ llm = ChatGoogleGenerativeAI(model),
56
  tools=[
57
  GeminiSearchTools.gemini_search
58
  ]
 
66
  the tech industry, you transform complex concepts into compelling narratives.""",
67
  verbose=True,
68
  allow_delegation=True,
69
+ llm = ChatGoogleGenerativeAI(model)
70
 
71
  # Add tools and other optional parameters as needed
72
  )