jfeng1115 commited on
Commit
f0de1f3
β€’
1 Parent(s): 58d33f0
Files changed (3) hide show
  1. .gitignore +2 -0
  2. .idea/workspace.xml +1 -1
  3. README.md +9 -82
.gitignore CHANGED
@@ -4,3 +4,5 @@ wandb/
4
  *.png
5
  *.jpg
6
  */**/*.pdf
 
 
 
4
  *.png
5
  *.jpg
6
  */**/*.pdf
7
+ .idea/
8
+
.idea/workspace.xml CHANGED
@@ -61,7 +61,7 @@
61
  <option name="number" value="Default" />
62
  <option name="presentableId" value="Default" />
63
  <updated>1694488935255</updated>
64
- <workItem from="1694488936855" duration="1127000" />
65
  </task>
66
  <servers />
67
  </component>
 
61
  <option name="number" value="Default" />
62
  <option name="presentableId" value="Default" />
63
  <updated>1694488935255</updated>
64
+ <workItem from="1694488936855" duration="1587000" />
65
  </task>
66
  <servers />
67
  </component>
README.md CHANGED
@@ -1,82 +1,9 @@
1
- # πŸ¦œοΈπŸ”— LangChain
2
-
3
- ⚑ Building applications with LLMs through composability ⚑
4
-
5
- [![lint](https://github.com/hwchase17/langchain/actions/workflows/lint.yml/badge.svg)](https://github.com/hwchase17/langchain/actions/workflows/lint.yml) [![test](https://github.com/hwchase17/langchain/actions/workflows/test.yml/badge.svg)](https://github.com/hwchase17/langchain/actions/workflows/test.yml) [![linkcheck](https://github.com/hwchase17/langchain/actions/workflows/linkcheck.yml/badge.svg)](https://github.com/hwchase17/langchain/actions/workflows/linkcheck.yml) [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) [![Twitter](https://img.shields.io/twitter/url/https/twitter.com/langchainai.svg?style=social&label=Follow%20%40LangChainAI)](https://twitter.com/langchainai) [![](https://dcbadge.vercel.app/api/server/6adMQxSpJS?compact=true&style=flat)](https://discord.gg/6adMQxSpJS)
6
-
7
- **Production Support:** As you move your LangChains into production, we'd love to offer more comprehensive support.
8
- Please fill out [this form](https://forms.gle/57d8AmXBYp8PP8tZA) and we'll set up a dedicated support Slack channel.
9
-
10
- ## Quick Install
11
-
12
- `pip install langchain`
13
-
14
- ## πŸ€” What is this?
15
-
16
- Large language models (LLMs) are emerging as a transformative technology, enabling
17
- developers to build applications that they previously could not.
18
- But using these LLMs in isolation is often not enough to
19
- create a truly powerful app - the real power comes when you can combine them with other sources of computation or knowledge.
20
-
21
- This library is aimed at assisting in the development of those types of applications. Common examples of these types of applications include:
22
-
23
- **❓ Question Answering over specific documents**
24
-
25
- - [Documentation](https://langchain.readthedocs.io/en/latest/use_cases/question_answering.html)
26
- - End-to-end Example: [Question Answering over Notion Database](https://github.com/hwchase17/notion-qa)
27
-
28
- **πŸ’¬ Chatbots**
29
-
30
- - [Documentation](https://langchain.readthedocs.io/en/latest/use_cases/chatbots.html)
31
- - End-to-end Example: [Chat-LangChain](https://github.com/hwchase17/chat-langchain)
32
-
33
- **πŸ€– Agents**
34
-
35
- - [Documentation](https://langchain.readthedocs.io/en/latest/use_cases/agents.html)
36
- - End-to-end Example: [GPT+WolframAlpha](https://huggingface.co/spaces/JavaFXpert/Chat-GPT-LangChain)
37
-
38
- ## πŸ“– Documentation
39
-
40
- Please see [here](https://langchain.readthedocs.io/en/latest/?) for full documentation on:
41
-
42
- - Getting started (installation, setting up the environment, simple examples)
43
- - How-To examples (demos, integrations, helper functions)
44
- - Reference (full API docs)
45
- - Resources (high-level explanation of core concepts)
46
-
47
- ## πŸš€ What can this help with?
48
-
49
- There are six main areas that LangChain is designed to help with.
50
- These are, in increasing order of complexity:
51
-
52
- **πŸ“ƒ LLMs and Prompts:**
53
-
54
- This includes prompt management, prompt optimization, generic interface for all LLMs, and common utilities for working with LLMs.
55
-
56
- **πŸ”— Chains:**
57
-
58
- Chains go beyond just a single LLM call, and are sequences of calls (whether to an LLM or a different utility). LangChain provides a standard interface for chains, lots of integrations with other tools, and end-to-end chains for common applications.
59
-
60
- **πŸ“š Data Augmented Generation:**
61
-
62
- Data Augmented Generation involves specific types of chains that first interact with an external datasource to fetch data to use in the generation step. Examples of this include summarization of long pieces of text and question/answering over specific data sources.
63
-
64
- **πŸ€– Agents:**
65
-
66
- Agents involve an LLM making decisions about which Actions to take, taking that Action, seeing an Observation, and repeating that until done. LangChain provides a standard interface for agents, a selection of agents to choose from, and examples of end to end agents.
67
-
68
- **🧠 Memory:**
69
-
70
- Memory is the concept of persisting state between calls of a chain/agent. LangChain provides a standard interface for memory, a collection of memory implementations, and examples of chains/agents that use memory.
71
-
72
- **🧐 Evaluation:**
73
-
74
- [BETA] Generative models are notoriously hard to evaluate with traditional metrics. One new way of evaluating them is using language models themselves to do the evaluation. LangChain provides some prompts/chains for assisting in this.
75
-
76
- For more information on these concepts, please see our [full documentation](https://langchain.readthedocs.io/en/latest/?).
77
-
78
- ## πŸ’ Contributing
79
-
80
- As an open source project in a rapidly developing field, we are extremely open to contributions, whether it be in the form of a new feature, improved infra, or better documentation.
81
-
82
- For detailed information on how to contribute, see [here](.github/CONTRIBUTING.md).
 
1
+ ---
2
+ title: marketing analytics bot
3
+ emoji: πŸ“š
4
+ colorFrom: purple
5
+ colorTo: gray
6
+ sdk: docker
7
+ pinned: false
8
+ license: openrail
9
+ ---