Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,9 @@
"name": "Higress AI Gateway",
"description": "Model provider plugin for Higress AI Gateway with auto-routing support",
"providers": ["higress"],
"skills": ["higress-auto-router"]
"skills": ["higress-auto-router"],
"configSchema": {
"type": "object",
"additionalProperties": true
}
}
2 changes: 1 addition & 1 deletion all-in-one/clawdbot-integration/plugin/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ const higressPlugin = {
const apiKeyInput = await ctx.prompter.text({
message: "API Key (leave empty if not required)",
initialValue: "",
});
}) || '';
const apiKey = apiKeyInput.trim() || "higress-local";

// Step 5: Fetch available models (create a new spinner)
Expand Down
2 changes: 1 addition & 1 deletion all-in-one/clawdbot-integration/plugin/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@higress/clawdbot-ai-gateway",
"name": "@higress/higress-ai-gateway",
"version": "1.0.0",
"description": "Higress AI Gateway model provider plugin for Clawdbot with auto-routing support",
"main": "index.ts",
Expand Down
2 changes: 0 additions & 2 deletions all-in-one/get-ai-gateway.sh
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@ CONFIGURED_MARK="$ROOT/.configured"
# Clawdbot integration paths
CLAWDBOT_WORKSPACE="$HOME/clawd"
CLAWDBOT_EXTENSIONS_DIR="$HOME/.clawdbot/extensions"
CLAWDBOT_SKILLS_DIR="$CLAWDBOT_WORKSPACE/skills/public"
CLAWDBOT_INTEGRATION_DIR="$SCRIPT_DIR/clawdbot-integration"

# Auto-routing configuration
Expand Down Expand Up @@ -263,7 +262,6 @@ configureClawdbotIntegration() {

# Install Clawdbot plugin and skill using generic function
installFiles "$CLAWDBOT_INTEGRATION_DIR/plugin" "$CLAWDBOT_EXTENSIONS_DIR/higress-ai-gateway" "Higress AI Gateway plugin"
installFiles "$CLAWDBOT_INTEGRATION_DIR/skill/higress-auto-router" "$CLAWDBOT_SKILLS_DIR/higress-auto-router" "Higress Auto Router skill"

echo
echo "To complete Clawdbot setup, run:"
Expand Down