Commit
·
2a66609
1
Parent(s):
e11925e
browser state please
Browse files- __pycache__/graph.cpython-310.pyc +0 -0
- app.log +2 -0
- app.py +4 -0
- graph.png +0 -0
- requirements.txt +1 -1
__pycache__/graph.cpython-310.pyc
CHANGED
Binary files a/__pycache__/graph.cpython-310.pyc and b/__pycache__/graph.cpython-310.pyc differ
|
|
app.log
CHANGED
@@ -49911,3 +49911,5 @@ For troubleshooting, visit: https://python.langchain.com/docs/troubleshooting/er
|
|
49911 |
2025-06-06 14:43:07:__main__:INFO: Greeting added for new user via handle_initial_greeting_load.
|
49912 |
2025-06-06 14:43:08:__main__:INFO: Greeting added for new user via handle_initial_greeting_load.
|
49913 |
2025-06-06 14:43:36:__main__:INFO: Greeting added for new user via handle_initial_greeting_load.
|
|
|
|
|
|
49911 |
2025-06-06 14:43:07:__main__:INFO: Greeting added for new user via handle_initial_greeting_load.
|
49912 |
2025-06-06 14:43:08:__main__:INFO: Greeting added for new user via handle_initial_greeting_load.
|
49913 |
2025-06-06 14:43:36:__main__:INFO: Greeting added for new user via handle_initial_greeting_load.
|
49914 |
+
2025-06-06 15:19:39:__main__:INFO: Starting the interface
|
49915 |
+
2025-06-06 15:20:37:__main__:INFO: Starting the interface
|
app.py
CHANGED
@@ -691,6 +691,10 @@ if __name__ == "__main__":
|
|
691 |
# ],
|
692 |
# # queue=False # Consider if queueing is needed or affects load order for this
|
693 |
# )
|
|
|
|
|
|
|
|
|
694 |
@app.load( # Or demo.load
|
695 |
inputs=[
|
696 |
is_new_user_for_greeting,
|
|
|
691 |
# ],
|
692 |
# # queue=False # Consider if queueing is needed or affects load order for this
|
693 |
# )
|
694 |
+
@demo.load(inputs=[browser_state], outputs=[username, password])
|
695 |
+
def load_browser_state(data):
|
696 |
+
return data[0], data[1]
|
697 |
+
|
698 |
@app.load( # Or demo.load
|
699 |
inputs=[
|
700 |
is_new_user_for_greeting,
|
graph.png
CHANGED
![]() |
![]() |
requirements.txt
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
Pillow
|
2 |
-
gradio==5.
|
3 |
langchain
|
4 |
langchain-community
|
5 |
langchain-core
|
|
|
1 |
Pillow
|
2 |
+
gradio==5.33.0
|
3 |
langchain
|
4 |
langchain-community
|
5 |
langchain-core
|