Skip to content

NewsAgent is an enterprise-grade news aggregation agent designed to fetch, query, and summarize news from multiple sources at scale.

License

Notifications You must be signed in to change notification settings

The-Swarm-Corporation/NewsAgent

Repository files navigation

News Agent

Join our Discord Subscribe on YouTube Connect on LinkedIn Follow on X.com

NewsAgent is an enterprise-grade news aggregation agent designed to fetch, query, and summarize news from multiple sources at scale. Built for modern businesses, NewsAgent enables you to automate the process of news monitoring, delivering summarized, relevant, and timely news from across the web. Whether you need real-time updates or comprehensive analysis, NewsAgent can seamlessly integrate into your workflows, ensuring that you always stay informed.

Installation

To install NewsAgent, use the following command:

pip3 install -U news-swarm

Ensure that you have Python 3.10+ installed.

Environment Variables

OPENAI_API_KEY="if you use openai"
WORKSPACE_DIR="agent_workspace"
NEWSAPI_API_KEY="api from the newsapi"

Quick Start

import os

from dotenv import load_dotenv
from swarm_models import OpenAIChat
from swarms import Agent

from news_swarm.main import NewsAgent

load_dotenv()

# Get the OpenAI API key from the environment variable
api_key = os.getenv("OPENAI_API_KEY")

# Create an instance of the OpenAIChat class
model = OpenAIChat(
    openai_api_key=api_key, model_name="gpt-4o-mini", temperature=0.1
)

# Initialize the agent
base_agent = Agent(
    agent_name="News-Agent-V1",
    # system_prompt=FINANCIAL_AGENT_SYS_PROMPT,
    llm=model,
    max_loops=1,
    autosave=True,
    dashboard=False,
    verbose=True,
    dynamic_temperature_enabled=True,
    saved_state_path="news_agent.json",
    user_name="swarms_corp",
    retry_attempts=1,
    context_length=200000,
    return_step_meta=False,
    # output_type="json",
)

# Agent
agent = NewsAgent(
    agent_name="news-agent-v1",
    agent=base_agent,
    newsapi_api_key=os.getenv("NEWSAPI_API_KEY"),
    system_prompt=None,
    return_json=True,
    # start_date="2024-08-01",
    # end_date="2024-08-10"
)


# Run the agent
print(agent.run("multi-agent collaboration"))
print(agent.run_concurrently(["OpenAI", "Anthropic"]))

Enterprise Support

For enterprise customers, we offer:

  • 24/7 Priority Support
  • Custom Feature Development
  • Integration Assistance for your existing platforms (CRM, ERP, etc.)

For more information on enterprise solutions, contact us at kye@swarms.world.

Todo

  • Smart Query Crafting: Automatically creates optimized queries using an llm to fetch the most relevant news from multiple sources.
  • Real-Time Updates: Fetch news in real-time or set scheduled intervals for continuous monitoring.
  • Customizable Sources: Add or remove specific news sources, tailored to your business needs.
  • Bing API: Implement Bing API for search
  • Google API: Implement Google API for search
  • Free Seaarch: Implement a free, fast, reliable search mechanism that runs completely locally and privately.

Contributing

We welcome contributions! If you'd like to contribute to NewsAgent, please open an issue or submit a pull request via our GitHub repository.

License

NewsAgent is licensed under the MIT License. See the LICENSE file for more details.