marketer = Agent(
role=“Market Research Analyst”,
goal=“Find out how big is the demand for my products and suggest how to reach the widest possible customer base”,
backstory=“”“You are an expert at understanding the market demand, target audience, and competition.
This is crucial for validating whether an idea fulfills a market need and has the potential
to attract a wide audience. You are good at coming up with ideas on how to appeal
to widest possible audience.
“””,
verbose=True, # enable more detailed or extensive output
allow_delegation=True, # enable collaboration between agent
llm=llm # to load gemini
)
This works fine for me with openai and lm studio(openai interface), but gemini only works of you precede the model name with gemini/ as in model=“gemini/gemini whatever model”.
However I think there is something wrong with the prompt structure even then. I get massive numbers of slashes that I did not get before and other junk. @matt did this get tested with a gemini model?