Spaces:
Runtime error
Runtime error
Commit
·
e9c63fc
1
Parent(s):
71b294c
Update app.py
Browse files
app.py
CHANGED
|
@@ -39,6 +39,7 @@ BrowserTools.scrape_and_summarize_website
|
|
| 39 |
]
|
| 40 |
'''
|
| 41 |
|
|
|
|
| 42 |
# Base Example with Gemini Search
|
| 43 |
|
| 44 |
def crewai_process(research_topic):
|
|
@@ -51,7 +52,7 @@ def crewai_process(research_topic):
|
|
| 51 |
actionable insights.""",
|
| 52 |
verbose=True,
|
| 53 |
allow_delegation=False,
|
| 54 |
-
llm =
|
| 55 |
tools=[
|
| 56 |
GeminiSearchTools.gemini_search
|
| 57 |
]
|
|
@@ -65,7 +66,7 @@ def crewai_process(research_topic):
|
|
| 65 |
the tech industry, you transform complex concepts into compelling narratives.""",
|
| 66 |
verbose=True,
|
| 67 |
allow_delegation=True,
|
| 68 |
-
llm =
|
| 69 |
|
| 70 |
# Add tools and other optional parameters as needed
|
| 71 |
)
|
|
|
|
| 39 |
]
|
| 40 |
'''
|
| 41 |
|
| 42 |
+
#llm = ChatGoogleGenerativeAI(model=model),
|
| 43 |
# Base Example with Gemini Search
|
| 44 |
|
| 45 |
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 |
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 |
)
|