├── .github ├── dependabot.yml ├── scripts │ └── install.sh └── workflows │ ├── check-semgrep.yml │ ├── ci.yml │ └── release.yml ├── .gitignore ├── .golangci.yml ├── Dockerfile ├── LICENSE ├── README.md ├── README.zh.md ├── config.example.yaml ├── config.md ├── core ├── .gitignore ├── common │ ├── audio │ │ ├── audio.go │ │ ├── audio_test.go │ │ └── export_test.go │ ├── balance │ │ ├── balance.go │ │ ├── mock.go │ │ └── sealos.go │ ├── body.go │ ├── color.go │ ├── config │ │ ├── config.go │ │ ├── env.go │ │ └── yaml_config.go │ ├── constants.go │ ├── consume │ │ ├── consume.go │ │ ├── consume_test.go │ │ └── record.go │ ├── conv │ │ ├── any.go │ │ └── any_test.go │ ├── database.go │ ├── env │ │ └── helper.go │ ├── fastJSONSerializer │ │ └── fastJSONSerializer.go │ ├── gin.go │ ├── gin_test.go │ ├── image │ │ ├── image.go │ │ ├── image_test.go │ │ └── svg.go │ ├── ipblack │ │ ├── main.go │ │ ├── mem.go │ │ └── redis.go │ ├── log.go │ ├── network │ │ ├── ip.go │ │ └── ip_test.go │ ├── notify │ │ ├── feishu.go │ │ ├── feishu_test.go │ │ ├── notify.go │ │ └── std.go │ ├── pprof │ │ └── pprof.go │ ├── redis.go │ ├── reqlimit │ │ ├── main.go │ │ ├── mem.go │ │ ├── mem_test.go │ │ └── redis.go │ ├── tiktoken │ │ ├── tiktoken.go │ │ └── tiktoken_test.go │ ├── trunc.go │ ├── trunc_test.go │ ├── trylock │ │ ├── lock.go │ │ └── lock_test.go │ ├── utils.go │ └── utils_test.go ├── controller │ ├── channel-billing.go │ ├── channel-test.go │ ├── channel.go │ ├── dashboard.go │ ├── group.go │ ├── import.go │ ├── log.go │ ├── mcp │ │ ├── embedmcp.go │ │ ├── groupmcp-server.go │ │ ├── groupmcp.go │ │ ├── host.go │ │ ├── mcp-mpsc.go │ │ ├── mcp-store.go │ │ ├── mcp.go │ │ ├── publicmcp-group.go │ │ ├── publicmcp-server.go │ │ ├── publicmcp-tool.go │ │ ├── publicmcp.go │ │ └── reusing.go │ ├── misc.go │ ├── model.go │ ├── modelconfig.go │ ├── monitor.go │ ├── option.go │ ├── relay-channel.go │ ├── relay-controller.go │ ├── relay-dashboard.go │ ├── relay-model.go │ ├── relay.go │ ├── token.go │ └── utils │ │ ├── utils.go │ │ └── utils_test.go ├── deploy │ ├── Kubefile │ ├── charts │ │ ├── aiproxy-database │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── aiproxy-log.yaml │ │ │ │ ├── aiproxy-redis.yaml │ │ │ │ └── aiproxy.yaml │ │ │ └── values.yaml │ │ └── aiproxy │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ ├── _helpers.tpl │ │ │ ├── app.yaml │ │ │ ├── configmap.yaml │ │ │ ├── deploy.yaml │ │ │ └── ingress.yaml │ │ │ └── values.yaml │ └── install.sh ├── docs │ ├── docs.go │ ├── swagger.json │ └── swagger.yaml ├── go.mod ├── go.sum ├── main.go ├── mcpproxy │ ├── session.go │ ├── sse.go │ ├── stateless-streamable.go │ └── streamable.go ├── middleware │ ├── auth.go │ ├── cors.go │ ├── ctxkey.go │ ├── distributor.go │ ├── distributor_test.go │ ├── ipblack.go │ ├── log.go │ ├── mcp.go │ ├── recover.go │ ├── reqid.go │ └── utils.go ├── model │ ├── batch.go │ ├── cache.go │ ├── channel.go │ ├── channeltest.go │ ├── chtype.go │ ├── configkey.go │ ├── consumeerr.go │ ├── export_test.go │ ├── group.go │ ├── groupmcp.go │ ├── groupmodel.go │ ├── groupsummary-minute.go │ ├── groupsummary.go │ ├── log.go │ ├── main.go │ ├── modelconfig.go │ ├── option.go │ ├── owner.go │ ├── publicmcp.go │ ├── retrylog.go │ ├── store.go │ ├── summary-minute.go │ ├── summary.go │ ├── token.go │ ├── usage.go │ ├── usage_alert.go │ ├── usage_test.go │ ├── utils.go │ ├── utils_test.go │ └── yaml_integration.go ├── monitor │ ├── memmodel.go │ └── model.go ├── public │ ├── dist │ │ └── .gitkeep │ ├── public.go │ └── templates │ │ └── index.tmpl ├── relay │ ├── adaptor │ │ ├── ai360 │ │ │ ├── adaptor.go │ │ │ └── constants.go │ │ ├── ali │ │ │ ├── adaptor.go │ │ │ ├── chat.go │ │ │ ├── constants.go │ │ │ ├── embed.go │ │ │ ├── error.go │ │ │ ├── image.go │ │ │ ├── model.go │ │ │ ├── rerank.go │ │ │ ├── stt-realtime.go │ │ │ └── tts.go │ │ ├── anthropic │ │ │ ├── adaptor.go │ │ │ ├── constants.go │ │ │ ├── error.go │ │ │ ├── gemini.go │ │ │ ├── gemini_test.go │ │ │ ├── main.go │ │ │ ├── openai.go │ │ │ ├── openai_test.go │ │ │ └── utils.go │ │ ├── aws │ │ │ ├── adaptor.go │ │ │ ├── claude │ │ │ │ ├── adapter.go │ │ │ │ ├── claude.go │ │ │ │ ├── error.go │ │ │ │ ├── model.go │ │ │ │ └── openai.go │ │ │ ├── key.go │ │ │ ├── registry.go │ │ │ └── utils │ │ │ │ ├── adaptor.go │ │ │ │ └── client.go │ │ ├── azure │ │ │ ├── key.go │ │ │ ├── main.go │ │ │ └── main_test.go │ │ ├── azure2 │ │ │ └── main.go │ │ ├── baichuan │ │ │ ├── adaptor.go │ │ │ └── constants.go │ │ ├── baidu │ │ │ ├── adaptor.go │ │ │ ├── constants.go │ │ │ ├── embeddings.go │ │ │ ├── error.go │ │ │ ├── image.go │ │ │ ├── key.go │ │ │ ├── main.go │ │ │ ├── model.go │ │ │ ├── rerank.go │ │ │ └── token.go │ │ ├── baiduv2 │ │ │ ├── adaptor.go │ │ │ ├── constants.go │ │ │ ├── key.go │ │ │ └── token.go │ │ ├── cloudflare │ │ │ ├── adaptor.go │ │ │ └── constant.go │ │ ├── cohere │ │ │ ├── adaptor.go │ │ │ ├── constant.go │ │ │ ├── main.go │ │ │ └── model.go │ │ ├── coze │ │ │ ├── adaptor.go │ │ │ ├── constant │ │ │ │ ├── contenttype │ │ │ │ │ └── define.go │ │ │ │ ├── event │ │ │ │ │ └── define.go │ │ │ │ └── messagetype │ │ │ │ │ └── define.go │ │ │ ├── constants.go │ │ │ ├── key.go │ │ │ ├── main.go │ │ │ └── model.go │ │ ├── deepseek │ │ │ ├── adaptor.go │ │ │ ├── balance.go │ │ │ └── constants.go │ │ ├── doc2x │ │ │ ├── adaptor.go │ │ │ ├── constants.go │ │ │ ├── html2md_test.go │ │ │ └── pdf.go │ │ ├── doubao │ │ │ ├── chat.go │ │ │ ├── constants.go │ │ │ ├── embed.go │ │ │ └── main.go │ │ ├── doubaoaudio │ │ │ ├── constants.go │ │ │ ├── key.go │ │ │ ├── main.go │ │ │ └── tts.go │ │ ├── gemini │ │ │ ├── adaptor.go │ │ │ ├── claude.go │ │ │ ├── claude_test.go │ │ │ ├── config.go │ │ │ ├── constants.go │ │ │ ├── embeddings.go │ │ │ ├── error.go │ │ │ ├── main.go │ │ │ ├── main_test.go │ │ │ ├── model.go │ │ │ ├── openai.go │ │ │ └── openai_test.go │ │ ├── geminiopenai │ │ │ └── adaptor.go │ │ ├── groq │ │ │ ├── adaptor.go │ │ │ └── constants.go │ │ ├── interface.go │ │ ├── jina │ │ │ ├── adaptor.go │ │ │ ├── constants.go │ │ │ ├── embeddings.go │ │ │ ├── error.go │ │ │ └── rerank.go │ │ ├── lingyiwanwu │ │ │ ├── adaptor.go │ │ │ └── constants.go │ │ ├── minimax │ │ │ ├── adaptor.go │ │ │ ├── constants.go │ │ │ ├── error.go │ │ │ ├── key.go │ │ │ └── tts.go │ │ ├── mistral │ │ │ ├── adaptor.go │ │ │ └── constants.go │ │ ├── moonshot │ │ │ ├── adaptor.go │ │ │ ├── balance.go │ │ │ └── constants.go │ │ ├── novita │ │ │ ├── adaptor.go │ │ │ └── constants.go │ │ ├── ollama │ │ │ ├── adaptor.go │ │ │ ├── constants.go │ │ │ ├── error.go │ │ │ ├── main.go │ │ │ ├── main_test.go │ │ │ └── model.go │ │ ├── openai │ │ │ ├── adaptor.go │ │ │ ├── balance.go │ │ │ ├── chat.go │ │ │ ├── chat_test.go │ │ │ ├── claude.go │ │ │ ├── claude_test.go │ │ │ ├── constants.go │ │ │ ├── embeddings.go │ │ │ ├── error.go │ │ │ ├── gemini.go │ │ │ ├── gemini_test.go │ │ │ ├── gemini_to_responses_test.go │ │ │ ├── helper.go │ │ │ ├── image.go │ │ │ ├── integration_test.go │ │ │ ├── moderations.go │ │ │ ├── rerank.go │ │ │ ├── response.go │ │ │ ├── stt.go │ │ │ ├── token.go │ │ │ ├── tts.go │ │ │ └── video.go │ │ ├── openrouter │ │ │ └── adaptor.go │ │ ├── qianfan │ │ │ ├── adaptor.go │ │ │ └── error.go │ │ ├── sangforaicp │ │ │ └── adaptor.go │ │ ├── siliconflow │ │ │ ├── adaptor.go │ │ │ ├── balance.go │ │ │ ├── constants.go │ │ │ ├── error.go │ │ │ └── image.go │ │ ├── stepfun │ │ │ ├── adaptor.go │ │ │ └── constants.go │ │ ├── streamlake │ │ │ ├── adaptor.go │ │ │ └── constants.go │ │ ├── tencent │ │ │ ├── adaptor.go │ │ │ └── constants.go │ │ ├── text-embeddings-inference │ │ │ ├── adaptor.go │ │ │ ├── constants.go │ │ │ ├── embeddings.go │ │ │ ├── error.go │ │ │ ├── rerank.go │ │ │ └── rerank_test.go │ │ ├── utils.go │ │ ├── vertexai │ │ │ ├── adaptor.go │ │ │ ├── claude │ │ │ │ ├── adapter.go │ │ │ │ ├── constants.go │ │ │ │ └── model.go │ │ │ ├── gemini │ │ │ │ └── adapter.go │ │ │ ├── key.go │ │ │ ├── registry.go │ │ │ └── token.go │ │ ├── xai │ │ │ ├── adaptor.go │ │ │ ├── constants.go │ │ │ └── error.go │ │ ├── xunfei │ │ │ ├── adaptor.go │ │ │ ├── constants.go │ │ │ ├── key.go │ │ │ └── main.go │ │ ├── zhipu │ │ │ ├── adaptor.go │ │ │ ├── constants.go │ │ │ ├── main.go │ │ │ └── model.go │ │ └── zhipucoding │ │ │ └── adaptor.go │ ├── adaptors │ │ └── register.go │ ├── controller │ │ ├── anthropic.go │ │ ├── chat.go │ │ ├── completions.go │ │ ├── dohelper.go │ │ ├── edits.go │ │ ├── embed.go │ │ ├── gemini.go │ │ ├── handle.go │ │ ├── image.go │ │ ├── pdf.go │ │ ├── rerank.go │ │ ├── responses.go │ │ ├── stt.go │ │ ├── tts.go │ │ └── video.go │ ├── meta │ │ └── meta.go │ ├── mode │ │ └── define.go │ ├── model │ │ ├── anthropic.go │ │ ├── chat.go │ │ ├── chat_test.go │ │ ├── claude.go │ │ ├── claude_test.go │ │ ├── completions.go │ │ ├── constant.go │ │ ├── embed.go │ │ ├── errors.go │ │ ├── gemini.go │ │ ├── image.go │ │ ├── pdf.go │ │ ├── rerank.go │ │ ├── response.go │ │ ├── stt.go │ │ ├── tool.go │ │ ├── tts.go │ │ ├── usage_conversion_test.go │ │ └── video.go │ ├── plugin │ │ ├── cache │ │ │ ├── README.md │ │ │ ├── README.zh.md │ │ │ ├── cache.go │ │ │ └── config.go │ │ ├── monitor │ │ │ ├── group.go │ │ │ └── monitor.go │ │ ├── noop │ │ │ └── noop.go │ │ ├── patch │ │ │ ├── README.md │ │ │ ├── README.zh.md │ │ │ ├── config.go │ │ │ ├── example.json │ │ │ ├── patch.go │ │ │ └── patch_test.go │ │ ├── streamfake │ │ │ ├── README.cn.md │ │ │ ├── README.md │ │ │ ├── config.go │ │ │ └── fake.go │ │ ├── thinksplit │ │ │ ├── README.md │ │ │ ├── README.zh.md │ │ │ ├── config.go │ │ │ ├── split.go │ │ │ └── splitter │ │ │ │ ├── splitter.go │ │ │ │ └── think.go │ │ ├── timeout │ │ │ └── timeout.go │ │ ├── types.go │ │ └── web-search │ │ │ ├── README.md │ │ │ ├── README.zh.md │ │ │ ├── config.go │ │ │ ├── prompts │ │ │ ├── arxiv.md │ │ │ ├── chinese-internet.md │ │ │ ├── full.md │ │ │ ├── internet.md │ │ │ └── private.md │ │ │ └── search.go │ ├── render │ │ ├── claude.go │ │ ├── claudeevent.go │ │ ├── common.go │ │ ├── gemini.go │ │ ├── openai-responses.go │ │ └── openai.go │ └── utils │ │ ├── export_test.go │ │ ├── testreq.go │ │ ├── utils.go │ │ └── utils_test.go ├── router │ ├── api.go │ ├── main.go │ ├── mcp.go │ ├── relay.go │ ├── static.go │ └── swagger.go ├── scripts │ └── swag.sh ├── startup.go └── task │ └── task.go ├── docker-compose.yaml ├── docs └── images │ ├── dashboard.png │ └── logs.png ├── go.work ├── go.work.sum ├── mcp-servers ├── README.md ├── go.mod ├── go.sum ├── hosted │ ├── 12306 │ │ ├── 12306.go │ │ ├── README.cn.md │ │ ├── README.md │ │ ├── constants.go │ │ ├── handlers.go │ │ ├── init.go │ │ ├── model.go │ │ ├── parsers.go │ │ ├── tools.go │ │ └── utils.go │ ├── aiproxy-openapi │ │ ├── init.go │ │ └── openapi.go │ ├── amap │ │ ├── README.md │ │ ├── init.go │ │ └── main.go │ ├── baidu-map │ │ ├── README.md │ │ ├── init.go │ │ ├── modle.go │ │ └── server.go │ ├── bingcn │ │ ├── README.md │ │ ├── bingcn.go │ │ ├── engine.go │ │ ├── init.go │ │ └── webpage_fetcher.go │ ├── cloudflare │ │ ├── README.cn.md │ │ ├── README.md │ │ └── init.go │ ├── context7 │ │ ├── README.cn.md │ │ ├── README.md │ │ ├── init.go │ │ └── main.go │ ├── fetch │ │ ├── README.cn.md │ │ ├── README.md │ │ ├── fetch.go │ │ └── init.go │ ├── figma │ │ ├── README.cn.md │ │ ├── README.md │ │ ├── client.go │ │ ├── figma.go │ │ ├── init.go │ │ ├── parser.go │ │ └── types.go │ ├── firecrawl │ │ ├── README.cn.md │ │ ├── README.md │ │ ├── client.go │ │ ├── init.go │ │ ├── server.go │ │ └── tool.go │ ├── flomo │ │ ├── README.cn.md │ │ ├── README.md │ │ ├── flomo.go │ │ ├── init.go │ │ └── server.go │ ├── gezhe │ │ ├── README.cn.md │ │ ├── README.md │ │ ├── init.go │ │ └── main.go │ ├── gitee │ │ ├── README.cn.md │ │ ├── README.md │ │ ├── init.go │ │ └── main.go │ ├── github │ │ ├── README.cn.md │ │ ├── README.md │ │ ├── init.go │ │ └── main.go │ ├── gpt-vis │ │ ├── README.cn.md │ │ ├── README.md │ │ ├── init.go │ │ └── server.go │ ├── hefeng-weather │ │ ├── README.cn.md │ │ ├── README.md │ │ ├── init.go │ │ └── server.go │ ├── howtocook │ │ ├── README.cn.md │ │ ├── README.md │ │ ├── data.go │ │ ├── init.go │ │ ├── server.go │ │ └── types.go │ ├── jina-tools │ │ ├── README.cn.md │ │ ├── README.md │ │ ├── init.go │ │ └── jina.go │ ├── kuaidi100 │ │ ├── README.cn.md │ │ ├── README.md │ │ ├── init.go │ │ └── main.go │ ├── microsoftdocs │ │ ├── README.cn.md │ │ ├── README.md │ │ ├── init.go │ │ └── main.go │ ├── nothon │ │ ├── README.cn.md │ │ ├── README.md │ │ ├── client.go │ │ ├── init.go │ │ ├── markdown.go │ │ ├── notion.go │ │ ├── schemas.go │ │ ├── types.go │ │ └── utils.go │ ├── screenshotone │ │ ├── README.cn.md │ │ ├── README.md │ │ ├── init.go │ │ └── screenshotone.go │ ├── semgrep │ │ ├── README.cn.md │ │ ├── README.md │ │ ├── init.go │ │ └── main.go │ ├── tavily │ │ ├── README.cn.md │ │ ├── README.md │ │ ├── init.go │ │ └── server.go │ ├── time │ │ ├── README.cn.md │ │ ├── README.md │ │ ├── init.go │ │ └── time.go │ └── web-search │ │ ├── README.cn.md │ │ ├── README.md │ │ ├── engine │ │ ├── arxiv.go │ │ ├── bing.go │ │ ├── bingcn.go │ │ ├── google.go │ │ ├── searchxng.go │ │ └── types.go │ │ ├── features.md │ │ ├── init.go │ │ └── server.go ├── local │ ├── 1panel │ │ ├── README.cn.md │ │ ├── README.md │ │ └── init.go │ ├── ableton │ │ ├── README.cn.md │ │ ├── README.md │ │ └── init.go │ ├── academic-search │ │ ├── README.cn.md │ │ ├── README.md │ │ └── init.go │ ├── alibabacloud-dms │ │ ├── README.cn.md │ │ ├── README.md │ │ └── init.go │ ├── alipay │ │ ├── README.md │ │ └── init.go │ ├── allvoicelab │ │ ├── README.cn.md │ │ ├── README.md │ │ └── init.go │ ├── applescript │ │ ├── README.cn.md │ │ ├── README.md │ │ └── init.go │ ├── blender │ │ ├── README.cn.md │ │ ├── README.md │ │ └── init.go │ ├── brightdata │ │ ├── README.cn.md │ │ ├── README.md │ │ └── init.go │ ├── browserbase │ │ ├── README.cn.md │ │ ├── README.md │ │ └── init.go │ ├── cfworker │ │ ├── README.cn.md │ │ ├── README.md │ │ └── init.go │ ├── chatsum │ │ ├── README.cn.md │ │ ├── README.md │ │ └── init.go │ ├── code-sandbox │ │ ├── README.cn.md │ │ ├── README.md │ │ └── init.go │ ├── elasticsearch │ │ ├── README.cn.md │ │ ├── README.md │ │ └── init.go │ ├── everything-search │ │ ├── README.cn.md │ │ ├── README.md │ │ └── init.go │ ├── excel │ │ ├── README.cn.md │ │ ├── README.md │ │ └── init.go │ ├── filesystem │ │ ├── README.cn.md │ │ ├── README.md │ │ └── init.go │ ├── forevervm │ │ ├── README.cn.md │ │ ├── README.md │ │ └── init.go │ ├── genai-toolbox │ │ ├── README.cn.md │ │ ├── README.md │ │ └── init.go │ ├── git │ │ ├── README.cn.md │ │ ├── README.md │ │ └── init.go │ ├── grafana │ │ ├── README.cn.md │ │ ├── README.md │ │ └── init.go │ ├── hfspace │ │ ├── README.cn.md │ │ ├── README.md │ │ └── init.go │ ├── homeassistant │ │ ├── README.cn.md │ │ ├── README.md │ │ └── init.go │ ├── ical │ │ ├── README.cn.md │ │ ├── README.md │ │ └── init.go │ ├── knowledge-graph-memory │ │ ├── README.cn.md │ │ ├── README.md │ │ └── init.go │ ├── kubernetes │ │ ├── README.cn.md │ │ ├── README.md │ │ └── init.go │ ├── magic │ │ ├── README.cn.md │ │ ├── README.md │ │ └── init.go │ ├── markdownify │ │ ├── README.cn.md │ │ ├── README.md │ │ └── init.go │ ├── milvus │ │ ├── README.cn.md │ │ ├── README.md │ │ └── init.go │ ├── mysql │ │ ├── README.cn.md │ │ ├── README.md │ │ └── init.go │ ├── netdata │ │ ├── README.cn.md │ │ ├── README.md │ │ └── init.go │ ├── oceanbase │ │ ├── README.cn.md │ │ ├── README.md │ │ └── init.go │ ├── office-word │ │ ├── README.cn.md │ │ ├── README.md │ │ └── init.go │ ├── openmemory │ │ ├── README.cn.md │ │ ├── README.md │ │ └── init.go │ ├── playwright │ │ ├── README.cn.md │ │ ├── README.md │ │ └── init.go │ ├── puppeteer │ │ ├── README.cn.md │ │ ├── README.md │ │ └── init.go │ ├── query_table │ │ ├── README.cn.md │ │ ├── README.md │ │ └── init.go │ ├── redbook-search-comment │ │ ├── README.cn.md │ │ ├── README.md │ │ └── init.go │ ├── redis │ │ ├── README.cn.md │ │ ├── README.md │ │ └── init.go │ ├── sqlite │ │ ├── README.cn.md │ │ ├── README.md │ │ └── init.go │ ├── stock-analysis │ │ ├── README.cn.md │ │ ├── README.md │ │ └── init.go │ ├── terraform │ │ ├── README.cn.md │ │ ├── README.md │ │ └── init.go │ ├── unionpay │ │ ├── README.md │ │ └── init.go │ ├── weather │ │ ├── README.cn.md │ │ ├── README.md │ │ └── init.go │ ├── wecom-bot │ │ ├── README.cn.md │ │ ├── README.md │ │ └── init.go │ ├── xhs │ │ ├── README.cn.md │ │ ├── README.md │ │ └── init.go │ ├── xiyan │ │ ├── README.cn.md │ │ ├── README.md │ │ └── init.go │ └── zhipuai │ │ ├── README.cn.md │ │ ├── README.md │ │ └── init.go ├── mcp.go ├── mcpregister │ ├── hosted.go │ └── local.go ├── register.go ├── server.go └── tools.go ├── openapi-mcp ├── README.md ├── convert │ ├── convert.go │ └── parser.go ├── go.mod ├── go.sum └── main.go ├── scripts ├── golangci-lint-fix.sh └── update-go-mod.sh └── web ├── .env.template ├── .gitignore ├── README.md ├── components.json ├── context.md ├── eslint.config.js ├── index.html ├── openapi.txt ├── package.json ├── pnpm-lock.yaml ├── prompt.txt ├── public ├── locales │ ├── en │ │ └── translation.json │ └── zh │ │ └── translation.json └── logo.svg ├── src ├── App.tsx ├── api │ ├── auth.ts │ ├── channel.ts │ ├── dashboard.ts │ ├── index.ts │ ├── log.ts │ ├── mcp.ts │ ├── model.ts │ ├── services.ts │ └── token.ts ├── assets │ └── react.svg ├── components │ ├── common │ │ ├── CopyButton.tsx │ │ ├── Date.tsx │ │ ├── DateRangePicker.tsx │ │ ├── LanguageSelector.tsx │ │ ├── LoadingFallBack.tsx │ │ ├── ThemeToggle.tsx │ │ └── error │ │ │ ├── errorConfig.tsx │ │ │ ├── errorDisplay.tsx │ │ │ ├── errorTypes.ts │ │ │ └── validationErrorDisplay.tsx │ ├── layout │ │ ├── AnimatedRoute.tsx │ │ ├── RootLayOut.tsx │ │ └── SideBar.tsx │ ├── select │ │ ├── ConstructMappingComponent.tsx │ │ ├── MultiSelectCombobox.tsx │ │ ├── Select.tsx │ │ └── SingleSelectCombobox.tsx │ ├── table │ │ ├── column-header.tsx │ │ ├── column-toggle.tsx │ │ ├── data-table.tsx │ │ ├── motion-data-table.tsx │ │ └── pagination.tsx │ └── ui │ │ ├── alert-dialog.tsx │ │ ├── alert.tsx │ │ ├── animation │ │ ├── button-animation.ts │ │ ├── collapse-animation.ts │ │ ├── components │ │ │ ├── animated-button.tsx │ │ │ ├── animated-container.tsx │ │ │ ├── animated-icon.tsx │ │ │ ├── collapse.tsx │ │ │ ├── display.tsx │ │ │ ├── particles-background.tsx │ │ │ ├── tab-animation.tsx │ │ │ └── table-scroll.tsx │ │ ├── container-animation.ts │ │ ├── dialog-animation.ts │ │ ├── display-animation.ts │ │ ├── grid-animation.ts │ │ ├── icon-animation.ts │ │ ├── route-animation.ts │ │ └── tab-animation.ts │ │ ├── avatar.tsx │ │ ├── badge.tsx │ │ ├── button.tsx │ │ ├── calendar.tsx │ │ ├── card.tsx │ │ ├── collapsible.tsx │ │ ├── dialog.tsx │ │ ├── drawer.tsx │ │ ├── dropdown-menu.tsx │ │ ├── echarts.tsx │ │ ├── form.tsx │ │ ├── input.tsx │ │ ├── label.tsx │ │ ├── popover.tsx │ │ ├── select.tsx │ │ ├── separator.tsx │ │ ├── sheet.tsx │ │ ├── skeleton.tsx │ │ ├── sonner.tsx │ │ ├── switch.tsx │ │ ├── table.tsx │ │ ├── tabs.tsx │ │ ├── textarea.tsx │ │ ├── tooltip.tsx │ │ └── use-toast.tsx ├── constant │ └── index.ts ├── feature │ ├── auth │ │ ├── components │ │ │ └── ProtectedRoute.tsx │ │ └── hooks.ts │ ├── channel │ │ ├── components │ │ │ ├── ChannelDialog.tsx │ │ │ ├── ChannelForm.tsx │ │ │ ├── ChannelTable.tsx │ │ │ └── DeleteChannelDialog.tsx │ │ └── hooks.ts │ ├── log │ │ ├── components │ │ │ ├── ExpandedLogContent.tsx │ │ │ ├── JsonViewer.tsx │ │ │ ├── LogFilters.tsx │ │ │ └── LogTable.tsx │ │ └── hooks.ts │ ├── model │ │ ├── components │ │ │ ├── DeleteModelDialog.tsx │ │ │ ├── ModelDialog.tsx │ │ │ ├── ModelForm.tsx │ │ │ ├── ModelTable.tsx │ │ │ └── api-doc │ │ │ │ ├── ApiDoc.tsx │ │ │ │ └── CodeHight.tsx │ │ └── hooks.ts │ ├── monitor │ │ ├── components │ │ │ ├── MetricsCards.tsx │ │ │ ├── MonitorCharts.tsx │ │ │ └── MonitorFilters.tsx │ │ └── hooks.ts │ └── token │ │ ├── components │ │ ├── DeleteTokenDialog.tsx │ │ ├── TokenDialog.tsx │ │ ├── TokenForm.tsx │ │ └── TokenTable.tsx │ │ └── hooks.ts ├── handler │ ├── ErrorBoundary.tsx │ ├── ThemeContext.tsx │ └── ThemeProvider.tsx ├── i18n.ts ├── index.css ├── lib │ └── utils.ts ├── main.tsx ├── pages │ ├── auth │ │ └── login.tsx │ ├── channel │ │ └── page.tsx │ ├── log │ │ └── page.tsx │ ├── mcp │ │ ├── components │ │ │ ├── EmbedMCP.tsx │ │ │ ├── MCPConfig.tsx │ │ │ ├── MCPList.tsx │ │ │ └── config │ │ │ │ ├── OpenAPIConfig.tsx │ │ │ │ └── ProxyConfig.tsx │ │ └── page.tsx │ ├── model │ │ └── page.tsx │ ├── monitor │ │ └── page.tsx │ └── token │ │ └── page.tsx ├── routes │ ├── config.tsx │ ├── constants.ts │ └── index.tsx ├── store │ └── auth.ts ├── types │ ├── channel.ts │ ├── dashboard.ts │ ├── global.d.ts │ ├── i18next.d.ts │ ├── log.ts │ ├── model.ts │ └── token.ts ├── utils │ └── env.ts ├── validation │ ├── auth.ts │ ├── channel.ts │ ├── dashboard.ts │ ├── log.ts │ ├── model.ts │ └── token.ts └── vite-env.d.ts ├── tailwind.config.js ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/scripts/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/.github/scripts/install.sh -------------------------------------------------------------------------------- /.github/workflows/check-semgrep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/.github/workflows/check-semgrep.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/.gitignore -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/.golangci.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/README.md -------------------------------------------------------------------------------- /README.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/README.zh.md -------------------------------------------------------------------------------- /config.example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/config.example.yaml -------------------------------------------------------------------------------- /config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/config.md -------------------------------------------------------------------------------- /core/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/.gitignore -------------------------------------------------------------------------------- /core/common/audio/audio.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/common/audio/audio.go -------------------------------------------------------------------------------- /core/common/audio/audio_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/common/audio/audio_test.go -------------------------------------------------------------------------------- /core/common/audio/export_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/common/audio/export_test.go -------------------------------------------------------------------------------- /core/common/balance/balance.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/common/balance/balance.go -------------------------------------------------------------------------------- /core/common/balance/mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/common/balance/mock.go -------------------------------------------------------------------------------- /core/common/balance/sealos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/common/balance/sealos.go -------------------------------------------------------------------------------- /core/common/body.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/common/body.go -------------------------------------------------------------------------------- /core/common/color.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/common/color.go -------------------------------------------------------------------------------- /core/common/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/common/config/config.go -------------------------------------------------------------------------------- /core/common/config/env.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/common/config/env.go -------------------------------------------------------------------------------- /core/common/config/yaml_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/common/config/yaml_config.go -------------------------------------------------------------------------------- /core/common/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/common/constants.go -------------------------------------------------------------------------------- /core/common/consume/consume.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/common/consume/consume.go -------------------------------------------------------------------------------- /core/common/consume/consume_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/common/consume/consume_test.go -------------------------------------------------------------------------------- /core/common/consume/record.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/common/consume/record.go -------------------------------------------------------------------------------- /core/common/conv/any.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/common/conv/any.go -------------------------------------------------------------------------------- /core/common/conv/any_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/common/conv/any_test.go -------------------------------------------------------------------------------- /core/common/database.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/common/database.go -------------------------------------------------------------------------------- /core/common/env/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/common/env/helper.go -------------------------------------------------------------------------------- /core/common/gin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/common/gin.go -------------------------------------------------------------------------------- /core/common/gin_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/common/gin_test.go -------------------------------------------------------------------------------- /core/common/image/image.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/common/image/image.go -------------------------------------------------------------------------------- /core/common/image/image_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/common/image/image_test.go -------------------------------------------------------------------------------- /core/common/image/svg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/common/image/svg.go -------------------------------------------------------------------------------- /core/common/ipblack/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/common/ipblack/main.go -------------------------------------------------------------------------------- /core/common/ipblack/mem.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/common/ipblack/mem.go -------------------------------------------------------------------------------- /core/common/ipblack/redis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/common/ipblack/redis.go -------------------------------------------------------------------------------- /core/common/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/common/log.go -------------------------------------------------------------------------------- /core/common/network/ip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/common/network/ip.go -------------------------------------------------------------------------------- /core/common/network/ip_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/common/network/ip_test.go -------------------------------------------------------------------------------- /core/common/notify/feishu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/common/notify/feishu.go -------------------------------------------------------------------------------- /core/common/notify/feishu_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/common/notify/feishu_test.go -------------------------------------------------------------------------------- /core/common/notify/notify.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/common/notify/notify.go -------------------------------------------------------------------------------- /core/common/notify/std.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/common/notify/std.go -------------------------------------------------------------------------------- /core/common/pprof/pprof.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/common/pprof/pprof.go -------------------------------------------------------------------------------- /core/common/redis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/common/redis.go -------------------------------------------------------------------------------- /core/common/reqlimit/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/common/reqlimit/main.go -------------------------------------------------------------------------------- /core/common/reqlimit/mem.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/common/reqlimit/mem.go -------------------------------------------------------------------------------- /core/common/reqlimit/mem_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/common/reqlimit/mem_test.go -------------------------------------------------------------------------------- /core/common/reqlimit/redis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/common/reqlimit/redis.go -------------------------------------------------------------------------------- /core/common/tiktoken/tiktoken.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/common/tiktoken/tiktoken.go -------------------------------------------------------------------------------- /core/common/tiktoken/tiktoken_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/common/tiktoken/tiktoken_test.go -------------------------------------------------------------------------------- /core/common/trunc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/common/trunc.go -------------------------------------------------------------------------------- /core/common/trunc_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/common/trunc_test.go -------------------------------------------------------------------------------- /core/common/trylock/lock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/common/trylock/lock.go -------------------------------------------------------------------------------- /core/common/trylock/lock_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/common/trylock/lock_test.go -------------------------------------------------------------------------------- /core/common/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/common/utils.go -------------------------------------------------------------------------------- /core/common/utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/common/utils_test.go -------------------------------------------------------------------------------- /core/controller/channel-billing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/controller/channel-billing.go -------------------------------------------------------------------------------- /core/controller/channel-test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/controller/channel-test.go -------------------------------------------------------------------------------- /core/controller/channel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/controller/channel.go -------------------------------------------------------------------------------- /core/controller/dashboard.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/controller/dashboard.go -------------------------------------------------------------------------------- /core/controller/group.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/controller/group.go -------------------------------------------------------------------------------- /core/controller/import.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/controller/import.go -------------------------------------------------------------------------------- /core/controller/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/controller/log.go -------------------------------------------------------------------------------- /core/controller/mcp/embedmcp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/controller/mcp/embedmcp.go -------------------------------------------------------------------------------- /core/controller/mcp/groupmcp-server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/controller/mcp/groupmcp-server.go -------------------------------------------------------------------------------- /core/controller/mcp/groupmcp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/controller/mcp/groupmcp.go -------------------------------------------------------------------------------- /core/controller/mcp/host.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/controller/mcp/host.go -------------------------------------------------------------------------------- /core/controller/mcp/mcp-mpsc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/controller/mcp/mcp-mpsc.go -------------------------------------------------------------------------------- /core/controller/mcp/mcp-store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/controller/mcp/mcp-store.go -------------------------------------------------------------------------------- /core/controller/mcp/mcp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/controller/mcp/mcp.go -------------------------------------------------------------------------------- /core/controller/mcp/publicmcp-group.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/controller/mcp/publicmcp-group.go -------------------------------------------------------------------------------- /core/controller/mcp/publicmcp-server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/controller/mcp/publicmcp-server.go -------------------------------------------------------------------------------- /core/controller/mcp/publicmcp-tool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/controller/mcp/publicmcp-tool.go -------------------------------------------------------------------------------- /core/controller/mcp/publicmcp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/controller/mcp/publicmcp.go -------------------------------------------------------------------------------- /core/controller/mcp/reusing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/controller/mcp/reusing.go -------------------------------------------------------------------------------- /core/controller/misc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/controller/misc.go -------------------------------------------------------------------------------- /core/controller/model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/controller/model.go -------------------------------------------------------------------------------- /core/controller/modelconfig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/controller/modelconfig.go -------------------------------------------------------------------------------- /core/controller/monitor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/controller/monitor.go -------------------------------------------------------------------------------- /core/controller/option.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/controller/option.go -------------------------------------------------------------------------------- /core/controller/relay-channel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/controller/relay-channel.go -------------------------------------------------------------------------------- /core/controller/relay-controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/controller/relay-controller.go -------------------------------------------------------------------------------- /core/controller/relay-dashboard.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/controller/relay-dashboard.go -------------------------------------------------------------------------------- /core/controller/relay-model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/controller/relay-model.go -------------------------------------------------------------------------------- /core/controller/relay.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/controller/relay.go -------------------------------------------------------------------------------- /core/controller/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/controller/token.go -------------------------------------------------------------------------------- /core/controller/utils/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/controller/utils/utils.go -------------------------------------------------------------------------------- /core/controller/utils/utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/controller/utils/utils_test.go -------------------------------------------------------------------------------- /core/deploy/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/deploy/Kubefile -------------------------------------------------------------------------------- /core/deploy/charts/aiproxy-database/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/deploy/charts/aiproxy-database/.helmignore -------------------------------------------------------------------------------- /core/deploy/charts/aiproxy-database/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/deploy/charts/aiproxy-database/Chart.yaml -------------------------------------------------------------------------------- /core/deploy/charts/aiproxy-database/templates/NOTES.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/deploy/charts/aiproxy-database/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/deploy/charts/aiproxy-database/values.yaml -------------------------------------------------------------------------------- /core/deploy/charts/aiproxy/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/deploy/charts/aiproxy/.helmignore -------------------------------------------------------------------------------- /core/deploy/charts/aiproxy/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/deploy/charts/aiproxy/Chart.yaml -------------------------------------------------------------------------------- /core/deploy/charts/aiproxy/templates/NOTES.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/deploy/charts/aiproxy/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/deploy/charts/aiproxy/templates/_helpers.tpl -------------------------------------------------------------------------------- /core/deploy/charts/aiproxy/templates/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/deploy/charts/aiproxy/templates/app.yaml -------------------------------------------------------------------------------- /core/deploy/charts/aiproxy/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/deploy/charts/aiproxy/templates/configmap.yaml -------------------------------------------------------------------------------- /core/deploy/charts/aiproxy/templates/deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/deploy/charts/aiproxy/templates/deploy.yaml -------------------------------------------------------------------------------- /core/deploy/charts/aiproxy/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/deploy/charts/aiproxy/templates/ingress.yaml -------------------------------------------------------------------------------- /core/deploy/charts/aiproxy/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/deploy/charts/aiproxy/values.yaml -------------------------------------------------------------------------------- /core/deploy/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/deploy/install.sh -------------------------------------------------------------------------------- /core/docs/docs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/docs/docs.go -------------------------------------------------------------------------------- /core/docs/swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/docs/swagger.json -------------------------------------------------------------------------------- /core/docs/swagger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/docs/swagger.yaml -------------------------------------------------------------------------------- /core/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/go.mod -------------------------------------------------------------------------------- /core/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/go.sum -------------------------------------------------------------------------------- /core/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/main.go -------------------------------------------------------------------------------- /core/mcpproxy/session.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/mcpproxy/session.go -------------------------------------------------------------------------------- /core/mcpproxy/sse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/mcpproxy/sse.go -------------------------------------------------------------------------------- /core/mcpproxy/stateless-streamable.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/mcpproxy/stateless-streamable.go -------------------------------------------------------------------------------- /core/mcpproxy/streamable.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/mcpproxy/streamable.go -------------------------------------------------------------------------------- /core/middleware/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/middleware/auth.go -------------------------------------------------------------------------------- /core/middleware/cors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/middleware/cors.go -------------------------------------------------------------------------------- /core/middleware/ctxkey.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/middleware/ctxkey.go -------------------------------------------------------------------------------- /core/middleware/distributor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/middleware/distributor.go -------------------------------------------------------------------------------- /core/middleware/distributor_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/middleware/distributor_test.go -------------------------------------------------------------------------------- /core/middleware/ipblack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/middleware/ipblack.go -------------------------------------------------------------------------------- /core/middleware/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/middleware/log.go -------------------------------------------------------------------------------- /core/middleware/mcp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/middleware/mcp.go -------------------------------------------------------------------------------- /core/middleware/recover.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/middleware/recover.go -------------------------------------------------------------------------------- /core/middleware/reqid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/middleware/reqid.go -------------------------------------------------------------------------------- /core/middleware/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/middleware/utils.go -------------------------------------------------------------------------------- /core/model/batch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/model/batch.go -------------------------------------------------------------------------------- /core/model/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/model/cache.go -------------------------------------------------------------------------------- /core/model/channel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/model/channel.go -------------------------------------------------------------------------------- /core/model/channeltest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/model/channeltest.go -------------------------------------------------------------------------------- /core/model/chtype.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/model/chtype.go -------------------------------------------------------------------------------- /core/model/configkey.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/model/configkey.go -------------------------------------------------------------------------------- /core/model/consumeerr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/model/consumeerr.go -------------------------------------------------------------------------------- /core/model/export_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/model/export_test.go -------------------------------------------------------------------------------- /core/model/group.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/model/group.go -------------------------------------------------------------------------------- /core/model/groupmcp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/model/groupmcp.go -------------------------------------------------------------------------------- /core/model/groupmodel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/model/groupmodel.go -------------------------------------------------------------------------------- /core/model/groupsummary-minute.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/model/groupsummary-minute.go -------------------------------------------------------------------------------- /core/model/groupsummary.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/model/groupsummary.go -------------------------------------------------------------------------------- /core/model/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/model/log.go -------------------------------------------------------------------------------- /core/model/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/model/main.go -------------------------------------------------------------------------------- /core/model/modelconfig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/model/modelconfig.go -------------------------------------------------------------------------------- /core/model/option.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/model/option.go -------------------------------------------------------------------------------- /core/model/owner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/model/owner.go -------------------------------------------------------------------------------- /core/model/publicmcp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/model/publicmcp.go -------------------------------------------------------------------------------- /core/model/retrylog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/model/retrylog.go -------------------------------------------------------------------------------- /core/model/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/model/store.go -------------------------------------------------------------------------------- /core/model/summary-minute.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/model/summary-minute.go -------------------------------------------------------------------------------- /core/model/summary.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/model/summary.go -------------------------------------------------------------------------------- /core/model/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/model/token.go -------------------------------------------------------------------------------- /core/model/usage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/model/usage.go -------------------------------------------------------------------------------- /core/model/usage_alert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/model/usage_alert.go -------------------------------------------------------------------------------- /core/model/usage_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/model/usage_test.go -------------------------------------------------------------------------------- /core/model/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/model/utils.go -------------------------------------------------------------------------------- /core/model/utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/model/utils_test.go -------------------------------------------------------------------------------- /core/model/yaml_integration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/model/yaml_integration.go -------------------------------------------------------------------------------- /core/monitor/memmodel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/monitor/memmodel.go -------------------------------------------------------------------------------- /core/monitor/model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/monitor/model.go -------------------------------------------------------------------------------- /core/public/dist/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/public/public.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/public/public.go -------------------------------------------------------------------------------- /core/public/templates/index.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/public/templates/index.tmpl -------------------------------------------------------------------------------- /core/relay/adaptor/ai360/adaptor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/ai360/adaptor.go -------------------------------------------------------------------------------- /core/relay/adaptor/ai360/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/ai360/constants.go -------------------------------------------------------------------------------- /core/relay/adaptor/ali/adaptor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/ali/adaptor.go -------------------------------------------------------------------------------- /core/relay/adaptor/ali/chat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/ali/chat.go -------------------------------------------------------------------------------- /core/relay/adaptor/ali/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/ali/constants.go -------------------------------------------------------------------------------- /core/relay/adaptor/ali/embed.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/ali/embed.go -------------------------------------------------------------------------------- /core/relay/adaptor/ali/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/ali/error.go -------------------------------------------------------------------------------- /core/relay/adaptor/ali/image.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/ali/image.go -------------------------------------------------------------------------------- /core/relay/adaptor/ali/model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/ali/model.go -------------------------------------------------------------------------------- /core/relay/adaptor/ali/rerank.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/ali/rerank.go -------------------------------------------------------------------------------- /core/relay/adaptor/ali/stt-realtime.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/ali/stt-realtime.go -------------------------------------------------------------------------------- /core/relay/adaptor/ali/tts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/ali/tts.go -------------------------------------------------------------------------------- /core/relay/adaptor/anthropic/adaptor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/anthropic/adaptor.go -------------------------------------------------------------------------------- /core/relay/adaptor/anthropic/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/anthropic/constants.go -------------------------------------------------------------------------------- /core/relay/adaptor/anthropic/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/anthropic/error.go -------------------------------------------------------------------------------- /core/relay/adaptor/anthropic/gemini.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/anthropic/gemini.go -------------------------------------------------------------------------------- /core/relay/adaptor/anthropic/gemini_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/anthropic/gemini_test.go -------------------------------------------------------------------------------- /core/relay/adaptor/anthropic/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/anthropic/main.go -------------------------------------------------------------------------------- /core/relay/adaptor/anthropic/openai.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/anthropic/openai.go -------------------------------------------------------------------------------- /core/relay/adaptor/anthropic/openai_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/anthropic/openai_test.go -------------------------------------------------------------------------------- /core/relay/adaptor/anthropic/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/anthropic/utils.go -------------------------------------------------------------------------------- /core/relay/adaptor/aws/adaptor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/aws/adaptor.go -------------------------------------------------------------------------------- /core/relay/adaptor/aws/claude/adapter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/aws/claude/adapter.go -------------------------------------------------------------------------------- /core/relay/adaptor/aws/claude/claude.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/aws/claude/claude.go -------------------------------------------------------------------------------- /core/relay/adaptor/aws/claude/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/aws/claude/error.go -------------------------------------------------------------------------------- /core/relay/adaptor/aws/claude/model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/aws/claude/model.go -------------------------------------------------------------------------------- /core/relay/adaptor/aws/claude/openai.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/aws/claude/openai.go -------------------------------------------------------------------------------- /core/relay/adaptor/aws/key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/aws/key.go -------------------------------------------------------------------------------- /core/relay/adaptor/aws/registry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/aws/registry.go -------------------------------------------------------------------------------- /core/relay/adaptor/aws/utils/adaptor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/aws/utils/adaptor.go -------------------------------------------------------------------------------- /core/relay/adaptor/aws/utils/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/aws/utils/client.go -------------------------------------------------------------------------------- /core/relay/adaptor/azure/key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/azure/key.go -------------------------------------------------------------------------------- /core/relay/adaptor/azure/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/azure/main.go -------------------------------------------------------------------------------- /core/relay/adaptor/azure/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/azure/main_test.go -------------------------------------------------------------------------------- /core/relay/adaptor/azure2/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/azure2/main.go -------------------------------------------------------------------------------- /core/relay/adaptor/baichuan/adaptor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/baichuan/adaptor.go -------------------------------------------------------------------------------- /core/relay/adaptor/baichuan/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/baichuan/constants.go -------------------------------------------------------------------------------- /core/relay/adaptor/baidu/adaptor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/baidu/adaptor.go -------------------------------------------------------------------------------- /core/relay/adaptor/baidu/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/baidu/constants.go -------------------------------------------------------------------------------- /core/relay/adaptor/baidu/embeddings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/baidu/embeddings.go -------------------------------------------------------------------------------- /core/relay/adaptor/baidu/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/baidu/error.go -------------------------------------------------------------------------------- /core/relay/adaptor/baidu/image.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/baidu/image.go -------------------------------------------------------------------------------- /core/relay/adaptor/baidu/key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/baidu/key.go -------------------------------------------------------------------------------- /core/relay/adaptor/baidu/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/baidu/main.go -------------------------------------------------------------------------------- /core/relay/adaptor/baidu/model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/baidu/model.go -------------------------------------------------------------------------------- /core/relay/adaptor/baidu/rerank.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/baidu/rerank.go -------------------------------------------------------------------------------- /core/relay/adaptor/baidu/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/baidu/token.go -------------------------------------------------------------------------------- /core/relay/adaptor/baiduv2/adaptor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/baiduv2/adaptor.go -------------------------------------------------------------------------------- /core/relay/adaptor/baiduv2/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/baiduv2/constants.go -------------------------------------------------------------------------------- /core/relay/adaptor/baiduv2/key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/baiduv2/key.go -------------------------------------------------------------------------------- /core/relay/adaptor/baiduv2/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/baiduv2/token.go -------------------------------------------------------------------------------- /core/relay/adaptor/cloudflare/adaptor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/cloudflare/adaptor.go -------------------------------------------------------------------------------- /core/relay/adaptor/cloudflare/constant.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/cloudflare/constant.go -------------------------------------------------------------------------------- /core/relay/adaptor/cohere/adaptor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/cohere/adaptor.go -------------------------------------------------------------------------------- /core/relay/adaptor/cohere/constant.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/cohere/constant.go -------------------------------------------------------------------------------- /core/relay/adaptor/cohere/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/cohere/main.go -------------------------------------------------------------------------------- /core/relay/adaptor/cohere/model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/cohere/model.go -------------------------------------------------------------------------------- /core/relay/adaptor/coze/adaptor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/coze/adaptor.go -------------------------------------------------------------------------------- /core/relay/adaptor/coze/constant/event/define.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/coze/constant/event/define.go -------------------------------------------------------------------------------- /core/relay/adaptor/coze/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/coze/constants.go -------------------------------------------------------------------------------- /core/relay/adaptor/coze/key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/coze/key.go -------------------------------------------------------------------------------- /core/relay/adaptor/coze/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/coze/main.go -------------------------------------------------------------------------------- /core/relay/adaptor/coze/model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/coze/model.go -------------------------------------------------------------------------------- /core/relay/adaptor/deepseek/adaptor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/deepseek/adaptor.go -------------------------------------------------------------------------------- /core/relay/adaptor/deepseek/balance.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/deepseek/balance.go -------------------------------------------------------------------------------- /core/relay/adaptor/deepseek/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/deepseek/constants.go -------------------------------------------------------------------------------- /core/relay/adaptor/doc2x/adaptor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/doc2x/adaptor.go -------------------------------------------------------------------------------- /core/relay/adaptor/doc2x/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/doc2x/constants.go -------------------------------------------------------------------------------- /core/relay/adaptor/doc2x/html2md_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/doc2x/html2md_test.go -------------------------------------------------------------------------------- /core/relay/adaptor/doc2x/pdf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/doc2x/pdf.go -------------------------------------------------------------------------------- /core/relay/adaptor/doubao/chat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/doubao/chat.go -------------------------------------------------------------------------------- /core/relay/adaptor/doubao/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/doubao/constants.go -------------------------------------------------------------------------------- /core/relay/adaptor/doubao/embed.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/doubao/embed.go -------------------------------------------------------------------------------- /core/relay/adaptor/doubao/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/doubao/main.go -------------------------------------------------------------------------------- /core/relay/adaptor/doubaoaudio/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/doubaoaudio/constants.go -------------------------------------------------------------------------------- /core/relay/adaptor/doubaoaudio/key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/doubaoaudio/key.go -------------------------------------------------------------------------------- /core/relay/adaptor/doubaoaudio/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/doubaoaudio/main.go -------------------------------------------------------------------------------- /core/relay/adaptor/doubaoaudio/tts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/doubaoaudio/tts.go -------------------------------------------------------------------------------- /core/relay/adaptor/gemini/adaptor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/gemini/adaptor.go -------------------------------------------------------------------------------- /core/relay/adaptor/gemini/claude.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/gemini/claude.go -------------------------------------------------------------------------------- /core/relay/adaptor/gemini/claude_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/gemini/claude_test.go -------------------------------------------------------------------------------- /core/relay/adaptor/gemini/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/gemini/config.go -------------------------------------------------------------------------------- /core/relay/adaptor/gemini/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/gemini/constants.go -------------------------------------------------------------------------------- /core/relay/adaptor/gemini/embeddings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/gemini/embeddings.go -------------------------------------------------------------------------------- /core/relay/adaptor/gemini/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/gemini/error.go -------------------------------------------------------------------------------- /core/relay/adaptor/gemini/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/gemini/main.go -------------------------------------------------------------------------------- /core/relay/adaptor/gemini/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/gemini/main_test.go -------------------------------------------------------------------------------- /core/relay/adaptor/gemini/model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/gemini/model.go -------------------------------------------------------------------------------- /core/relay/adaptor/gemini/openai.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/gemini/openai.go -------------------------------------------------------------------------------- /core/relay/adaptor/gemini/openai_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/gemini/openai_test.go -------------------------------------------------------------------------------- /core/relay/adaptor/geminiopenai/adaptor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/geminiopenai/adaptor.go -------------------------------------------------------------------------------- /core/relay/adaptor/groq/adaptor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/groq/adaptor.go -------------------------------------------------------------------------------- /core/relay/adaptor/groq/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/groq/constants.go -------------------------------------------------------------------------------- /core/relay/adaptor/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/interface.go -------------------------------------------------------------------------------- /core/relay/adaptor/jina/adaptor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/jina/adaptor.go -------------------------------------------------------------------------------- /core/relay/adaptor/jina/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/jina/constants.go -------------------------------------------------------------------------------- /core/relay/adaptor/jina/embeddings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/jina/embeddings.go -------------------------------------------------------------------------------- /core/relay/adaptor/jina/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/jina/error.go -------------------------------------------------------------------------------- /core/relay/adaptor/jina/rerank.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/jina/rerank.go -------------------------------------------------------------------------------- /core/relay/adaptor/lingyiwanwu/adaptor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/lingyiwanwu/adaptor.go -------------------------------------------------------------------------------- /core/relay/adaptor/lingyiwanwu/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/lingyiwanwu/constants.go -------------------------------------------------------------------------------- /core/relay/adaptor/minimax/adaptor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/minimax/adaptor.go -------------------------------------------------------------------------------- /core/relay/adaptor/minimax/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/minimax/constants.go -------------------------------------------------------------------------------- /core/relay/adaptor/minimax/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/minimax/error.go -------------------------------------------------------------------------------- /core/relay/adaptor/minimax/key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/minimax/key.go -------------------------------------------------------------------------------- /core/relay/adaptor/minimax/tts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/minimax/tts.go -------------------------------------------------------------------------------- /core/relay/adaptor/mistral/adaptor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/mistral/adaptor.go -------------------------------------------------------------------------------- /core/relay/adaptor/mistral/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/mistral/constants.go -------------------------------------------------------------------------------- /core/relay/adaptor/moonshot/adaptor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/moonshot/adaptor.go -------------------------------------------------------------------------------- /core/relay/adaptor/moonshot/balance.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/moonshot/balance.go -------------------------------------------------------------------------------- /core/relay/adaptor/moonshot/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/moonshot/constants.go -------------------------------------------------------------------------------- /core/relay/adaptor/novita/adaptor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/novita/adaptor.go -------------------------------------------------------------------------------- /core/relay/adaptor/novita/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/novita/constants.go -------------------------------------------------------------------------------- /core/relay/adaptor/ollama/adaptor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/ollama/adaptor.go -------------------------------------------------------------------------------- /core/relay/adaptor/ollama/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/ollama/constants.go -------------------------------------------------------------------------------- /core/relay/adaptor/ollama/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/ollama/error.go -------------------------------------------------------------------------------- /core/relay/adaptor/ollama/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/ollama/main.go -------------------------------------------------------------------------------- /core/relay/adaptor/ollama/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/ollama/main_test.go -------------------------------------------------------------------------------- /core/relay/adaptor/ollama/model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/ollama/model.go -------------------------------------------------------------------------------- /core/relay/adaptor/openai/adaptor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/openai/adaptor.go -------------------------------------------------------------------------------- /core/relay/adaptor/openai/balance.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/openai/balance.go -------------------------------------------------------------------------------- /core/relay/adaptor/openai/chat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/openai/chat.go -------------------------------------------------------------------------------- /core/relay/adaptor/openai/chat_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/openai/chat_test.go -------------------------------------------------------------------------------- /core/relay/adaptor/openai/claude.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/openai/claude.go -------------------------------------------------------------------------------- /core/relay/adaptor/openai/claude_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/openai/claude_test.go -------------------------------------------------------------------------------- /core/relay/adaptor/openai/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/openai/constants.go -------------------------------------------------------------------------------- /core/relay/adaptor/openai/embeddings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/openai/embeddings.go -------------------------------------------------------------------------------- /core/relay/adaptor/openai/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/openai/error.go -------------------------------------------------------------------------------- /core/relay/adaptor/openai/gemini.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/openai/gemini.go -------------------------------------------------------------------------------- /core/relay/adaptor/openai/gemini_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/openai/gemini_test.go -------------------------------------------------------------------------------- /core/relay/adaptor/openai/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/openai/helper.go -------------------------------------------------------------------------------- /core/relay/adaptor/openai/image.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/openai/image.go -------------------------------------------------------------------------------- /core/relay/adaptor/openai/integration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/openai/integration_test.go -------------------------------------------------------------------------------- /core/relay/adaptor/openai/moderations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/openai/moderations.go -------------------------------------------------------------------------------- /core/relay/adaptor/openai/rerank.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/openai/rerank.go -------------------------------------------------------------------------------- /core/relay/adaptor/openai/response.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/openai/response.go -------------------------------------------------------------------------------- /core/relay/adaptor/openai/stt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/openai/stt.go -------------------------------------------------------------------------------- /core/relay/adaptor/openai/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/openai/token.go -------------------------------------------------------------------------------- /core/relay/adaptor/openai/tts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/openai/tts.go -------------------------------------------------------------------------------- /core/relay/adaptor/openai/video.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/openai/video.go -------------------------------------------------------------------------------- /core/relay/adaptor/openrouter/adaptor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/openrouter/adaptor.go -------------------------------------------------------------------------------- /core/relay/adaptor/qianfan/adaptor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/qianfan/adaptor.go -------------------------------------------------------------------------------- /core/relay/adaptor/qianfan/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/qianfan/error.go -------------------------------------------------------------------------------- /core/relay/adaptor/sangforaicp/adaptor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/sangforaicp/adaptor.go -------------------------------------------------------------------------------- /core/relay/adaptor/siliconflow/adaptor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/siliconflow/adaptor.go -------------------------------------------------------------------------------- /core/relay/adaptor/siliconflow/balance.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/siliconflow/balance.go -------------------------------------------------------------------------------- /core/relay/adaptor/siliconflow/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/siliconflow/constants.go -------------------------------------------------------------------------------- /core/relay/adaptor/siliconflow/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/siliconflow/error.go -------------------------------------------------------------------------------- /core/relay/adaptor/siliconflow/image.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/siliconflow/image.go -------------------------------------------------------------------------------- /core/relay/adaptor/stepfun/adaptor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/stepfun/adaptor.go -------------------------------------------------------------------------------- /core/relay/adaptor/stepfun/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/stepfun/constants.go -------------------------------------------------------------------------------- /core/relay/adaptor/streamlake/adaptor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/streamlake/adaptor.go -------------------------------------------------------------------------------- /core/relay/adaptor/streamlake/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/streamlake/constants.go -------------------------------------------------------------------------------- /core/relay/adaptor/tencent/adaptor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/tencent/adaptor.go -------------------------------------------------------------------------------- /core/relay/adaptor/tencent/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/tencent/constants.go -------------------------------------------------------------------------------- /core/relay/adaptor/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/utils.go -------------------------------------------------------------------------------- /core/relay/adaptor/vertexai/adaptor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/vertexai/adaptor.go -------------------------------------------------------------------------------- /core/relay/adaptor/vertexai/claude/adapter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/vertexai/claude/adapter.go -------------------------------------------------------------------------------- /core/relay/adaptor/vertexai/claude/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/vertexai/claude/constants.go -------------------------------------------------------------------------------- /core/relay/adaptor/vertexai/claude/model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/vertexai/claude/model.go -------------------------------------------------------------------------------- /core/relay/adaptor/vertexai/gemini/adapter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/vertexai/gemini/adapter.go -------------------------------------------------------------------------------- /core/relay/adaptor/vertexai/key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/vertexai/key.go -------------------------------------------------------------------------------- /core/relay/adaptor/vertexai/registry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/vertexai/registry.go -------------------------------------------------------------------------------- /core/relay/adaptor/vertexai/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/vertexai/token.go -------------------------------------------------------------------------------- /core/relay/adaptor/xai/adaptor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/xai/adaptor.go -------------------------------------------------------------------------------- /core/relay/adaptor/xai/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/xai/constants.go -------------------------------------------------------------------------------- /core/relay/adaptor/xai/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/xai/error.go -------------------------------------------------------------------------------- /core/relay/adaptor/xunfei/adaptor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/xunfei/adaptor.go -------------------------------------------------------------------------------- /core/relay/adaptor/xunfei/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/xunfei/constants.go -------------------------------------------------------------------------------- /core/relay/adaptor/xunfei/key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/xunfei/key.go -------------------------------------------------------------------------------- /core/relay/adaptor/xunfei/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/xunfei/main.go -------------------------------------------------------------------------------- /core/relay/adaptor/zhipu/adaptor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/zhipu/adaptor.go -------------------------------------------------------------------------------- /core/relay/adaptor/zhipu/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/zhipu/constants.go -------------------------------------------------------------------------------- /core/relay/adaptor/zhipu/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/zhipu/main.go -------------------------------------------------------------------------------- /core/relay/adaptor/zhipu/model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/zhipu/model.go -------------------------------------------------------------------------------- /core/relay/adaptor/zhipucoding/adaptor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptor/zhipucoding/adaptor.go -------------------------------------------------------------------------------- /core/relay/adaptors/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/adaptors/register.go -------------------------------------------------------------------------------- /core/relay/controller/anthropic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/controller/anthropic.go -------------------------------------------------------------------------------- /core/relay/controller/chat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/controller/chat.go -------------------------------------------------------------------------------- /core/relay/controller/completions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/controller/completions.go -------------------------------------------------------------------------------- /core/relay/controller/dohelper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/controller/dohelper.go -------------------------------------------------------------------------------- /core/relay/controller/edits.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/controller/edits.go -------------------------------------------------------------------------------- /core/relay/controller/embed.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/controller/embed.go -------------------------------------------------------------------------------- /core/relay/controller/gemini.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/controller/gemini.go -------------------------------------------------------------------------------- /core/relay/controller/handle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/controller/handle.go -------------------------------------------------------------------------------- /core/relay/controller/image.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/controller/image.go -------------------------------------------------------------------------------- /core/relay/controller/pdf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/controller/pdf.go -------------------------------------------------------------------------------- /core/relay/controller/rerank.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/controller/rerank.go -------------------------------------------------------------------------------- /core/relay/controller/responses.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/controller/responses.go -------------------------------------------------------------------------------- /core/relay/controller/stt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/controller/stt.go -------------------------------------------------------------------------------- /core/relay/controller/tts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/controller/tts.go -------------------------------------------------------------------------------- /core/relay/controller/video.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/controller/video.go -------------------------------------------------------------------------------- /core/relay/meta/meta.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/meta/meta.go -------------------------------------------------------------------------------- /core/relay/mode/define.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/mode/define.go -------------------------------------------------------------------------------- /core/relay/model/anthropic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/model/anthropic.go -------------------------------------------------------------------------------- /core/relay/model/chat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/model/chat.go -------------------------------------------------------------------------------- /core/relay/model/chat_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/model/chat_test.go -------------------------------------------------------------------------------- /core/relay/model/claude.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/model/claude.go -------------------------------------------------------------------------------- /core/relay/model/claude_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/model/claude_test.go -------------------------------------------------------------------------------- /core/relay/model/completions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/model/completions.go -------------------------------------------------------------------------------- /core/relay/model/constant.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/model/constant.go -------------------------------------------------------------------------------- /core/relay/model/embed.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/model/embed.go -------------------------------------------------------------------------------- /core/relay/model/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/model/errors.go -------------------------------------------------------------------------------- /core/relay/model/gemini.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/model/gemini.go -------------------------------------------------------------------------------- /core/relay/model/image.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/model/image.go -------------------------------------------------------------------------------- /core/relay/model/pdf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/model/pdf.go -------------------------------------------------------------------------------- /core/relay/model/rerank.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/model/rerank.go -------------------------------------------------------------------------------- /core/relay/model/response.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/model/response.go -------------------------------------------------------------------------------- /core/relay/model/stt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/model/stt.go -------------------------------------------------------------------------------- /core/relay/model/tool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/model/tool.go -------------------------------------------------------------------------------- /core/relay/model/tts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/model/tts.go -------------------------------------------------------------------------------- /core/relay/model/usage_conversion_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/model/usage_conversion_test.go -------------------------------------------------------------------------------- /core/relay/model/video.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/model/video.go -------------------------------------------------------------------------------- /core/relay/plugin/cache/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/plugin/cache/README.md -------------------------------------------------------------------------------- /core/relay/plugin/cache/README.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/plugin/cache/README.zh.md -------------------------------------------------------------------------------- /core/relay/plugin/cache/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/plugin/cache/cache.go -------------------------------------------------------------------------------- /core/relay/plugin/cache/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/plugin/cache/config.go -------------------------------------------------------------------------------- /core/relay/plugin/monitor/group.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/plugin/monitor/group.go -------------------------------------------------------------------------------- /core/relay/plugin/monitor/monitor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/plugin/monitor/monitor.go -------------------------------------------------------------------------------- /core/relay/plugin/noop/noop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/plugin/noop/noop.go -------------------------------------------------------------------------------- /core/relay/plugin/patch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/plugin/patch/README.md -------------------------------------------------------------------------------- /core/relay/plugin/patch/README.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/plugin/patch/README.zh.md -------------------------------------------------------------------------------- /core/relay/plugin/patch/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/plugin/patch/config.go -------------------------------------------------------------------------------- /core/relay/plugin/patch/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/plugin/patch/example.json -------------------------------------------------------------------------------- /core/relay/plugin/patch/patch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/plugin/patch/patch.go -------------------------------------------------------------------------------- /core/relay/plugin/patch/patch_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/plugin/patch/patch_test.go -------------------------------------------------------------------------------- /core/relay/plugin/streamfake/README.cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/plugin/streamfake/README.cn.md -------------------------------------------------------------------------------- /core/relay/plugin/streamfake/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/plugin/streamfake/README.md -------------------------------------------------------------------------------- /core/relay/plugin/streamfake/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/plugin/streamfake/config.go -------------------------------------------------------------------------------- /core/relay/plugin/streamfake/fake.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/plugin/streamfake/fake.go -------------------------------------------------------------------------------- /core/relay/plugin/thinksplit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/plugin/thinksplit/README.md -------------------------------------------------------------------------------- /core/relay/plugin/thinksplit/README.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/plugin/thinksplit/README.zh.md -------------------------------------------------------------------------------- /core/relay/plugin/thinksplit/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/plugin/thinksplit/config.go -------------------------------------------------------------------------------- /core/relay/plugin/thinksplit/split.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/plugin/thinksplit/split.go -------------------------------------------------------------------------------- /core/relay/plugin/thinksplit/splitter/splitter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/plugin/thinksplit/splitter/splitter.go -------------------------------------------------------------------------------- /core/relay/plugin/thinksplit/splitter/think.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/plugin/thinksplit/splitter/think.go -------------------------------------------------------------------------------- /core/relay/plugin/timeout/timeout.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/plugin/timeout/timeout.go -------------------------------------------------------------------------------- /core/relay/plugin/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/plugin/types.go -------------------------------------------------------------------------------- /core/relay/plugin/web-search/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/plugin/web-search/README.md -------------------------------------------------------------------------------- /core/relay/plugin/web-search/README.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/plugin/web-search/README.zh.md -------------------------------------------------------------------------------- /core/relay/plugin/web-search/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/plugin/web-search/config.go -------------------------------------------------------------------------------- /core/relay/plugin/web-search/prompts/arxiv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/plugin/web-search/prompts/arxiv.md -------------------------------------------------------------------------------- /core/relay/plugin/web-search/prompts/full.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/plugin/web-search/prompts/full.md -------------------------------------------------------------------------------- /core/relay/plugin/web-search/prompts/internet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/plugin/web-search/prompts/internet.md -------------------------------------------------------------------------------- /core/relay/plugin/web-search/prompts/private.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/plugin/web-search/prompts/private.md -------------------------------------------------------------------------------- /core/relay/plugin/web-search/search.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/plugin/web-search/search.go -------------------------------------------------------------------------------- /core/relay/render/claude.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/render/claude.go -------------------------------------------------------------------------------- /core/relay/render/claudeevent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/render/claudeevent.go -------------------------------------------------------------------------------- /core/relay/render/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/render/common.go -------------------------------------------------------------------------------- /core/relay/render/gemini.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/render/gemini.go -------------------------------------------------------------------------------- /core/relay/render/openai-responses.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/render/openai-responses.go -------------------------------------------------------------------------------- /core/relay/render/openai.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/render/openai.go -------------------------------------------------------------------------------- /core/relay/utils/export_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/utils/export_test.go -------------------------------------------------------------------------------- /core/relay/utils/testreq.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/utils/testreq.go -------------------------------------------------------------------------------- /core/relay/utils/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/utils/utils.go -------------------------------------------------------------------------------- /core/relay/utils/utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/relay/utils/utils_test.go -------------------------------------------------------------------------------- /core/router/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/router/api.go -------------------------------------------------------------------------------- /core/router/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/router/main.go -------------------------------------------------------------------------------- /core/router/mcp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/router/mcp.go -------------------------------------------------------------------------------- /core/router/relay.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/router/relay.go -------------------------------------------------------------------------------- /core/router/static.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/router/static.go -------------------------------------------------------------------------------- /core/router/swagger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/router/swagger.go -------------------------------------------------------------------------------- /core/scripts/swag.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/scripts/swag.sh -------------------------------------------------------------------------------- /core/startup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/startup.go -------------------------------------------------------------------------------- /core/task/task.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/core/task/task.go -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/docker-compose.yaml -------------------------------------------------------------------------------- /docs/images/dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/docs/images/dashboard.png -------------------------------------------------------------------------------- /docs/images/logs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/docs/images/logs.png -------------------------------------------------------------------------------- /go.work: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/go.work -------------------------------------------------------------------------------- /go.work.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/go.work.sum -------------------------------------------------------------------------------- /mcp-servers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/README.md -------------------------------------------------------------------------------- /mcp-servers/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/go.mod -------------------------------------------------------------------------------- /mcp-servers/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/go.sum -------------------------------------------------------------------------------- /mcp-servers/hosted/12306/12306.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/hosted/12306/12306.go -------------------------------------------------------------------------------- /mcp-servers/hosted/12306/README.cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/hosted/12306/README.cn.md -------------------------------------------------------------------------------- /mcp-servers/hosted/12306/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/hosted/12306/README.md -------------------------------------------------------------------------------- /mcp-servers/hosted/12306/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/hosted/12306/constants.go -------------------------------------------------------------------------------- /mcp-servers/hosted/12306/handlers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/hosted/12306/handlers.go -------------------------------------------------------------------------------- /mcp-servers/hosted/12306/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/hosted/12306/init.go -------------------------------------------------------------------------------- /mcp-servers/hosted/12306/model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/hosted/12306/model.go -------------------------------------------------------------------------------- /mcp-servers/hosted/12306/parsers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/hosted/12306/parsers.go -------------------------------------------------------------------------------- /mcp-servers/hosted/12306/tools.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/hosted/12306/tools.go -------------------------------------------------------------------------------- /mcp-servers/hosted/12306/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/hosted/12306/utils.go -------------------------------------------------------------------------------- /mcp-servers/hosted/aiproxy-openapi/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/hosted/aiproxy-openapi/init.go -------------------------------------------------------------------------------- /mcp-servers/hosted/aiproxy-openapi/openapi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/hosted/aiproxy-openapi/openapi.go -------------------------------------------------------------------------------- /mcp-servers/hosted/amap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/hosted/amap/README.md -------------------------------------------------------------------------------- /mcp-servers/hosted/amap/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/hosted/amap/init.go -------------------------------------------------------------------------------- /mcp-servers/hosted/amap/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/hosted/amap/main.go -------------------------------------------------------------------------------- /mcp-servers/hosted/baidu-map/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/hosted/baidu-map/README.md -------------------------------------------------------------------------------- /mcp-servers/hosted/baidu-map/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/hosted/baidu-map/init.go -------------------------------------------------------------------------------- /mcp-servers/hosted/baidu-map/modle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/hosted/baidu-map/modle.go -------------------------------------------------------------------------------- /mcp-servers/hosted/baidu-map/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/hosted/baidu-map/server.go -------------------------------------------------------------------------------- /mcp-servers/hosted/bingcn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/hosted/bingcn/README.md -------------------------------------------------------------------------------- /mcp-servers/hosted/bingcn/bingcn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/hosted/bingcn/bingcn.go -------------------------------------------------------------------------------- /mcp-servers/hosted/bingcn/engine.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/hosted/bingcn/engine.go -------------------------------------------------------------------------------- /mcp-servers/hosted/bingcn/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/hosted/bingcn/init.go -------------------------------------------------------------------------------- /mcp-servers/hosted/bingcn/webpage_fetcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/hosted/bingcn/webpage_fetcher.go -------------------------------------------------------------------------------- /mcp-servers/hosted/cloudflare/README.cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/hosted/cloudflare/README.cn.md -------------------------------------------------------------------------------- /mcp-servers/hosted/cloudflare/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/hosted/cloudflare/README.md -------------------------------------------------------------------------------- /mcp-servers/hosted/cloudflare/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/hosted/cloudflare/init.go -------------------------------------------------------------------------------- /mcp-servers/hosted/context7/README.cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/hosted/context7/README.cn.md -------------------------------------------------------------------------------- /mcp-servers/hosted/context7/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/hosted/context7/README.md -------------------------------------------------------------------------------- /mcp-servers/hosted/context7/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/hosted/context7/init.go -------------------------------------------------------------------------------- /mcp-servers/hosted/context7/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/hosted/context7/main.go -------------------------------------------------------------------------------- /mcp-servers/hosted/fetch/README.cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/hosted/fetch/README.cn.md -------------------------------------------------------------------------------- /mcp-servers/hosted/fetch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/hosted/fetch/README.md -------------------------------------------------------------------------------- /mcp-servers/hosted/fetch/fetch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/hosted/fetch/fetch.go -------------------------------------------------------------------------------- /mcp-servers/hosted/fetch/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/hosted/fetch/init.go -------------------------------------------------------------------------------- /mcp-servers/hosted/figma/README.cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/hosted/figma/README.cn.md -------------------------------------------------------------------------------- /mcp-servers/hosted/figma/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/hosted/figma/README.md -------------------------------------------------------------------------------- /mcp-servers/hosted/figma/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/hosted/figma/client.go -------------------------------------------------------------------------------- /mcp-servers/hosted/figma/figma.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/hosted/figma/figma.go -------------------------------------------------------------------------------- /mcp-servers/hosted/figma/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/hosted/figma/init.go -------------------------------------------------------------------------------- /mcp-servers/hosted/figma/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/hosted/figma/parser.go -------------------------------------------------------------------------------- /mcp-servers/hosted/figma/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/hosted/figma/types.go -------------------------------------------------------------------------------- /mcp-servers/hosted/firecrawl/README.cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/hosted/firecrawl/README.cn.md -------------------------------------------------------------------------------- /mcp-servers/hosted/firecrawl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/hosted/firecrawl/README.md -------------------------------------------------------------------------------- /mcp-servers/hosted/firecrawl/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/hosted/firecrawl/client.go -------------------------------------------------------------------------------- /mcp-servers/hosted/firecrawl/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/hosted/firecrawl/init.go -------------------------------------------------------------------------------- /mcp-servers/hosted/firecrawl/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/hosted/firecrawl/server.go -------------------------------------------------------------------------------- /mcp-servers/hosted/firecrawl/tool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/hosted/firecrawl/tool.go -------------------------------------------------------------------------------- /mcp-servers/hosted/flomo/README.cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/hosted/flomo/README.cn.md -------------------------------------------------------------------------------- /mcp-servers/hosted/flomo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/hosted/flomo/README.md -------------------------------------------------------------------------------- /mcp-servers/hosted/flomo/flomo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/hosted/flomo/flomo.go -------------------------------------------------------------------------------- /mcp-servers/hosted/flomo/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/hosted/flomo/init.go -------------------------------------------------------------------------------- /mcp-servers/hosted/flomo/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/hosted/flomo/server.go -------------------------------------------------------------------------------- /mcp-servers/hosted/gezhe/README.cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/hosted/gezhe/README.cn.md -------------------------------------------------------------------------------- /mcp-servers/hosted/gezhe/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/hosted/gezhe/README.md -------------------------------------------------------------------------------- /mcp-servers/hosted/gezhe/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/hosted/gezhe/init.go -------------------------------------------------------------------------------- /mcp-servers/hosted/gezhe/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/hosted/gezhe/main.go -------------------------------------------------------------------------------- /mcp-servers/hosted/gitee/README.cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/hosted/gitee/README.cn.md -------------------------------------------------------------------------------- /mcp-servers/hosted/gitee/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/hosted/gitee/README.md -------------------------------------------------------------------------------- /mcp-servers/hosted/gitee/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/hosted/gitee/init.go -------------------------------------------------------------------------------- /mcp-servers/hosted/gitee/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/hosted/gitee/main.go -------------------------------------------------------------------------------- /mcp-servers/hosted/github/README.cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/hosted/github/README.cn.md -------------------------------------------------------------------------------- /mcp-servers/hosted/github/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/hosted/github/README.md -------------------------------------------------------------------------------- /mcp-servers/hosted/github/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/hosted/github/init.go -------------------------------------------------------------------------------- /mcp-servers/hosted/github/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/hosted/github/main.go -------------------------------------------------------------------------------- /mcp-servers/hosted/gpt-vis/README.cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/hosted/gpt-vis/README.cn.md -------------------------------------------------------------------------------- /mcp-servers/hosted/gpt-vis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/hosted/gpt-vis/README.md -------------------------------------------------------------------------------- /mcp-servers/hosted/gpt-vis/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/hosted/gpt-vis/init.go -------------------------------------------------------------------------------- /mcp-servers/hosted/gpt-vis/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/hosted/gpt-vis/server.go -------------------------------------------------------------------------------- /mcp-servers/hosted/hefeng-weather/README.cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/hosted/hefeng-weather/README.cn.md -------------------------------------------------------------------------------- /mcp-servers/hosted/hefeng-weather/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/hosted/hefeng-weather/README.md -------------------------------------------------------------------------------- /mcp-servers/hosted/hefeng-weather/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/hosted/hefeng-weather/init.go -------------------------------------------------------------------------------- /mcp-servers/hosted/hefeng-weather/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/hosted/hefeng-weather/server.go -------------------------------------------------------------------------------- /mcp-servers/hosted/howtocook/README.cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/hosted/howtocook/README.cn.md -------------------------------------------------------------------------------- /mcp-servers/hosted/howtocook/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/hosted/howtocook/README.md -------------------------------------------------------------------------------- /mcp-servers/hosted/howtocook/data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/hosted/howtocook/data.go -------------------------------------------------------------------------------- /mcp-servers/hosted/howtocook/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/hosted/howtocook/init.go -------------------------------------------------------------------------------- /mcp-servers/hosted/howtocook/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/hosted/howtocook/server.go -------------------------------------------------------------------------------- /mcp-servers/hosted/howtocook/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/hosted/howtocook/types.go -------------------------------------------------------------------------------- /mcp-servers/hosted/jina-tools/README.cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/hosted/jina-tools/README.cn.md -------------------------------------------------------------------------------- /mcp-servers/hosted/jina-tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/hosted/jina-tools/README.md -------------------------------------------------------------------------------- /mcp-servers/hosted/jina-tools/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/hosted/jina-tools/init.go -------------------------------------------------------------------------------- /mcp-servers/hosted/jina-tools/jina.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/hosted/jina-tools/jina.go -------------------------------------------------------------------------------- /mcp-servers/hosted/kuaidi100/README.cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/hosted/kuaidi100/README.cn.md -------------------------------------------------------------------------------- /mcp-servers/hosted/kuaidi100/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/hosted/kuaidi100/README.md -------------------------------------------------------------------------------- /mcp-servers/hosted/kuaidi100/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/hosted/kuaidi100/init.go -------------------------------------------------------------------------------- /mcp-servers/hosted/kuaidi100/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/hosted/kuaidi100/main.go -------------------------------------------------------------------------------- /mcp-servers/hosted/microsoftdocs/README.cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/hosted/microsoftdocs/README.cn.md -------------------------------------------------------------------------------- /mcp-servers/hosted/microsoftdocs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/hosted/microsoftdocs/README.md -------------------------------------------------------------------------------- /mcp-servers/hosted/microsoftdocs/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/hosted/microsoftdocs/init.go -------------------------------------------------------------------------------- /mcp-servers/hosted/microsoftdocs/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/hosted/microsoftdocs/main.go -------------------------------------------------------------------------------- /mcp-servers/hosted/nothon/README.cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/hosted/nothon/README.cn.md -------------------------------------------------------------------------------- /mcp-servers/hosted/nothon/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/hosted/nothon/README.md -------------------------------------------------------------------------------- /mcp-servers/hosted/nothon/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/hosted/nothon/client.go -------------------------------------------------------------------------------- /mcp-servers/hosted/nothon/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/hosted/nothon/init.go -------------------------------------------------------------------------------- /mcp-servers/hosted/nothon/markdown.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/hosted/nothon/markdown.go -------------------------------------------------------------------------------- /mcp-servers/hosted/nothon/notion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/hosted/nothon/notion.go -------------------------------------------------------------------------------- /mcp-servers/hosted/nothon/schemas.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/hosted/nothon/schemas.go -------------------------------------------------------------------------------- /mcp-servers/hosted/nothon/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/hosted/nothon/types.go -------------------------------------------------------------------------------- /mcp-servers/hosted/nothon/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/hosted/nothon/utils.go -------------------------------------------------------------------------------- /mcp-servers/hosted/screenshotone/README.cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/hosted/screenshotone/README.cn.md -------------------------------------------------------------------------------- /mcp-servers/hosted/screenshotone/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/hosted/screenshotone/README.md -------------------------------------------------------------------------------- /mcp-servers/hosted/screenshotone/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/hosted/screenshotone/init.go -------------------------------------------------------------------------------- /mcp-servers/hosted/screenshotone/screenshotone.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/hosted/screenshotone/screenshotone.go -------------------------------------------------------------------------------- /mcp-servers/hosted/semgrep/README.cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/hosted/semgrep/README.cn.md -------------------------------------------------------------------------------- /mcp-servers/hosted/semgrep/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/hosted/semgrep/README.md -------------------------------------------------------------------------------- /mcp-servers/hosted/semgrep/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/hosted/semgrep/init.go -------------------------------------------------------------------------------- /mcp-servers/hosted/semgrep/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/hosted/semgrep/main.go -------------------------------------------------------------------------------- /mcp-servers/hosted/tavily/README.cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/hosted/tavily/README.cn.md -------------------------------------------------------------------------------- /mcp-servers/hosted/tavily/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/hosted/tavily/README.md -------------------------------------------------------------------------------- /mcp-servers/hosted/tavily/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/hosted/tavily/init.go -------------------------------------------------------------------------------- /mcp-servers/hosted/tavily/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/hosted/tavily/server.go -------------------------------------------------------------------------------- /mcp-servers/hosted/time/README.cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/hosted/time/README.cn.md -------------------------------------------------------------------------------- /mcp-servers/hosted/time/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/hosted/time/README.md -------------------------------------------------------------------------------- /mcp-servers/hosted/time/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/hosted/time/init.go -------------------------------------------------------------------------------- /mcp-servers/hosted/time/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/hosted/time/time.go -------------------------------------------------------------------------------- /mcp-servers/hosted/web-search/README.cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/hosted/web-search/README.cn.md -------------------------------------------------------------------------------- /mcp-servers/hosted/web-search/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/hosted/web-search/README.md -------------------------------------------------------------------------------- /mcp-servers/hosted/web-search/engine/arxiv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/hosted/web-search/engine/arxiv.go -------------------------------------------------------------------------------- /mcp-servers/hosted/web-search/engine/bing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/hosted/web-search/engine/bing.go -------------------------------------------------------------------------------- /mcp-servers/hosted/web-search/engine/bingcn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/hosted/web-search/engine/bingcn.go -------------------------------------------------------------------------------- /mcp-servers/hosted/web-search/engine/google.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/hosted/web-search/engine/google.go -------------------------------------------------------------------------------- /mcp-servers/hosted/web-search/engine/searchxng.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/hosted/web-search/engine/searchxng.go -------------------------------------------------------------------------------- /mcp-servers/hosted/web-search/engine/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/hosted/web-search/engine/types.go -------------------------------------------------------------------------------- /mcp-servers/hosted/web-search/features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/hosted/web-search/features.md -------------------------------------------------------------------------------- /mcp-servers/hosted/web-search/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/hosted/web-search/init.go -------------------------------------------------------------------------------- /mcp-servers/hosted/web-search/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/hosted/web-search/server.go -------------------------------------------------------------------------------- /mcp-servers/local/1panel/README.cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/1panel/README.cn.md -------------------------------------------------------------------------------- /mcp-servers/local/1panel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/1panel/README.md -------------------------------------------------------------------------------- /mcp-servers/local/1panel/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/1panel/init.go -------------------------------------------------------------------------------- /mcp-servers/local/ableton/README.cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/ableton/README.cn.md -------------------------------------------------------------------------------- /mcp-servers/local/ableton/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/ableton/README.md -------------------------------------------------------------------------------- /mcp-servers/local/ableton/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/ableton/init.go -------------------------------------------------------------------------------- /mcp-servers/local/academic-search/README.cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/academic-search/README.cn.md -------------------------------------------------------------------------------- /mcp-servers/local/academic-search/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/academic-search/README.md -------------------------------------------------------------------------------- /mcp-servers/local/academic-search/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/academic-search/init.go -------------------------------------------------------------------------------- /mcp-servers/local/alibabacloud-dms/README.cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/alibabacloud-dms/README.cn.md -------------------------------------------------------------------------------- /mcp-servers/local/alibabacloud-dms/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/alibabacloud-dms/README.md -------------------------------------------------------------------------------- /mcp-servers/local/alibabacloud-dms/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/alibabacloud-dms/init.go -------------------------------------------------------------------------------- /mcp-servers/local/alipay/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/alipay/README.md -------------------------------------------------------------------------------- /mcp-servers/local/alipay/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/alipay/init.go -------------------------------------------------------------------------------- /mcp-servers/local/allvoicelab/README.cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/allvoicelab/README.cn.md -------------------------------------------------------------------------------- /mcp-servers/local/allvoicelab/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/allvoicelab/README.md -------------------------------------------------------------------------------- /mcp-servers/local/allvoicelab/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/allvoicelab/init.go -------------------------------------------------------------------------------- /mcp-servers/local/applescript/README.cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/applescript/README.cn.md -------------------------------------------------------------------------------- /mcp-servers/local/applescript/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/applescript/README.md -------------------------------------------------------------------------------- /mcp-servers/local/applescript/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/applescript/init.go -------------------------------------------------------------------------------- /mcp-servers/local/blender/README.cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/blender/README.cn.md -------------------------------------------------------------------------------- /mcp-servers/local/blender/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/blender/README.md -------------------------------------------------------------------------------- /mcp-servers/local/blender/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/blender/init.go -------------------------------------------------------------------------------- /mcp-servers/local/brightdata/README.cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/brightdata/README.cn.md -------------------------------------------------------------------------------- /mcp-servers/local/brightdata/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/brightdata/README.md -------------------------------------------------------------------------------- /mcp-servers/local/brightdata/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/brightdata/init.go -------------------------------------------------------------------------------- /mcp-servers/local/browserbase/README.cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/browserbase/README.cn.md -------------------------------------------------------------------------------- /mcp-servers/local/browserbase/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/browserbase/README.md -------------------------------------------------------------------------------- /mcp-servers/local/browserbase/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/browserbase/init.go -------------------------------------------------------------------------------- /mcp-servers/local/cfworker/README.cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/cfworker/README.cn.md -------------------------------------------------------------------------------- /mcp-servers/local/cfworker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/cfworker/README.md -------------------------------------------------------------------------------- /mcp-servers/local/cfworker/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/cfworker/init.go -------------------------------------------------------------------------------- /mcp-servers/local/chatsum/README.cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/chatsum/README.cn.md -------------------------------------------------------------------------------- /mcp-servers/local/chatsum/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/chatsum/README.md -------------------------------------------------------------------------------- /mcp-servers/local/chatsum/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/chatsum/init.go -------------------------------------------------------------------------------- /mcp-servers/local/code-sandbox/README.cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/code-sandbox/README.cn.md -------------------------------------------------------------------------------- /mcp-servers/local/code-sandbox/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/code-sandbox/README.md -------------------------------------------------------------------------------- /mcp-servers/local/code-sandbox/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/code-sandbox/init.go -------------------------------------------------------------------------------- /mcp-servers/local/elasticsearch/README.cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/elasticsearch/README.cn.md -------------------------------------------------------------------------------- /mcp-servers/local/elasticsearch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/elasticsearch/README.md -------------------------------------------------------------------------------- /mcp-servers/local/elasticsearch/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/elasticsearch/init.go -------------------------------------------------------------------------------- /mcp-servers/local/everything-search/README.cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/everything-search/README.cn.md -------------------------------------------------------------------------------- /mcp-servers/local/everything-search/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/everything-search/README.md -------------------------------------------------------------------------------- /mcp-servers/local/everything-search/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/everything-search/init.go -------------------------------------------------------------------------------- /mcp-servers/local/excel/README.cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/excel/README.cn.md -------------------------------------------------------------------------------- /mcp-servers/local/excel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/excel/README.md -------------------------------------------------------------------------------- /mcp-servers/local/excel/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/excel/init.go -------------------------------------------------------------------------------- /mcp-servers/local/filesystem/README.cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/filesystem/README.cn.md -------------------------------------------------------------------------------- /mcp-servers/local/filesystem/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/filesystem/README.md -------------------------------------------------------------------------------- /mcp-servers/local/filesystem/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/filesystem/init.go -------------------------------------------------------------------------------- /mcp-servers/local/forevervm/README.cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/forevervm/README.cn.md -------------------------------------------------------------------------------- /mcp-servers/local/forevervm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/forevervm/README.md -------------------------------------------------------------------------------- /mcp-servers/local/forevervm/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/forevervm/init.go -------------------------------------------------------------------------------- /mcp-servers/local/genai-toolbox/README.cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/genai-toolbox/README.cn.md -------------------------------------------------------------------------------- /mcp-servers/local/genai-toolbox/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/genai-toolbox/README.md -------------------------------------------------------------------------------- /mcp-servers/local/genai-toolbox/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/genai-toolbox/init.go -------------------------------------------------------------------------------- /mcp-servers/local/git/README.cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/git/README.cn.md -------------------------------------------------------------------------------- /mcp-servers/local/git/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/git/README.md -------------------------------------------------------------------------------- /mcp-servers/local/git/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/git/init.go -------------------------------------------------------------------------------- /mcp-servers/local/grafana/README.cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/grafana/README.cn.md -------------------------------------------------------------------------------- /mcp-servers/local/grafana/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/grafana/README.md -------------------------------------------------------------------------------- /mcp-servers/local/grafana/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/grafana/init.go -------------------------------------------------------------------------------- /mcp-servers/local/hfspace/README.cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/hfspace/README.cn.md -------------------------------------------------------------------------------- /mcp-servers/local/hfspace/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/hfspace/README.md -------------------------------------------------------------------------------- /mcp-servers/local/hfspace/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/hfspace/init.go -------------------------------------------------------------------------------- /mcp-servers/local/homeassistant/README.cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/homeassistant/README.cn.md -------------------------------------------------------------------------------- /mcp-servers/local/homeassistant/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/homeassistant/README.md -------------------------------------------------------------------------------- /mcp-servers/local/homeassistant/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/homeassistant/init.go -------------------------------------------------------------------------------- /mcp-servers/local/ical/README.cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/ical/README.cn.md -------------------------------------------------------------------------------- /mcp-servers/local/ical/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/ical/README.md -------------------------------------------------------------------------------- /mcp-servers/local/ical/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/ical/init.go -------------------------------------------------------------------------------- /mcp-servers/local/knowledge-graph-memory/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/knowledge-graph-memory/README.md -------------------------------------------------------------------------------- /mcp-servers/local/knowledge-graph-memory/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/knowledge-graph-memory/init.go -------------------------------------------------------------------------------- /mcp-servers/local/kubernetes/README.cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/kubernetes/README.cn.md -------------------------------------------------------------------------------- /mcp-servers/local/kubernetes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/kubernetes/README.md -------------------------------------------------------------------------------- /mcp-servers/local/kubernetes/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/kubernetes/init.go -------------------------------------------------------------------------------- /mcp-servers/local/magic/README.cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/magic/README.cn.md -------------------------------------------------------------------------------- /mcp-servers/local/magic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/magic/README.md -------------------------------------------------------------------------------- /mcp-servers/local/magic/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/magic/init.go -------------------------------------------------------------------------------- /mcp-servers/local/markdownify/README.cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/markdownify/README.cn.md -------------------------------------------------------------------------------- /mcp-servers/local/markdownify/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/markdownify/README.md -------------------------------------------------------------------------------- /mcp-servers/local/markdownify/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/markdownify/init.go -------------------------------------------------------------------------------- /mcp-servers/local/milvus/README.cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/milvus/README.cn.md -------------------------------------------------------------------------------- /mcp-servers/local/milvus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/milvus/README.md -------------------------------------------------------------------------------- /mcp-servers/local/milvus/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/milvus/init.go -------------------------------------------------------------------------------- /mcp-servers/local/mysql/README.cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/mysql/README.cn.md -------------------------------------------------------------------------------- /mcp-servers/local/mysql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/mysql/README.md -------------------------------------------------------------------------------- /mcp-servers/local/mysql/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/mysql/init.go -------------------------------------------------------------------------------- /mcp-servers/local/netdata/README.cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/netdata/README.cn.md -------------------------------------------------------------------------------- /mcp-servers/local/netdata/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/netdata/README.md -------------------------------------------------------------------------------- /mcp-servers/local/netdata/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/netdata/init.go -------------------------------------------------------------------------------- /mcp-servers/local/oceanbase/README.cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/oceanbase/README.cn.md -------------------------------------------------------------------------------- /mcp-servers/local/oceanbase/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/oceanbase/README.md -------------------------------------------------------------------------------- /mcp-servers/local/oceanbase/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/oceanbase/init.go -------------------------------------------------------------------------------- /mcp-servers/local/office-word/README.cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/office-word/README.cn.md -------------------------------------------------------------------------------- /mcp-servers/local/office-word/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/office-word/README.md -------------------------------------------------------------------------------- /mcp-servers/local/office-word/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/office-word/init.go -------------------------------------------------------------------------------- /mcp-servers/local/openmemory/README.cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/openmemory/README.cn.md -------------------------------------------------------------------------------- /mcp-servers/local/openmemory/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/openmemory/README.md -------------------------------------------------------------------------------- /mcp-servers/local/openmemory/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/openmemory/init.go -------------------------------------------------------------------------------- /mcp-servers/local/playwright/README.cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/playwright/README.cn.md -------------------------------------------------------------------------------- /mcp-servers/local/playwright/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/playwright/README.md -------------------------------------------------------------------------------- /mcp-servers/local/playwright/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/playwright/init.go -------------------------------------------------------------------------------- /mcp-servers/local/puppeteer/README.cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/puppeteer/README.cn.md -------------------------------------------------------------------------------- /mcp-servers/local/puppeteer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/puppeteer/README.md -------------------------------------------------------------------------------- /mcp-servers/local/puppeteer/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/puppeteer/init.go -------------------------------------------------------------------------------- /mcp-servers/local/query_table/README.cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/query_table/README.cn.md -------------------------------------------------------------------------------- /mcp-servers/local/query_table/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/query_table/README.md -------------------------------------------------------------------------------- /mcp-servers/local/query_table/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/query_table/init.go -------------------------------------------------------------------------------- /mcp-servers/local/redbook-search-comment/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/redbook-search-comment/README.md -------------------------------------------------------------------------------- /mcp-servers/local/redbook-search-comment/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/redbook-search-comment/init.go -------------------------------------------------------------------------------- /mcp-servers/local/redis/README.cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/redis/README.cn.md -------------------------------------------------------------------------------- /mcp-servers/local/redis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/redis/README.md -------------------------------------------------------------------------------- /mcp-servers/local/redis/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/redis/init.go -------------------------------------------------------------------------------- /mcp-servers/local/sqlite/README.cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/sqlite/README.cn.md -------------------------------------------------------------------------------- /mcp-servers/local/sqlite/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/sqlite/README.md -------------------------------------------------------------------------------- /mcp-servers/local/sqlite/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/sqlite/init.go -------------------------------------------------------------------------------- /mcp-servers/local/stock-analysis/README.cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/stock-analysis/README.cn.md -------------------------------------------------------------------------------- /mcp-servers/local/stock-analysis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/stock-analysis/README.md -------------------------------------------------------------------------------- /mcp-servers/local/stock-analysis/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/stock-analysis/init.go -------------------------------------------------------------------------------- /mcp-servers/local/terraform/README.cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/terraform/README.cn.md -------------------------------------------------------------------------------- /mcp-servers/local/terraform/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/terraform/README.md -------------------------------------------------------------------------------- /mcp-servers/local/terraform/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/terraform/init.go -------------------------------------------------------------------------------- /mcp-servers/local/unionpay/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/unionpay/README.md -------------------------------------------------------------------------------- /mcp-servers/local/unionpay/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/unionpay/init.go -------------------------------------------------------------------------------- /mcp-servers/local/weather/README.cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/weather/README.cn.md -------------------------------------------------------------------------------- /mcp-servers/local/weather/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/weather/README.md -------------------------------------------------------------------------------- /mcp-servers/local/weather/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/weather/init.go -------------------------------------------------------------------------------- /mcp-servers/local/wecom-bot/README.cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/wecom-bot/README.cn.md -------------------------------------------------------------------------------- /mcp-servers/local/wecom-bot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/wecom-bot/README.md -------------------------------------------------------------------------------- /mcp-servers/local/wecom-bot/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/wecom-bot/init.go -------------------------------------------------------------------------------- /mcp-servers/local/xhs/README.cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/xhs/README.cn.md -------------------------------------------------------------------------------- /mcp-servers/local/xhs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/xhs/README.md -------------------------------------------------------------------------------- /mcp-servers/local/xhs/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/xhs/init.go -------------------------------------------------------------------------------- /mcp-servers/local/xiyan/README.cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/xiyan/README.cn.md -------------------------------------------------------------------------------- /mcp-servers/local/xiyan/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/xiyan/README.md -------------------------------------------------------------------------------- /mcp-servers/local/xiyan/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/xiyan/init.go -------------------------------------------------------------------------------- /mcp-servers/local/zhipuai/README.cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/zhipuai/README.cn.md -------------------------------------------------------------------------------- /mcp-servers/local/zhipuai/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/zhipuai/README.md -------------------------------------------------------------------------------- /mcp-servers/local/zhipuai/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/local/zhipuai/init.go -------------------------------------------------------------------------------- /mcp-servers/mcp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/mcp.go -------------------------------------------------------------------------------- /mcp-servers/mcpregister/hosted.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/mcpregister/hosted.go -------------------------------------------------------------------------------- /mcp-servers/mcpregister/local.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/mcpregister/local.go -------------------------------------------------------------------------------- /mcp-servers/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/register.go -------------------------------------------------------------------------------- /mcp-servers/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/server.go -------------------------------------------------------------------------------- /mcp-servers/tools.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/mcp-servers/tools.go -------------------------------------------------------------------------------- /openapi-mcp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/openapi-mcp/README.md -------------------------------------------------------------------------------- /openapi-mcp/convert/convert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/openapi-mcp/convert/convert.go -------------------------------------------------------------------------------- /openapi-mcp/convert/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/openapi-mcp/convert/parser.go -------------------------------------------------------------------------------- /openapi-mcp/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/openapi-mcp/go.mod -------------------------------------------------------------------------------- /openapi-mcp/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/openapi-mcp/go.sum -------------------------------------------------------------------------------- /openapi-mcp/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/openapi-mcp/main.go -------------------------------------------------------------------------------- /scripts/golangci-lint-fix.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/scripts/golangci-lint-fix.sh -------------------------------------------------------------------------------- /scripts/update-go-mod.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/scripts/update-go-mod.sh -------------------------------------------------------------------------------- /web/.env.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/.env.template -------------------------------------------------------------------------------- /web/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/.gitignore -------------------------------------------------------------------------------- /web/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/README.md -------------------------------------------------------------------------------- /web/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/components.json -------------------------------------------------------------------------------- /web/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/context.md -------------------------------------------------------------------------------- /web/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/eslint.config.js -------------------------------------------------------------------------------- /web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/index.html -------------------------------------------------------------------------------- /web/openapi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/openapi.txt -------------------------------------------------------------------------------- /web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/package.json -------------------------------------------------------------------------------- /web/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/pnpm-lock.yaml -------------------------------------------------------------------------------- /web/prompt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/prompt.txt -------------------------------------------------------------------------------- /web/public/locales/en/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/public/locales/en/translation.json -------------------------------------------------------------------------------- /web/public/locales/zh/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/public/locales/zh/translation.json -------------------------------------------------------------------------------- /web/public/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/public/logo.svg -------------------------------------------------------------------------------- /web/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/src/App.tsx -------------------------------------------------------------------------------- /web/src/api/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/src/api/auth.ts -------------------------------------------------------------------------------- /web/src/api/channel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/src/api/channel.ts -------------------------------------------------------------------------------- /web/src/api/dashboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/src/api/dashboard.ts -------------------------------------------------------------------------------- /web/src/api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/src/api/index.ts -------------------------------------------------------------------------------- /web/src/api/log.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/src/api/log.ts -------------------------------------------------------------------------------- /web/src/api/mcp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/src/api/mcp.ts -------------------------------------------------------------------------------- /web/src/api/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/src/api/model.ts -------------------------------------------------------------------------------- /web/src/api/services.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/src/api/services.ts -------------------------------------------------------------------------------- /web/src/api/token.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/src/api/token.ts -------------------------------------------------------------------------------- /web/src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/src/assets/react.svg -------------------------------------------------------------------------------- /web/src/components/common/CopyButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/src/components/common/CopyButton.tsx -------------------------------------------------------------------------------- /web/src/components/common/Date.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/src/components/common/Date.tsx -------------------------------------------------------------------------------- /web/src/components/common/DateRangePicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/src/components/common/DateRangePicker.tsx -------------------------------------------------------------------------------- /web/src/components/common/LanguageSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/src/components/common/LanguageSelector.tsx -------------------------------------------------------------------------------- /web/src/components/common/LoadingFallBack.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/src/components/common/LoadingFallBack.tsx -------------------------------------------------------------------------------- /web/src/components/common/ThemeToggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/src/components/common/ThemeToggle.tsx -------------------------------------------------------------------------------- /web/src/components/common/error/errorConfig.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/src/components/common/error/errorConfig.tsx -------------------------------------------------------------------------------- /web/src/components/common/error/errorDisplay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/src/components/common/error/errorDisplay.tsx -------------------------------------------------------------------------------- /web/src/components/common/error/errorTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/src/components/common/error/errorTypes.ts -------------------------------------------------------------------------------- /web/src/components/layout/AnimatedRoute.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/src/components/layout/AnimatedRoute.tsx -------------------------------------------------------------------------------- /web/src/components/layout/RootLayOut.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/src/components/layout/RootLayOut.tsx -------------------------------------------------------------------------------- /web/src/components/layout/SideBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/src/components/layout/SideBar.tsx -------------------------------------------------------------------------------- /web/src/components/select/MultiSelectCombobox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/src/components/select/MultiSelectCombobox.tsx -------------------------------------------------------------------------------- /web/src/components/select/Select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/src/components/select/Select.tsx -------------------------------------------------------------------------------- /web/src/components/select/SingleSelectCombobox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/src/components/select/SingleSelectCombobox.tsx -------------------------------------------------------------------------------- /web/src/components/table/column-header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/src/components/table/column-header.tsx -------------------------------------------------------------------------------- /web/src/components/table/column-toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/src/components/table/column-toggle.tsx -------------------------------------------------------------------------------- /web/src/components/table/data-table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/src/components/table/data-table.tsx -------------------------------------------------------------------------------- /web/src/components/table/motion-data-table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/src/components/table/motion-data-table.tsx -------------------------------------------------------------------------------- /web/src/components/table/pagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/src/components/table/pagination.tsx -------------------------------------------------------------------------------- /web/src/components/ui/alert-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/src/components/ui/alert-dialog.tsx -------------------------------------------------------------------------------- /web/src/components/ui/alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/src/components/ui/alert.tsx -------------------------------------------------------------------------------- /web/src/components/ui/animation/button-animation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/src/components/ui/animation/button-animation.ts -------------------------------------------------------------------------------- /web/src/components/ui/animation/dialog-animation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/src/components/ui/animation/dialog-animation.ts -------------------------------------------------------------------------------- /web/src/components/ui/animation/grid-animation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/src/components/ui/animation/grid-animation.ts -------------------------------------------------------------------------------- /web/src/components/ui/animation/icon-animation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/src/components/ui/animation/icon-animation.ts -------------------------------------------------------------------------------- /web/src/components/ui/animation/route-animation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/src/components/ui/animation/route-animation.ts -------------------------------------------------------------------------------- /web/src/components/ui/animation/tab-animation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/src/components/ui/animation/tab-animation.ts -------------------------------------------------------------------------------- /web/src/components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/src/components/ui/avatar.tsx -------------------------------------------------------------------------------- /web/src/components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/src/components/ui/badge.tsx -------------------------------------------------------------------------------- /web/src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/src/components/ui/button.tsx -------------------------------------------------------------------------------- /web/src/components/ui/calendar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/src/components/ui/calendar.tsx -------------------------------------------------------------------------------- /web/src/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/src/components/ui/card.tsx -------------------------------------------------------------------------------- /web/src/components/ui/collapsible.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/src/components/ui/collapsible.tsx -------------------------------------------------------------------------------- /web/src/components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/src/components/ui/dialog.tsx -------------------------------------------------------------------------------- /web/src/components/ui/drawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/src/components/ui/drawer.tsx -------------------------------------------------------------------------------- /web/src/components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/src/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /web/src/components/ui/echarts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/src/components/ui/echarts.tsx -------------------------------------------------------------------------------- /web/src/components/ui/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/src/components/ui/form.tsx -------------------------------------------------------------------------------- /web/src/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/src/components/ui/input.tsx -------------------------------------------------------------------------------- /web/src/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/src/components/ui/label.tsx -------------------------------------------------------------------------------- /web/src/components/ui/popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/src/components/ui/popover.tsx -------------------------------------------------------------------------------- /web/src/components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/src/components/ui/select.tsx -------------------------------------------------------------------------------- /web/src/components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/src/components/ui/separator.tsx -------------------------------------------------------------------------------- /web/src/components/ui/sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/src/components/ui/sheet.tsx -------------------------------------------------------------------------------- /web/src/components/ui/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/src/components/ui/skeleton.tsx -------------------------------------------------------------------------------- /web/src/components/ui/sonner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/src/components/ui/sonner.tsx -------------------------------------------------------------------------------- /web/src/components/ui/switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/src/components/ui/switch.tsx -------------------------------------------------------------------------------- /web/src/components/ui/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/src/components/ui/table.tsx -------------------------------------------------------------------------------- /web/src/components/ui/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/src/components/ui/tabs.tsx -------------------------------------------------------------------------------- /web/src/components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/src/components/ui/textarea.tsx -------------------------------------------------------------------------------- /web/src/components/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/src/components/ui/tooltip.tsx -------------------------------------------------------------------------------- /web/src/components/ui/use-toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/src/components/ui/use-toast.tsx -------------------------------------------------------------------------------- /web/src/constant/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/src/constant/index.ts -------------------------------------------------------------------------------- /web/src/feature/auth/components/ProtectedRoute.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/src/feature/auth/components/ProtectedRoute.tsx -------------------------------------------------------------------------------- /web/src/feature/auth/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/src/feature/auth/hooks.ts -------------------------------------------------------------------------------- /web/src/feature/channel/components/ChannelForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/src/feature/channel/components/ChannelForm.tsx -------------------------------------------------------------------------------- /web/src/feature/channel/components/ChannelTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/src/feature/channel/components/ChannelTable.tsx -------------------------------------------------------------------------------- /web/src/feature/channel/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/src/feature/channel/hooks.ts -------------------------------------------------------------------------------- /web/src/feature/log/components/JsonViewer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/src/feature/log/components/JsonViewer.tsx -------------------------------------------------------------------------------- /web/src/feature/log/components/LogFilters.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/src/feature/log/components/LogFilters.tsx -------------------------------------------------------------------------------- /web/src/feature/log/components/LogTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/src/feature/log/components/LogTable.tsx -------------------------------------------------------------------------------- /web/src/feature/log/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/src/feature/log/hooks.ts -------------------------------------------------------------------------------- /web/src/feature/model/components/ModelDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/src/feature/model/components/ModelDialog.tsx -------------------------------------------------------------------------------- /web/src/feature/model/components/ModelForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/src/feature/model/components/ModelForm.tsx -------------------------------------------------------------------------------- /web/src/feature/model/components/ModelTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/src/feature/model/components/ModelTable.tsx -------------------------------------------------------------------------------- /web/src/feature/model/components/api-doc/ApiDoc.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/src/feature/model/components/api-doc/ApiDoc.tsx -------------------------------------------------------------------------------- /web/src/feature/model/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/src/feature/model/hooks.ts -------------------------------------------------------------------------------- /web/src/feature/monitor/components/MetricsCards.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/src/feature/monitor/components/MetricsCards.tsx -------------------------------------------------------------------------------- /web/src/feature/monitor/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/src/feature/monitor/hooks.ts -------------------------------------------------------------------------------- /web/src/feature/token/components/TokenDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/src/feature/token/components/TokenDialog.tsx -------------------------------------------------------------------------------- /web/src/feature/token/components/TokenForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/src/feature/token/components/TokenForm.tsx -------------------------------------------------------------------------------- /web/src/feature/token/components/TokenTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/src/feature/token/components/TokenTable.tsx -------------------------------------------------------------------------------- /web/src/feature/token/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/src/feature/token/hooks.ts -------------------------------------------------------------------------------- /web/src/handler/ErrorBoundary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/src/handler/ErrorBoundary.tsx -------------------------------------------------------------------------------- /web/src/handler/ThemeContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/src/handler/ThemeContext.tsx -------------------------------------------------------------------------------- /web/src/handler/ThemeProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/src/handler/ThemeProvider.tsx -------------------------------------------------------------------------------- /web/src/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/src/i18n.ts -------------------------------------------------------------------------------- /web/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/src/index.css -------------------------------------------------------------------------------- /web/src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/src/lib/utils.ts -------------------------------------------------------------------------------- /web/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/src/main.tsx -------------------------------------------------------------------------------- /web/src/pages/auth/login.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/src/pages/auth/login.tsx -------------------------------------------------------------------------------- /web/src/pages/channel/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/src/pages/channel/page.tsx -------------------------------------------------------------------------------- /web/src/pages/log/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/src/pages/log/page.tsx -------------------------------------------------------------------------------- /web/src/pages/mcp/components/EmbedMCP.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/src/pages/mcp/components/EmbedMCP.tsx -------------------------------------------------------------------------------- /web/src/pages/mcp/components/MCPConfig.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/src/pages/mcp/components/MCPConfig.tsx -------------------------------------------------------------------------------- /web/src/pages/mcp/components/MCPList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/src/pages/mcp/components/MCPList.tsx -------------------------------------------------------------------------------- /web/src/pages/mcp/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/src/pages/mcp/page.tsx -------------------------------------------------------------------------------- /web/src/pages/model/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/src/pages/model/page.tsx -------------------------------------------------------------------------------- /web/src/pages/monitor/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/src/pages/monitor/page.tsx -------------------------------------------------------------------------------- /web/src/pages/token/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/src/pages/token/page.tsx -------------------------------------------------------------------------------- /web/src/routes/config.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/src/routes/config.tsx -------------------------------------------------------------------------------- /web/src/routes/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/src/routes/constants.ts -------------------------------------------------------------------------------- /web/src/routes/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/src/routes/index.tsx -------------------------------------------------------------------------------- /web/src/store/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/src/store/auth.ts -------------------------------------------------------------------------------- /web/src/types/channel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/src/types/channel.ts -------------------------------------------------------------------------------- /web/src/types/dashboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/src/types/dashboard.ts -------------------------------------------------------------------------------- /web/src/types/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/src/types/global.d.ts -------------------------------------------------------------------------------- /web/src/types/i18next.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/src/types/i18next.d.ts -------------------------------------------------------------------------------- /web/src/types/log.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/src/types/log.ts -------------------------------------------------------------------------------- /web/src/types/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/src/types/model.ts -------------------------------------------------------------------------------- /web/src/types/token.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/src/types/token.ts -------------------------------------------------------------------------------- /web/src/utils/env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/src/utils/env.ts -------------------------------------------------------------------------------- /web/src/validation/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/src/validation/auth.ts -------------------------------------------------------------------------------- /web/src/validation/channel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/src/validation/channel.ts -------------------------------------------------------------------------------- /web/src/validation/dashboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/src/validation/dashboard.ts -------------------------------------------------------------------------------- /web/src/validation/log.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/src/validation/log.ts -------------------------------------------------------------------------------- /web/src/validation/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/src/validation/model.ts -------------------------------------------------------------------------------- /web/src/validation/token.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/src/validation/token.ts -------------------------------------------------------------------------------- /web/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /web/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/tailwind.config.js -------------------------------------------------------------------------------- /web/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/tsconfig.app.json -------------------------------------------------------------------------------- /web/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/tsconfig.json -------------------------------------------------------------------------------- /web/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/tsconfig.node.json -------------------------------------------------------------------------------- /web/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring/aiproxy/HEAD/web/vite.config.ts --------------------------------------------------------------------------------