CrewAI + Command-R7B Интеллектуальная генерация новостей за 100 строк кода

на основании CrewAI Совместная работа нескольких интеллектуальных тел и Cohere Command-R7B - это большая модель, которая автоматизирует весь процесс от исследования до написания текста, как круглосуточный отдел новостей.

CrewAI + Command-R7B 百行代码实现智能生成新闻

 

Основные функции:

  1. Исследование и анализ: первый помощник ИИ отвечает за поиск и систематизацию всей информации, связанной с темой, включая новости, данные и мнения экспертов.
  2. Создание контента: второй помощник с искусственным интеллектом преобразует материалы исследования в полностью структурированные статьи, обеспечивая профессионализм и читабельность.
  3. Генерация в один клик: пользователь просто вводит тему, а система делает всю работу автоматически.

Технические особенности:

  • Принятие crewAI, основы для совместной работы несколькихAI
  • Обеспечьте качество вывода с помощью макромоделей cohere, Command-R7B
  • Создайте чистый и простой в использовании веб-интерфейс на основе streamlit.

Используйте процесс:

  1. Введите тему, о которой вы хотите узнать, в боковой панели
  2. Возможность настройки параметров генерации (например, степень креативности)
  3. Нажмите кнопку Генерировать
  4. Ожидание, пока система завершит исследование и написание текста
  5. Созданные статьи можно просматривать или загружать напрямую

 

Диаграмма архитектуры, представленная ниже, иллюстрирует некоторые из ключевых компонентов (интеллекты/задачи/инструменты) и то, как они взаимодействуют друг с другом!

Далее подробно описывается каждый компонент и его код:

CrewAI + Command-R7B 百行代码实现智能生成新闻

 

Настройка Большой языковой модели (LLM) и инструментов веб-поиска

Также создайте файл .env для хранения соответствующих API-ключей:

CrewAI + Command-R7B 百行代码实现智能生成新闻

 

Старший аналитик по исследованиям в области разведки

Система Web Search Intelligence принимает запросы пользователей, а затем использует инструмент Serper Web Search для получения и консолидации результатов из Интернета.

Посмотрите на это!

CrewAI + Command-R7B 百行代码实现智能生成新闻

 

Исследователь-аналитик Орган разведки Задачи

Это исследовательское задание, которое мы поручили старшему аналитику Intelligence Body, содержит описание задачи и ожидаемый результат.

CrewAI + Command-R7B 百行代码实现智能生成新闻

 

Интеллектуальные способности автора контента

Роль специалиста по написанию контента заключается в том, чтобы использовать собранные результаты и превратить их в отшлифованную, пригодную для публикации новостную статью.

CrewAI + Command-R7B 百行代码实现智能生成新闻

 

Написание контента Задачи интеллектуального тела

Так мы описываем задание на написание, включая все детали и ожидаемый результат:

CrewAI + Command-R7B 百行代码实现智能生成新闻

 

Экипаж, готово! ✅

Запускайте! 🚀

CrewAI + Command-R7B 百行代码实现智能生成新闻

 

Учебник по развертыванию

Генератор новостей искусственного интеллекта

В рамках проекта создается генератор новостей с искусственным интеллектом, использующий модель CrewAI и Cohere's Command-R:7B!

Установка и настройка

Получение ключа API::

Установка зависимостей::
Убедитесь, что у вас установлен Python 3.11 или более поздняя версия.

pip install crewai crewai-tools

 

.env.example

SERPER_API_KEY=your_serper_api_key
COHERE_API_KEY=your_cohere_apikey

 

app.py

import os
import streamlit as st
from crewai import Agent, Task, Crew, LLM
from crewai_tools import SerperDevTool
from dotenv import load_dotenv

# Load environment variables
load_dotenv()

# Streamlit page config
st.set_page_config(page_title="AI News Generator", page_icon="📰", layout="wide")

# Title and description
st.title("🤖 AI News Generator, powered by CrewAI and Cohere's Command R7B")
st.markdown("Generate comprehensive blog posts about any topic using AI agents.")

# Sidebar
with st.sidebar:
st.header("Content Settings")

# Make the text input take up more space
topic = st.text_area(
"Enter your topic",
height=100,
placeholder="Enter the topic you want to generate content about..."
)

# Add more sidebar controls if needed
st.markdown("### Advanced Settings")
temperature = st.slider("Temperature", 0.0, 1.0, 0.7)

# Add some spacing
st.markdown("---")

# Make the generate button more prominent in the sidebar
generate_button = st.button("Generate Content", type="primary", use_container_width=True)

# Add some helpful information
with st.expander("ℹ️ How to use"):
st.markdown("""
1. Enter your desired topic in the text area above
2. Adjust the temperature if needed (higher = more creative)
3. Click 'Generate Content' to start
4. Wait for the AI to generate your article
5. Download the result as a markdown file
""")

def generate_content(topic):
llm = LLM(
model="command-r",
temperature=0.7
)

search_tool = SerperDevTool(n_results=10)

# First Agent: Senior Research Analyst
senior_research_analyst = Agent(
role="Senior Research Analyst",
goal=f"Research, analyze, and synthesize comprehensive information on {topic} from reliable web sources",
backstory="You're an expert research analyst with advanced web research skills. "
"You excel at finding, analyzing, and synthesizing information from "
"across the internet using search tools. You're skilled at "
"distinguishing reliable sources from unreliable ones, "
"fact-checking, cross-referencing information, and "
"identifying key patterns and insights. You provide "
"well-organized research briefs with proper citations "
"and source verification. Your analysis includes both "
"raw data and interpreted insights, making complex "
"information accessible and actionable.",
allow_delegation=False,
verbose=True,
tools=[search_tool],
llm=llm
)

# Second Agent: Content Writer
content_writer = Agent(
role="Content Writer",
goal="Transform research findings into engaging blog posts while maintaining accuracy",
backstory="You're a skilled content writer specialized in creating "
"engaging, accessible content from technical research. "
"You work closely with the Senior Research Analyst and excel at maintaining the perfect "
"balance between informative and entertaining writing, "
"while ensuring all facts and citations from the research "
"are properly incorporated. You have a talent for making "
"complex topics approachable without oversimplifying them.",
allow_delegation=False,
verbose=True,
llm=llm
)

# Research Task
research_task = Task(
description=("""
1. Conduct comprehensive research on {topic} including:
- Recent developments and news
- Key industry trends and innovations
- Expert opinions and analyses
- Statistical data and market insights
2. Evaluate source credibility and fact-check all information
3. Organize findings into a structured research brief
4. Include all relevant citations and sources
"""),
expected_output="""A detailed research report containing:
- Executive summary of key findings
- Comprehensive analysis of current trends and developments
- List of verified facts and statistics
- All citations and links to original sources
- Clear categorization of main themes and patterns
Please format with clear sections and bullet points for easy reference.""",
agent=senior_research_analyst
)

# Writing Task
writing_task = Task(
description=("""
Using the research brief provided, create an engaging blog post that:
1. Transforms technical information into accessible content
2. Maintains all factual accuracy and citations from the research
3. Includes:
- Attention-grabbing introduction
- Well-structured body sections with clear headings
- Compelling conclusion
4. Preserves all source citations in [Source: URL] format
5. Includes a References section at the end
"""),
expected_output="""A polished blog post in markdown format that:
- Engages readers while maintaining accuracy
- Contains properly structured sections
- Includes Inline citations hyperlinked to the original source url
- Presents information in an accessible yet informative way
- Follows proper markdown formatting, use H1 for the title and H3 for the sub-sections""",
agent=content_writer
)

# Create Crew
crew = Crew(
agents=[senior_research_analyst, content_writer],
tasks=[research_task, writing_task],
verbose=True
)

return crew.kickoff(inputs={"topic": topic})

# Main content area
if generate_button:
with st.spinner('Generating content... This may take a moment.'):
try:
result = generate_content(topic)
st.markdown("### Generated Content")
st.markdown(result)

# Add download button
st.download_button(
label="Download Content",
data=result.raw,
file_name=f"{topic.lower().replace(' ', '_')}_article.md",
mime="text/markdown"
)
except Exception as e:
st.error(f"An error occurred: {str(e)}")

# Footer
st.markdown("---")
st.markdown("Built with CrewAI, Streamlit and powered by Cohere's Command R7B")
© заявление об авторских правах

Похожие статьи

Нет комментариев

Вы должны войти в систему, чтобы участвовать в комментариях!
Войти сейчас
нет
Нет комментариев...