Spaces:
Runtime error
Runtime error
Harrison Chase
commited on
Commit
·
eec9bfc
1
Parent(s):
a56393e
cr
Browse files
README.md
CHANGED
|
@@ -1,12 +1,12 @@
|
|
| 1 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2 |
|
| 3 |
-
|
| 4 |
-
This is particularly useful because you can easily deploy Gradio apps on Hugging Face spaces,
|
| 5 |
-
making it very easy to share you LangChain applications on there.
|
| 6 |
-
|
| 7 |
-
This repo contains an `app.py` file which has a template for a chatbot implementation.
|
| 8 |
-
This was heavily inspired [James Weaver's examples](https://huggingface.co/JavaFXpert).
|
| 9 |
-
|
| 10 |
-
## Adding your chain
|
| 11 |
-
To add your chain, you need to change the `load_chain` function in `app.py`.
|
| 12 |
-
Depending on the type of your chain, you may also need to change the inputs/outputs that occur later on (in the `chat` function).
|
|
|
|
| 1 |
+
---
|
| 2 |
+
title: LangChain Demo
|
| 3 |
+
colorFrom: purple
|
| 4 |
+
colorTo: gray
|
| 5 |
+
sdk: gradio
|
| 6 |
+
sdk_version: 3.15.0
|
| 7 |
+
app_file: app.py
|
| 8 |
+
pinned: false
|
| 9 |
+
license: apache-2.0
|
| 10 |
+
---
|
| 11 |
|
| 12 |
+
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|