You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
421 B
15 lines
421 B
3 weeks ago
|
from swarms.prompts.finance_agent_sys_prompt import (
|
||
|
FINANCIAL_AGENT_SYS_PROMPT,
|
||
|
)
|
||
|
from swarms.agents.openai_assistant import OpenAIAssistant
|
||
|
|
||
|
agent = OpenAIAssistant(
|
||
|
name="test", instructions=FINANCIAL_AGENT_SYS_PROMPT
|
||
|
)
|
||
|
|
||
|
print(
|
||
|
agent.run(
|
||
|
"Create a table of super high growth opportunities for AI. I have $40k to invest in ETFs, index funds, and more. Please create a table in markdown.",
|
||
|
)
|
||
|
)
|