mirror of
https://github.com/block/goose.git
synced 2026-07-09 16:09:22 +00:00
Increase the /mcp-app-guest body limit for larger single-file MCP apps (#10324)
Co-authored-by: Douwe M Osinga <douwe@sidewalklabs.com>
This commit is contained in:
parent
af34c75fd5
commit
be521ff8b2
1 changed files with 1 additions and 1 deletions
|
|
@ -16,7 +16,7 @@ use uuid::Uuid;
|
|||
|
||||
const GUEST_HTML_TTL_SECS: u64 = 300;
|
||||
const GUEST_HTML_MAX_ENTRIES: usize = 64;
|
||||
const GUEST_HTML_MAX_BYTES: usize = 8 * 1024 * 1024;
|
||||
const GUEST_HTML_MAX_BYTES: usize = 16 * 1024 * 1024;
|
||||
const MCP_APP_PROXY_HTML: &str = include_str!("templates/mcp_app_proxy.html");
|
||||
|
||||
type GuestHtmlStore = Arc<RwLock<HashMap<String, GuestHtmlEntry>>>;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue