This commit is contained in:
isaac hershenson
2024-07-15 07:15:04 -07:00
parent ca1123f6af
commit 4325ca360d
2 changed files with 11 additions and 7 deletions
+5 -3
View File
@@ -1,10 +1,12 @@
# App Information
This app is a quick example showing how you can use LangGraph Cloud in your applications. Before using the app, I highly recommend reading through this info guide to gain a better understanding of how it works.
## Using the website
## Running app locally
To use the website, all you need to do is use streamlit to run the app locally. First, clone the repository and then once you are in the repository directory call `streamlit run App_Information.py`. If you are hosting your own graph (see [this documentation](https://langchain-ai.github.io/langgraph/cloud/deployment/cloud/) for hosting on LangGraph Cloud), make sure to change the url in the `get_client` function call in `pages/Story_Writing.py` to match the url of your deployed graph.
To run the app locally, clone the repository and then once you are in the repository directory call `streamlit run App_Information.py`. If you are hosting your own graph, make sure to change the url in the `get_client` function call in `pages/Story_Writing` to match the url of your deployed graph.
Once you have called `streamlit run App_Information.py` you can go to `http://localhost:8501` to see the application.
If you don't wish to host yourself, you can access the website by going to the following URL: https://langchain-story-writing.streamlit.app.
## Background
+6 -4
View File
@@ -73,10 +73,12 @@ async def generate_answer(placeholder, placeholder_title, input, client, thread,
):
if chunk.data and 'run_id' not in chunk.data:
if isinstance(chunk.data,dict):
current_llm = chunk.data[list(chunk.data.keys())[0]]['metadata']['name']
placeholder_title.markdown(f"<h4 style='text-align: center; color: rgb(206,234,253);'> \
{llm_to_title[current_llm]} \
</h4>",unsafe_allow_html=True)
try:
current_llm = chunk.data[list(chunk.data.keys())[0]]['metadata']['name']
placeholder_title.markdown(f"<h4 style='text-align: center; color: rgb(206,234,253);'> \
{llm_to_title[current_llm]}</h4>",unsafe_allow_html=True)
except:
pass
elif current_llm == "write_llm" and chunk.data[0]['content']:
ans += chunk.data[0]['content'][current_ind:]
placeholder.info(ans)