You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* feat: A2A streaming works using Dapr pub-sub but things need to be cleaned up.
* fix: Corrected LaTeX math-mode display in Gradio chatbot by adding escaped square braces characters as LaTeX delimiters.
* chore: Added an environment variable to optionally specify a remote A2A MHQA endpoint.
* fix: Corrected parsing issues in the A2A CLI client for both streaming and non-streaming modes.
note: Read the A2A protocol documentation for details.
* chore: Reduced the number of messages the actor posts to the pub-sub queue.
fix: Corrected message statuses to _complete_ in the message history.
* chore: Added yfmcp MCP server for stock tickers.
chore: Minor UI modifications.
* fix: Corrected test condition for total number of MCP tools.
Copy file name to clipboardExpand all lines: README.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -47,8 +47,10 @@ The following environment variables are also relevant but not essential, except
47
47
-`BROWSER_STATE_SECRET`: This is the secret used by Gradio to encrypt the browser state data. The default value is `a2a_dapr_bstate_secret`.
48
48
-`BROWSER_STATE_CHAT_HISTORIES`: This is the key in browser state used by Gradio to store the chat histories (local values). The default value is `a2a_dapr_chat_histories`.
49
49
-`APP_DAPR_SVC_HOST` and `APP_DAPR_SVC_PORT`: The host and port at which Dapr actor service will listen on. These default to `127.0.0.1` and `32768`. Should you change these, you must change the corresponding information in `dapr.yaml`.
50
+
-`APP_DAPR_PUBSUB_STALE_MSG_SECS`: This specifies how old a message should be on the Dapr publish-subscribe topic queue before it will be considered too old, and dropped. The default value is 60 seconds.
50
51
-`DAPR_PUBSUB_NAME`: The configured name of the publish-subscribe component at `.dapr/components/pubsub.yaml`. Change this environment variable only if you change the corresponding pub-sub component configuration.
51
52
-`APP_A2A_SRV_HOST` and `APP_MHQA_A2A_SRV_PORT`: The host and port at which A2A endpoint will be available. These default to `127.0.0.1` and `32770`. Should you change these, you must change the corresponding information in `dapr.yaml`.
53
+
-`APP_MHQA_A2A_REMOTE_URL`: This environment variable can be used to specify the full remote URL including the protocol, i.e., `http` or `https` where the MHQA A2A endpoint is available. This is useful in a scenario where the web app is deployed on a machine that is different from where the MHQA A2A endpoint and Dapr service are. Default value is `None`.
0 commit comments