mirror of
https://github.com/hwchase17/langchain
synced 2024-11-06 03:20:49 +00:00
9ffca3b92a
Update imports to use core for the low-hanging fruit changes. Ran following ```bash git grep -l 'langchain.schema.runnable' {docs,templates,cookbook} | xargs sed -i '' 's/langchain\.schema\.runnable/langchain_core.runnables/g' git grep -l 'langchain.schema.output_parser' {docs,templates,cookbook} | xargs sed -i '' 's/langchain\.schema\.output_parser/langchain_core.output_parsers/g' git grep -l 'langchain.schema.messages' {docs,templates,cookbook} | xargs sed -i '' 's/langchain\.schema\.messages/langchain_core.messages/g' git grep -l 'langchain.schema.chat_histry' {docs,templates,cookbook} | xargs sed -i '' 's/langchain\.schema\.chat_history/langchain_core.chat_history/g' git grep -l 'langchain.schema.prompt_template' {docs,templates,cookbook} | xargs sed -i '' 's/langchain\.schema\.prompt_template/langchain_core.prompts/g' git grep -l 'from langchain.pydantic_v1' {docs,templates,cookbook} | xargs sed -i '' 's/from langchain\.pydantic_v1/from langchain_core.pydantic_v1/g' git grep -l 'from langchain.tools.base' {docs,templates,cookbook} | xargs sed -i '' 's/from langchain\.tools\.base/from langchain_core.tools/g' git grep -l 'from langchain.chat_models.base' {docs,templates,cookbook} | xargs sed -i '' 's/from langchain\.chat_models.base/from langchain_core.language_models.chat_models/g' git grep -l 'from langchain.llms.base' {docs,templates,cookbook} | xargs sed -i '' 's/from langchain\.llms\.base\ /from langchain_core.language_models.llms\ /g' git grep -l 'from langchain.embeddings.base' {docs,templates,cookbook} | xargs sed -i '' 's/from langchain\.embeddings\.base/from langchain_core.embeddings/g' git grep -l 'from langchain.vectorstores.base' {docs,templates,cookbook} | xargs sed -i '' 's/from langchain\.vectorstores\.base/from langchain_core.vectorstores/g' git grep -l 'from langchain.agents.tools' {docs,templates,cookbook} | xargs sed -i '' 's/from langchain\.agents\.tools/from langchain_core.tools/g' git grep -l 'from langchain.schema.output' {docs,templates,cookbook} | xargs sed -i '' 's/from langchain\.schema\.output\ /from langchain_core.outputs\ /g' git grep -l 'from langchain.schema.embeddings' {docs,templates,cookbook} | xargs sed -i '' 's/from langchain\.schema\.embeddings/from langchain_core.embeddings/g' git grep -l 'from langchain.schema.document' {docs,templates,cookbook} | xargs sed -i '' 's/from langchain\.schema\.document/from langchain_core.documents/g' git grep -l 'from langchain.schema.agent' {docs,templates,cookbook} | xargs sed -i '' 's/from langchain\.schema\.agent/from langchain_core.agents/g' git grep -l 'from langchain.schema.prompt ' {docs,templates,cookbook} | xargs sed -i '' 's/from langchain\.schema\.prompt\ /from langchain_core.prompt_values /g' git grep -l 'from langchain.schema.language_model' {docs,templates,cookbook} | xargs sed -i '' 's/from langchain\.schema\.language_model/from langchain_core.language_models/g' ```
76 lines
3.4 KiB
Python
76 lines
3.4 KiB
Python
from langchain.chat_models import ChatOpenAI
|
|
from langchain.prompts import ChatPromptTemplate
|
|
from langchain_core.output_parsers import StrOutputParser
|
|
from langchain_core.runnables import ConfigurableField
|
|
|
|
WRITER_SYSTEM_PROMPT = "You are an AI critical thinker research assistant. Your sole purpose is to write well written, critically acclaimed, objective and structured reports on given text." # noqa: E501
|
|
|
|
|
|
# Report prompts from https://github.com/assafelovic/gpt-researcher/blob/master/gpt_researcher/master/prompts.py
|
|
RESEARCH_REPORT_TEMPLATE = """Information:
|
|
--------
|
|
{research_summary}
|
|
--------
|
|
|
|
Using the above information, answer the following question or topic: "{question}" in a detailed report -- \
|
|
The report should focus on the answer to the question, should be well structured, informative, \
|
|
in depth, with facts and numbers if available and a minimum of 1,200 words.
|
|
|
|
You should strive to write the report as long as you can using all relevant and necessary information provided.
|
|
You must write the report with markdown syntax.
|
|
You MUST determine your own concrete and valid opinion based on the given information. Do NOT deter to general and meaningless conclusions.
|
|
Write all used source urls at the end of the report, and make sure to not add duplicated sources, but only one reference for each.
|
|
You must write the report in apa format.
|
|
Please do your best, this is very important to my career.""" # noqa: E501
|
|
|
|
|
|
RESOURCE_REPORT_TEMPLATE = """Information:
|
|
--------
|
|
{research_summary}
|
|
--------
|
|
|
|
Based on the above information, generate a bibliography recommendation report for the following question or topic: "{question}". \
|
|
The report should provide a detailed analysis of each recommended resource, explaining how each source can contribute to finding answers to the research question. \
|
|
Focus on the relevance, reliability, and significance of each source. \
|
|
Ensure that the report is well-structured, informative, in-depth, and follows Markdown syntax. \
|
|
Include relevant facts, figures, and numbers whenever available. \
|
|
The report should have a minimum length of 1,200 words.
|
|
|
|
Please do your best, this is very important to my career.""" # noqa: E501
|
|
|
|
OUTLINE_REPORT_TEMPLATE = """Information:
|
|
--------
|
|
{research_summary}
|
|
--------
|
|
|
|
Using the above information, generate an outline for a research report in Markdown syntax for the following question or topic: "{question}". \
|
|
The outline should provide a well-structured framework for the research report, including the main sections, subsections, and key points to be covered. \
|
|
The research report should be detailed, informative, in-depth, and a minimum of 1,200 words. \
|
|
Use appropriate Markdown syntax to format the outline and ensure readability.
|
|
|
|
Please do your best, this is very important to my career.""" # noqa: E501
|
|
|
|
model = ChatOpenAI(temperature=0)
|
|
prompt = ChatPromptTemplate.from_messages(
|
|
[
|
|
("system", WRITER_SYSTEM_PROMPT),
|
|
("user", RESEARCH_REPORT_TEMPLATE),
|
|
]
|
|
).configurable_alternatives(
|
|
ConfigurableField("report_type"),
|
|
default_key="research_report",
|
|
resource_report=ChatPromptTemplate.from_messages(
|
|
[
|
|
("system", WRITER_SYSTEM_PROMPT),
|
|
("user", RESOURCE_REPORT_TEMPLATE),
|
|
]
|
|
),
|
|
outline_report=ChatPromptTemplate.from_messages(
|
|
[
|
|
("system", WRITER_SYSTEM_PROMPT),
|
|
("user", OUTLINE_REPORT_TEMPLATE),
|
|
]
|
|
),
|
|
)
|
|
chain = prompt | model | StrOutputParser()
|