├── 01QAoverDocuments.ipynb ├── 02QuickStart.ipynb ├── 03Prompts.ipynb ├── 04languagemodel.ipynb ├── 05OutputParsers.ipynb ├── 06DocumentLoaders.ipynb ├── 07DocumentTransformers.ipynb ├── 08VectorStores.ipynb ├── 201Agent.ipynb ├── 202AgentConversational.ipynb ├── 203AgentOpenaiAssistants.ipynb ├── 204AgentPromptStudy.ipynb ├── 205Agentcustom.ipynb ├── LICENSE ├── README.md ├── cache └── text-embedding-ada-002948b99a3-567e-5f0f-9ccb-d68ed5b060d9 ├── documentstore ├── examples.json ├── fake-content.html ├── index.csv ├── index.md └── state_of_the_union.txt ├── llmstore ├── llm.json └── llm.yaml ├── promptstore ├── example_prompt.json ├── examples.json ├── examples.yaml ├── few_shot_prompt.json ├── few_shot_prompt.yaml ├── few_shot_prompt_example_prompt.json ├── few_shot_prompt_examples_in.json ├── few_shot_prompt_yaml_examples.yaml ├── hwchase17 │ ├── react-chat-json.txt │ ├── react-chat.txt │ ├── react.txt │ ├── self-ask-with-search.txt │ ├── structured-chat-agent.txt │ └── xml-agent-convo.txt ├── simple_prompt.json ├── simple_prompt.yaml ├── simple_prompt_with_template_file.json └── simple_template.txt ├── requirements.txt └── test.py /01QAoverDocuments.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XingYu-Zhong/LangChainStudy/HEAD/01QAoverDocuments.ipynb -------------------------------------------------------------------------------- /02QuickStart.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XingYu-Zhong/LangChainStudy/HEAD/02QuickStart.ipynb -------------------------------------------------------------------------------- /03Prompts.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XingYu-Zhong/LangChainStudy/HEAD/03Prompts.ipynb -------------------------------------------------------------------------------- /04languagemodel.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XingYu-Zhong/LangChainStudy/HEAD/04languagemodel.ipynb -------------------------------------------------------------------------------- /05OutputParsers.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XingYu-Zhong/LangChainStudy/HEAD/05OutputParsers.ipynb -------------------------------------------------------------------------------- /06DocumentLoaders.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XingYu-Zhong/LangChainStudy/HEAD/06DocumentLoaders.ipynb -------------------------------------------------------------------------------- /07DocumentTransformers.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XingYu-Zhong/LangChainStudy/HEAD/07DocumentTransformers.ipynb -------------------------------------------------------------------------------- /08VectorStores.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XingYu-Zhong/LangChainStudy/HEAD/08VectorStores.ipynb -------------------------------------------------------------------------------- /201Agent.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XingYu-Zhong/LangChainStudy/HEAD/201Agent.ipynb -------------------------------------------------------------------------------- /202AgentConversational.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XingYu-Zhong/LangChainStudy/HEAD/202AgentConversational.ipynb -------------------------------------------------------------------------------- /203AgentOpenaiAssistants.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XingYu-Zhong/LangChainStudy/HEAD/203AgentOpenaiAssistants.ipynb -------------------------------------------------------------------------------- /204AgentPromptStudy.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XingYu-Zhong/LangChainStudy/HEAD/204AgentPromptStudy.ipynb -------------------------------------------------------------------------------- /205Agentcustom.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XingYu-Zhong/LangChainStudy/HEAD/205Agentcustom.ipynb -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XingYu-Zhong/LangChainStudy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XingYu-Zhong/LangChainStudy/HEAD/README.md -------------------------------------------------------------------------------- /cache/text-embedding-ada-002948b99a3-567e-5f0f-9ccb-d68ed5b060d9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XingYu-Zhong/LangChainStudy/HEAD/cache/text-embedding-ada-002948b99a3-567e-5f0f-9ccb-d68ed5b060d9 -------------------------------------------------------------------------------- /documentstore/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XingYu-Zhong/LangChainStudy/HEAD/documentstore/examples.json -------------------------------------------------------------------------------- /documentstore/fake-content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XingYu-Zhong/LangChainStudy/HEAD/documentstore/fake-content.html -------------------------------------------------------------------------------- /documentstore/index.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XingYu-Zhong/LangChainStudy/HEAD/documentstore/index.csv -------------------------------------------------------------------------------- /documentstore/index.md: -------------------------------------------------------------------------------- 1 | ## test index.md -------------------------------------------------------------------------------- /documentstore/state_of_the_union.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XingYu-Zhong/LangChainStudy/HEAD/documentstore/state_of_the_union.txt -------------------------------------------------------------------------------- /llmstore/llm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XingYu-Zhong/LangChainStudy/HEAD/llmstore/llm.json -------------------------------------------------------------------------------- /llmstore/llm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XingYu-Zhong/LangChainStudy/HEAD/llmstore/llm.yaml -------------------------------------------------------------------------------- /promptstore/example_prompt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XingYu-Zhong/LangChainStudy/HEAD/promptstore/example_prompt.json -------------------------------------------------------------------------------- /promptstore/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XingYu-Zhong/LangChainStudy/HEAD/promptstore/examples.json -------------------------------------------------------------------------------- /promptstore/examples.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XingYu-Zhong/LangChainStudy/HEAD/promptstore/examples.yaml -------------------------------------------------------------------------------- /promptstore/few_shot_prompt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XingYu-Zhong/LangChainStudy/HEAD/promptstore/few_shot_prompt.json -------------------------------------------------------------------------------- /promptstore/few_shot_prompt.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XingYu-Zhong/LangChainStudy/HEAD/promptstore/few_shot_prompt.yaml -------------------------------------------------------------------------------- /promptstore/few_shot_prompt_example_prompt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XingYu-Zhong/LangChainStudy/HEAD/promptstore/few_shot_prompt_example_prompt.json -------------------------------------------------------------------------------- /promptstore/few_shot_prompt_examples_in.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XingYu-Zhong/LangChainStudy/HEAD/promptstore/few_shot_prompt_examples_in.json -------------------------------------------------------------------------------- /promptstore/few_shot_prompt_yaml_examples.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XingYu-Zhong/LangChainStudy/HEAD/promptstore/few_shot_prompt_yaml_examples.yaml -------------------------------------------------------------------------------- /promptstore/hwchase17/react-chat-json.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XingYu-Zhong/LangChainStudy/HEAD/promptstore/hwchase17/react-chat-json.txt -------------------------------------------------------------------------------- /promptstore/hwchase17/react-chat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XingYu-Zhong/LangChainStudy/HEAD/promptstore/hwchase17/react-chat.txt -------------------------------------------------------------------------------- /promptstore/hwchase17/react.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XingYu-Zhong/LangChainStudy/HEAD/promptstore/hwchase17/react.txt -------------------------------------------------------------------------------- /promptstore/hwchase17/self-ask-with-search.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XingYu-Zhong/LangChainStudy/HEAD/promptstore/hwchase17/self-ask-with-search.txt -------------------------------------------------------------------------------- /promptstore/hwchase17/structured-chat-agent.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XingYu-Zhong/LangChainStudy/HEAD/promptstore/hwchase17/structured-chat-agent.txt -------------------------------------------------------------------------------- /promptstore/hwchase17/xml-agent-convo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XingYu-Zhong/LangChainStudy/HEAD/promptstore/hwchase17/xml-agent-convo.txt -------------------------------------------------------------------------------- /promptstore/simple_prompt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XingYu-Zhong/LangChainStudy/HEAD/promptstore/simple_prompt.json -------------------------------------------------------------------------------- /promptstore/simple_prompt.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XingYu-Zhong/LangChainStudy/HEAD/promptstore/simple_prompt.yaml -------------------------------------------------------------------------------- /promptstore/simple_prompt_with_template_file.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XingYu-Zhong/LangChainStudy/HEAD/promptstore/simple_prompt_with_template_file.json -------------------------------------------------------------------------------- /promptstore/simple_template.txt: -------------------------------------------------------------------------------- 1 | Tell me a {adjective} joke about {content}. -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XingYu-Zhong/LangChainStudy/HEAD/requirements.txt -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------