Skip to content

Commit adc406d

Browse files
authored
Merge pull request #116 from huggingface/feat/qwen-dynamic
change default to qwen, tweak dynamic prompt
2 parents 5a43045 + 0564d3b commit adc406d

File tree

2 files changed

+12
-6
lines changed

2 files changed

+12
-6
lines changed

packages/app/src/shared/settings.ts

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,17 @@ export interface AppSettings {
2222
// Default space tools (exported for reuse)
2323
export const DEFAULT_SPACE_TOOLS: SpaceTool[] = [
2424
{
25-
_id: '6755d0d9e0ea01e11fa2a38a',
26-
name: 'evalstate/flux1_schnell',
27-
subdomain: 'evalstate-flux1-schnell',
28-
emoji: '🏎️💨',
25+
_id: '69147d8b8dc517cb9b2d313f',
26+
name: 'mcp-tools/Qwen-Image-Fast',
27+
subdomain: 'mcp-tools-qwen-image-fast',
28+
emoji: '🖼️',
2929
},
30+
// {
31+
// _id: '6755d0d9e0ea01e11fa2a38a',
32+
// name: 'evalstate/flux1_schnell',
33+
// subdomain: 'evalstate-flux1-schnell',
34+
// emoji: '🏎️💨',
35+
// },
3036
/*
3137
{
3238
_id: '680be03dc38b7fa7d6855910',

packages/mcp/src/space/space-tool.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Dynamically interact with any Gradio MCP Space. View parameter schemas or invoke
3030
- Union types
3131
- Recursive schemas
3232
33-
For spaces with complex schemas, direct the user to huggingface.co/settings/mcp to manage their settings.
33+
For spaces with complex schemas, direct the user to huggingface.co/settings/mcp to add the space via settings panel.
3434
3535
## Available Operations
3636
@@ -68,7 +68,7 @@ Execute a space's first tool with provided parameters.
6868
For parameters that accept files (FileData types):
6969
- Provide a publicly accessible URL (http:// or https://)
7070
- Example: \`{"image": "https://example.com/photo.jpg"}\`
71-
- To upload local files, use the dedicated gr_* prefixed tool for that space
71+
- Outputs from one tool may be used as inputs to another
7272
7373
## Tips
7474

0 commit comments

Comments
 (0)