#Any suggestions on how to deploy a service using autogen?

4 messages · Page 1 of 1 (latest)

smoky rock
#

I'm working on a project that search news and analyze it using several agents. Any suggestions? Do you recommend me to create an API rest project using Django/Flask or do you recommend any other alternative? My idea would be to run a cron once a week that looks for relevant news and saves them in a DB.

edgy pagoda
#

I think you can checkout the newly released webapp demo from autogen, it's a good place to start.

stoic sequoia
#

I did something similar when i was first testing out openai's api.
It didn't have a frontend. It was a single shot run script for getting, reading, analyzing, and then storing.
With AutoGen, I gathered and saved the articles as either csv or json and then used the retrieve_user_proxy_agent in the autogen-agentchat-contrib folder of the project to create and use a chroma db.

smoky rock