원본, myColab

from dotenv import load_dotenv
load_dotenv() 

Agent Teams 정의

Add Layers for.

from langchain_core.messages import AIMessage, BaseMessage, HumanMessage
from langchain_openai.chat_models import ChatOpenAI

llm = ChatOpenAI(model="gpt-4-1106-preview")

supervisor_node = create_team_supervisor(
    llm,
    "당신은 다음 팀들 사이의 대화를 관리하는 감독자입니다 : {team_members}. 주어진 사용자 요청에 대해, 다음으로 행동할 작업자를 지정하십시오. 각 작업자는 작업을 수행하고 그들의 결과와 상태를 보고합니다. 완료되면, FINISH를 응답하세요.", 
    ["Research team", "Paper writing team"],
)

class State(TypedDict):
    messages: Annotated[List[BaseMessage], operator.add]
    next: str

def get_last_message(state: State) -> str:
    return state["messages"][-1].content

def join_graph(response: dict):
    return {"messages": [response["messages"][-1]]}

super_graph = StateGraph(State)
super_graph.add_node("Research team", get_last_message | research_chain | join_graph)
super_graph.add_node(
    "Paper writing team", get_last_message | authoring_chain | join_graph
)
super_graph.add_node("supervisor", supervisor_node)

super_graph.add_edge("Research team", "supervisor")
super_graph.add_edge("Paper writing team", "supervisor")
super_graph.add_conditional_edges(
    "supervisor",
    lambda x: x["next"],
    {
        "Paper writing team": "Paper writing team",
        "Research team": "Research team",
        "FINISH": END,
    },
)
super_graph.set_entry_point("supervisor")
super_graph = super_graph.compile()

Run it

for s in super_graph.stream(
    {
        "messages": [
            HumanMessage(
                content="대한민국 인구 변화에 간략한 연구 내용울 차트를 포함한 한글 보고서로 작성하십시오."
            )
        ],
    },
    {"recursion_limit": 150},
):
    if "__end__" not in s:
        print(s)
        print("---")

Untitled

스크린샷 2024-06-04 오후 1.44.53.png

스크린샷 2024-06-04 오후 1.45.35.png

스크린샷 2024-06-04 오후 1.45.42.png

스크린샷 2024-06-04 오후 1.45.51.png

{'supervisor': {'next': 'Research team'}}
---
{'Research team': {'messages': [HumanMessage(content='# Population Change in South Korea: Analysis and Trends\\n\\n## Abstract\\n\\nSouth Korea has experienced significant changes in its population dynamics over the past few decades. Factors such as declining birth rates, increased life expectancy, and migration patterns have all contributed to shifts in the demographic landscape. This research paper aims to provide an overview of the population change in South Korea, incorporating current data and trends.\\n\\n## Introduction\\n\\nSouth Korea, officially known as the Republic of Korea, has been witnessing a gradual shift in its demographic profile. The country\\'s economic development, urbanization, and changes in societal values have all played a role in altering population patterns. Understanding these changes is critical for policy planning and addressing future demographic challenges.\\n\\n## Methodology\\n\\nTo analyze population change in South Korea, we conducted a search using the tavily search engine to gather the most up-to-date and reliable data. Information was sourced from government statistics, demographic studies, and international databases to ensure a comprehensive understanding of the trends.\\n\\n## Results\\n\\n### Population Growth Rate\\n\\nSouth Korea\\'s population growth rate has been declining steadily. The country is experiencing one of the lowest birth rates in the world, leading to concerns about labor shortages and the economic implications of an aging population.\\n\\n### Age Structure\\n\\nThere is a notable shift towards an aging population, with a significant increase in the percentage of elderly citizens. This demographic trend is expected to continue, impacting social services and healthcare systems.\\n\\n### Urbanization\\n\\nUrban areas, particularly the Seoul metropolitan region, have seen population growth due to internal migration. This has led to challenges in housing, transportation, and urban planning.\\n\\n### Migration\\n\\nInternational migration has also affected South Korea\\'s population dynamics. The country has seen an influx of foreign workers and marriage migrants, which has implications for cultural integration and social policy.\\n\\n## Discussion\\n\\nThe population trends in South Korea reflect a broader pattern observed in many developed nations. The low birth rate and aging population pose challenges for economic growth and sustainability. Efforts to reverse these trends include government incentives for families, improvements in childcare and work-life balance, and policies to integrate foreign residents.\\n\\n## Conclusion\\n\\nSouth Korea\\'s population dynamics are changing, with significant implications for its future. Addressing these changes requires proactive policy measures and societal adaptation to ensure a stable and prosperous society.\\n\\n## References\\n\\n1. Korean Statistical Information Service (KOSIS)\\n2. United Nations Population Division\\n3. National Institute of Population and Social Security Research\\n\\n## Appendix: Wool Chart\\n\\nUnfortunately, as a research assistant, I do not have the capability to create a "wool chart." The term "wool chart" does not correspond to a known type of data visualization in demographic research. It is possible that there was a miscommunication or a typographical error. If you meant to refer to a "wall chart" or another form of data representation such as a bar graph or pie chart to visualize population data, please clarify, and I can proceed accordingly with the correct type of data visualization.', name='Search')]}}
---
{'supervisor': {'next': 'Paper writing team'}}
---
{'Paper writing team': {'messages': [HumanMessage(content='The research paper outline titled "Population Change in South Korea: Analysis and Trends" has been created and saved under the file name "Population_Change_in_South_Korea_Analysis." This document provides a structured framework for the analysis of demographic changes in South Korea, covering various aspects and implications. The specified sections include an Abstract, Introduction, Methodology, Results, Discussion, Conclusion, References, and an Appendix for data visualization clarification. The next steps include detailed information gathering, data analysis, and contextual discussion within demographic studies.', name='DocWriter')]}}
---
{'supervisor': {'next': 'Research team'}}
---
{'Research team': {'messages': [HumanMessage(content="Based on the search results, here is a summary of the demographic trends in South Korea that can be included in the **Introduction** section of your research paper:\\n\\n1. **Population Decline**: South Korea's population is experiencing a decline, with a decrease from 51,815,810 in 2022 to 51,741,963 in 2024. This trend of population decline has been consistent over the past few years.\\n\\n2. **Aging Population**: The median age in South Korea is 44.5 years as of 2023. There is an increasing elderly dependency ratio, indicating a growing share of the population aged 65 and above.\\n\\n3. **Low Birth Rate**: The fertility rate in South Korea has been low, with recent statistics showing a continual decrease in the number of births.\\n\\n4. **Urbanization**: South Korea has a high population density, and the urban population has been increasing, indicating continued urbanization within the country.\\n\\n5. **Changing Household Structures**: There is a rise in single-person households and a transformation in the traditional family structure.\\n\\n6. **Economic Implications**: As the economically active population changes, there are implications for labor force participation, employment rates, and economic dependency ratios.\\n\\n7. **Social Implications**: Changes in demographics are affecting social policies, including immigration and social change, as well as challenges related to the aging population.\\n\\n8. **Cultural and Policy Responses**: The South Korean government and society are responding to demographic challenges with various strategies and policies, which can be explored further in the research paper.\\n\\nThese trends provide an overview of the demographic situation in South Korea and set the stage for a detailed analysis in subsequent sections of your research paper. For a complete Introduction, you might consider elaborating on each of these points, providing a historical context, and discussing the significance of studying these trends.\\n\\nWould you like to explore any of these points in more detail, or shall we move on to another section of your research paper outline?", name='Search')]}}
---
{'supervisor': {'next': 'Paper writing team'}}
---
{'Paper writing team': {'messages': [HumanMessage(content='The introduction section for the research paper on demographic trends in South Korea has been created and saved as "Demographic_Trends_in_South_Korea_Introduction." \\n\\nWould you like to proceed with another section of the research paper or review and refine the existing content?', name='DocWriter')]}}
---
{'supervisor': {'next': 'Research team'}}
---
{'Research team': {'messages': [HumanMessage(content='The introduction section for the research paper on demographic trends in South Korea has been created and saved as "Demographic_Trends_in_South_Korea_Introduction." \\n\\nWould you like to proceed with another section of the research paper or review and refine the existing content?')]}}
---
{'supervisor': {'next': 'Research team'}}
---
{'Research team': {'messages': [HumanMessage(content='The introduction section for the research paper on demographic trends in South Korea has been created and saved as "Demographic_Trends_in_South_Korea_Introduction." \\n\\nWould you like to proceed with another section of the research paper or review and refine the existing content?')]}}
---
{'supervisor': {'next': 'Research team'}}
---
{'Research team': {'messages': [HumanMessage(content='The introduction section for the research paper on demographic trends in South Korea has been created and saved as "Demographic_Trends_in_South_Korea_Introduction." \\n\\nWould you like to proceed with another section of the research paper or review and refine the existing content?')]}}
---
{'supervisor': {'next': 'FINISH'}}
---