├── .dockerignore ├── .gitignore ├── Dockerfile ├── Makefile ├── README.md ├── api ├── billing │ └── billing.go ├── openai │ └── openai.go └── provider.go ├── coins-table.yaml ├── config.yaml ├── config ├── config.go ├── flag.go └── stripe.go ├── docker-build.sh ├── docs ├── AIdea 服务端功能依赖清单.xlsx ├── alipay-configuration.md ├── appicon-320.png ├── deploy-vip.md ├── deploy.md ├── docs.go ├── swagger.json ├── swagger.yaml └── table-tutorials.md ├── go.mod ├── go.sum ├── internal ├── coins │ ├── coins.go │ ├── constants.go │ ├── free.go │ ├── free_test.go │ ├── price.go │ ├── price_test.go │ ├── products.go │ └── products_test.go ├── jobs │ ├── gallery_sort.go │ ├── gallery_sort_test.go │ ├── healthcheck.go │ ├── healthcheck_test.go │ ├── lock.go │ ├── notification.go │ ├── notification_test.go │ ├── provider.go │ ├── quota_usage_statistics.go │ └── quota_usage_statistics_test.go ├── payment │ ├── alipay │ │ ├── alipay.go │ │ ├── alipay_fake.go │ │ ├── alipay_impl.go │ │ ├── alipay_test.go │ │ └── provider.go │ ├── applepay │ │ ├── applepay.go │ │ └── provider.go │ └── wechatpay │ │ ├── fake.go │ │ ├── provider.go │ │ ├── wechatpay.go │ │ └── wechatpay_test.go └── queue │ ├── artistic.go │ ├── bind_phone.go │ ├── consumer │ ├── log.go │ └── provider.go │ ├── dalle.go │ ├── dashscope_image.go │ ├── deepai.go │ ├── fromston.go │ ├── getimgai.go │ ├── group_chat.go │ ├── image.go │ ├── image_colorization.go │ ├── image_downloader.go │ ├── image_to_video.go │ ├── image_upscale.go │ ├── image_upscale_test.go │ ├── leapai.go │ ├── mail.go │ ├── openai.go │ ├── payment.go │ ├── pending_tasks.go │ ├── provider.go │ ├── signup.go │ ├── sms.go │ ├── stabilityai.go │ └── tasks.go ├── main.go ├── migrate ├── data │ ├── 20231129_ddl.go │ ├── 20231129_dml.go │ ├── 20240125_dml.go │ ├── 20240131_ddl.go │ ├── 20240221_ddl.go │ ├── 20240307_ddl.go │ ├── 20240315_mix.go │ ├── 20240411_ddl.go │ ├── 20240709_ddl.go │ └── 20240805_ddl.go ├── migrate.go ├── migrate_test.go ├── provider.go └── sql │ ├── 2023090801-ddl.sql │ ├── 2023090802-dml.sql │ ├── 2023092501-dml.sql │ ├── 2023100101-ddl.sql │ ├── 2023100901-ddl.sql │ ├── 2023101701-ddl.sql │ ├── 2023102701-ddl.sql │ ├── 2023103001-ddl.sql │ ├── 2023110901-dml.sql │ ├── 2023111301-ddl.sql │ ├── 2023111701-ddl.sql │ ├── 2023112001-ddl.sql │ ├── 2023112801-ddl.sql │ └── 2023112901-mix.sql ├── nginx.conf ├── pkg ├── ai │ ├── anthropic │ │ ├── anthropic.go │ │ ├── anthropic_test.go │ │ └── provider.go │ ├── baichuan │ │ ├── baichuan.go │ │ ├── baichuan_test.go │ │ └── provider.go │ ├── baidu │ │ ├── baidu.go │ │ ├── baidu_test.go │ │ ├── fake.go │ │ ├── image.go │ │ ├── image_test.go │ │ └── provider.go │ ├── bfl │ │ └── flux.go │ ├── chat │ │ ├── anthropic.go │ │ ├── baichuan.go │ │ ├── baichuan_test.go │ │ ├── baidu.go │ │ ├── baidu_test.go │ │ ├── chat.go │ │ ├── chat_test.go │ │ ├── dashscope.go │ │ ├── dashscope_test.go │ │ ├── deepseek.go │ │ ├── google.go │ │ ├── gpt360.go │ │ ├── moonshot.go │ │ ├── oneapi.go │ │ ├── openai.go │ │ ├── openai_test.go │ │ ├── openrouter.go │ │ ├── provider.go │ │ ├── sensenova.go │ │ ├── sensenova_test.go │ │ ├── sky.go │ │ ├── tencent.go │ │ ├── tencent_test.go │ │ ├── token.go │ │ ├── token_test.go │ │ ├── xfyun.go │ │ ├── xfyun_test.go │ │ └── zhipuai.go │ ├── control │ │ └── context.go │ ├── dashscope │ │ ├── dashscope.go │ │ ├── dashscope_test.go │ │ ├── facechain.go │ │ ├── facechain_test.go │ │ ├── image_generation.go │ │ ├── image_generation_test.go │ │ ├── provider.go │ │ ├── stable_diffusion.go │ │ ├── stable_diffusion_test.go │ │ ├── text2image.go │ │ ├── text2image_test.go │ │ ├── wordart.go │ │ └── wordart_test.go │ ├── deepai │ │ ├── deepai.go │ │ ├── deepai_test.go │ │ └── provider.go │ ├── deepseek │ │ ├── deepseek.go │ │ └── deepseek_test.go │ ├── fromston │ │ ├── custom.go │ │ ├── fromston.go │ │ ├── fromston_test.go │ │ └── provider.go │ ├── getimgai │ │ ├── getimgai.go │ │ ├── getimgai_test.go │ │ ├── models.go │ │ └── provider.go │ ├── google │ │ ├── gemini.go │ │ ├── gemini_test.go │ │ └── provider.go │ ├── gpt360 │ │ ├── gpt360.go │ │ ├── gpt360_test.go │ │ └── provider.go │ ├── leap │ │ ├── leap.go │ │ ├── leap_test.go │ │ └── provider.go │ ├── lepton │ │ ├── lepton.go │ │ ├── lepton_test.go │ │ └── provider.go │ ├── moonshot │ │ ├── moonshot.go │ │ ├── moonshot_test.go │ │ └── provider.go │ ├── oneapi │ │ ├── oneapi.go │ │ ├── oneapi_test.go │ │ └── provider.go │ ├── openai │ │ ├── client.go │ │ ├── config.go │ │ ├── image.go │ │ ├── image_test.go │ │ ├── openai.go │ │ ├── openai_test.go │ │ └── provider.go │ ├── openrouter │ │ ├── openrouter.go │ │ ├── openrouter_test.go │ │ └── provider.go │ ├── sensenova │ │ ├── provider.go │ │ ├── sensenova.go │ │ └── sensenova_test.go │ ├── sky │ │ ├── provider.go │ │ ├── tiangong.go │ │ └── tiangong_test.go │ ├── stabilityai │ │ ├── provider.go │ │ ├── stabilityai.go │ │ ├── stabilityai_test.go │ │ ├── v3.go │ │ ├── video.go │ │ └── video_test.go │ ├── streamwriter │ │ └── streamwriter.go │ ├── tencent │ │ ├── tencent.go │ │ └── tencent_test.go │ ├── tencentai │ │ ├── provider.go │ │ ├── tencent.go │ │ └── tencent_test.go │ ├── xfyun │ │ ├── provider.go │ │ ├── xfyun.go │ │ └── xfyun_test.go │ └── zhipuai │ │ ├── provider.go │ │ ├── zhipu_test.go │ │ └── zhipuai.go ├── aliyun │ ├── aliyun.go │ ├── aliyun_test.go │ └── provider.go ├── dingding │ ├── dingding.go │ ├── dingding_test.go │ └── provider.go ├── file │ ├── file.go │ └── provider.go ├── image │ ├── .gitignore │ ├── image.go │ └── image_test.go ├── mail │ ├── mail.go │ └── provider.go ├── misc │ ├── misc.go │ └── misc_test.go ├── proxy │ └── proxy.go ├── rate │ ├── limiter.go │ └── provider.go ├── redis │ └── provider.go ├── repo │ ├── article.go │ ├── cache.go │ ├── creative.go │ ├── event.go │ ├── group.go │ ├── message.go │ ├── model.go │ ├── model │ │ ├── alipay_history.orm.go │ │ ├── alipay_history.yaml │ │ ├── apple_pay_history.orm.go │ │ ├── apple_pay_history.yaml │ │ ├── article.orm.go │ │ ├── article.yaml │ │ ├── cache.orm.go │ │ ├── cache.yaml │ │ ├── channels.orm.go │ │ ├── channels.yaml │ │ ├── chat_messages_share.orm.go │ │ ├── chat_messages_share.yaml │ │ ├── chat_sys_prompt_example.orm.go │ │ ├── chat_sys_prompt_example.yaml │ │ ├── creative_gallery.orm.go │ │ ├── creative_gallery.yaml │ │ ├── creative_history.orm.go │ │ ├── creative_history.yaml │ │ ├── creative_island.orm.go │ │ ├── creative_island.yaml │ │ ├── debt.orm.go │ │ ├── debt.yaml │ │ ├── event.orm.go │ │ ├── event.yaml │ │ ├── group_chat.orm.go │ │ ├── group_chat.yaml │ │ ├── image_filters.orm.go │ │ ├── image_filters.yaml │ │ ├── image_models.orm.go │ │ ├── image_models.yaml │ │ ├── message.orm.go │ │ ├── message.yaml │ │ ├── models.orm.go │ │ ├── models.yaml │ │ ├── models_daily_free.orm.go │ │ ├── models_daily_free.yaml │ │ ├── notification.orm.go │ │ ├── notification.yaml │ │ ├── payment_history.orm.go │ │ ├── payment_history.yaml │ │ ├── prompt_example.orm.go │ │ ├── prompt_example.yaml │ │ ├── prompt_tags.orm.go │ │ ├── prompt_tags.yaml │ │ ├── queue_tasks.orm.go │ │ ├── queue_tasks.yaml │ │ ├── queue_tasks_pending.orm.go │ │ ├── queue_tasks_pending.yaml │ │ ├── quota.orm.go │ │ ├── quota.yaml │ │ ├── quota_statistics.orm.go │ │ ├── quota_statistics.yaml │ │ ├── quota_usage.orm.go │ │ ├── quota_usage.yaml │ │ ├── room.orm.go │ │ ├── room.yaml │ │ ├── room_gallery.orm.go │ │ ├── room_gallery.yaml │ │ ├── settings.orm.go │ │ ├── settings.yaml │ │ ├── storage_file.orm.go │ │ ├── storage_file.yaml │ │ ├── stripe_history.orm.go │ │ ├── stripe_history.yaml │ │ ├── user.orm.go │ │ ├── user.yaml │ │ ├── user_api_key.orm.go │ │ ├── user_api_key.yaml │ │ ├── user_custom.orm.go │ │ ├── user_custom.yaml │ │ ├── wechat_pay_history.orm.go │ │ └── wechat_pay_history.yaml │ ├── notification.go │ ├── payment.go │ ├── prompts.go │ ├── provider.go │ ├── queue.go │ ├── quota.go │ ├── rooms.go │ ├── setting.go │ ├── storage.go │ └── user.go ├── search │ ├── assistant.go │ ├── assistant_test.go │ ├── bigmodel.go │ ├── bigmodel_test.go │ ├── bocha_ai.go │ ├── bocha_ai_test.go │ ├── bocha_web.go │ ├── bocha_web_test.go │ ├── provider.go │ └── search.go ├── service │ ├── chat.go │ ├── gallery.go │ ├── provider.go │ ├── security.go │ ├── setting.go │ └── user.go ├── sms │ ├── provider.go │ └── sms.go ├── tencent │ ├── provider.go │ ├── tencent.go │ └── tencent_test.go ├── token │ ├── provider.go │ └── token.go ├── uploader │ ├── downloader.go │ ├── downloader_test.go │ ├── provider.go │ ├── uploader.go │ └── uploader_test.go ├── voice │ ├── azure.go │ ├── azure_test.go │ ├── minimax.go │ ├── minimax_test.go │ ├── openai.go │ ├── provider.go │ ├── voice.go │ └── voice_test.go ├── wechat │ ├── auth.go │ └── provider.go └── youdao │ ├── fake.go │ ├── provider.go │ ├── translate.go │ ├── youdao.go │ └── youdao_test.go ├── resources └── fonts │ ├── FangZhengHeiTiJianTi-1.ttf │ ├── JingNanMaiYuanTi-2.otf │ ├── LogoSCUnboundedSans-Regular-2.ttf │ ├── MaoKenShiJinHei-2.ttf │ ├── QianTuMaKeShouXieTi-2.ttf │ └── WenCangShuFang-2.ttf ├── server ├── auth │ ├── client.go │ └── user.go ├── controllers │ ├── admin │ │ ├── channels.go │ │ ├── creative.go │ │ ├── messages.go │ │ ├── models.go │ │ ├── payment.go │ │ ├── quota.go │ │ ├── setting.go │ │ └── user.go │ ├── apikey.go │ ├── apple-auth.go │ ├── article.go │ ├── auth.go │ ├── auth_test.go │ ├── chat.go │ ├── chat_test.go │ ├── common │ │ └── common.go │ ├── creative-island.go │ ├── creative.go │ ├── diagnosis.go │ ├── examples.go │ ├── group-chat.go │ ├── images.go │ ├── info.go │ ├── interapi │ │ └── manager.go │ ├── message.go │ ├── models.go │ ├── notification.go │ ├── openai.go │ ├── payment.go │ ├── payment_public.go │ ├── prompts.go │ ├── proxies.go │ ├── rooms.go │ ├── tasks.go │ ├── translate.go │ ├── upload.go │ ├── upload_test.go │ ├── users.go │ ├── v2 │ │ ├── creative-island.go │ │ ├── models.go │ │ ├── rooms.go │ │ └── user.go │ └── voice.go └── provider.go └── systemd.service /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/Dockerfile -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/README.md -------------------------------------------------------------------------------- /api/billing/billing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/api/billing/billing.go -------------------------------------------------------------------------------- /api/openai/openai.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/api/openai/openai.go -------------------------------------------------------------------------------- /api/provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/api/provider.go -------------------------------------------------------------------------------- /coins-table.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/coins-table.yaml -------------------------------------------------------------------------------- /config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/config.yaml -------------------------------------------------------------------------------- /config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/config/config.go -------------------------------------------------------------------------------- /config/flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/config/flag.go -------------------------------------------------------------------------------- /config/stripe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/config/stripe.go -------------------------------------------------------------------------------- /docker-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/docker-build.sh -------------------------------------------------------------------------------- /docs/AIdea 服务端功能依赖清单.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/docs/AIdea 服务端功能依赖清单.xlsx -------------------------------------------------------------------------------- /docs/alipay-configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/docs/alipay-configuration.md -------------------------------------------------------------------------------- /docs/appicon-320.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/docs/appicon-320.png -------------------------------------------------------------------------------- /docs/deploy-vip.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/docs/deploy-vip.md -------------------------------------------------------------------------------- /docs/deploy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/docs/deploy.md -------------------------------------------------------------------------------- /docs/docs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/docs/docs.go -------------------------------------------------------------------------------- /docs/swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/docs/swagger.json -------------------------------------------------------------------------------- /docs/swagger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/docs/swagger.yaml -------------------------------------------------------------------------------- /docs/table-tutorials.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/docs/table-tutorials.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/go.sum -------------------------------------------------------------------------------- /internal/coins/coins.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/internal/coins/coins.go -------------------------------------------------------------------------------- /internal/coins/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/internal/coins/constants.go -------------------------------------------------------------------------------- /internal/coins/free.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/internal/coins/free.go -------------------------------------------------------------------------------- /internal/coins/free_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/internal/coins/free_test.go -------------------------------------------------------------------------------- /internal/coins/price.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/internal/coins/price.go -------------------------------------------------------------------------------- /internal/coins/price_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/internal/coins/price_test.go -------------------------------------------------------------------------------- /internal/coins/products.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/internal/coins/products.go -------------------------------------------------------------------------------- /internal/coins/products_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/internal/coins/products_test.go -------------------------------------------------------------------------------- /internal/jobs/gallery_sort.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/internal/jobs/gallery_sort.go -------------------------------------------------------------------------------- /internal/jobs/gallery_sort_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/internal/jobs/gallery_sort_test.go -------------------------------------------------------------------------------- /internal/jobs/healthcheck.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/internal/jobs/healthcheck.go -------------------------------------------------------------------------------- /internal/jobs/healthcheck_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/internal/jobs/healthcheck_test.go -------------------------------------------------------------------------------- /internal/jobs/lock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/internal/jobs/lock.go -------------------------------------------------------------------------------- /internal/jobs/notification.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/internal/jobs/notification.go -------------------------------------------------------------------------------- /internal/jobs/notification_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/internal/jobs/notification_test.go -------------------------------------------------------------------------------- /internal/jobs/provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/internal/jobs/provider.go -------------------------------------------------------------------------------- /internal/jobs/quota_usage_statistics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/internal/jobs/quota_usage_statistics.go -------------------------------------------------------------------------------- /internal/jobs/quota_usage_statistics_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/internal/jobs/quota_usage_statistics_test.go -------------------------------------------------------------------------------- /internal/payment/alipay/alipay.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/internal/payment/alipay/alipay.go -------------------------------------------------------------------------------- /internal/payment/alipay/alipay_fake.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/internal/payment/alipay/alipay_fake.go -------------------------------------------------------------------------------- /internal/payment/alipay/alipay_impl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/internal/payment/alipay/alipay_impl.go -------------------------------------------------------------------------------- /internal/payment/alipay/alipay_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/internal/payment/alipay/alipay_test.go -------------------------------------------------------------------------------- /internal/payment/alipay/provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/internal/payment/alipay/provider.go -------------------------------------------------------------------------------- /internal/payment/applepay/applepay.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/internal/payment/applepay/applepay.go -------------------------------------------------------------------------------- /internal/payment/applepay/provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/internal/payment/applepay/provider.go -------------------------------------------------------------------------------- /internal/payment/wechatpay/fake.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/internal/payment/wechatpay/fake.go -------------------------------------------------------------------------------- /internal/payment/wechatpay/provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/internal/payment/wechatpay/provider.go -------------------------------------------------------------------------------- /internal/payment/wechatpay/wechatpay.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/internal/payment/wechatpay/wechatpay.go -------------------------------------------------------------------------------- /internal/payment/wechatpay/wechatpay_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/internal/payment/wechatpay/wechatpay_test.go -------------------------------------------------------------------------------- /internal/queue/artistic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/internal/queue/artistic.go -------------------------------------------------------------------------------- /internal/queue/bind_phone.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/internal/queue/bind_phone.go -------------------------------------------------------------------------------- /internal/queue/consumer/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/internal/queue/consumer/log.go -------------------------------------------------------------------------------- /internal/queue/consumer/provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/internal/queue/consumer/provider.go -------------------------------------------------------------------------------- /internal/queue/dalle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/internal/queue/dalle.go -------------------------------------------------------------------------------- /internal/queue/dashscope_image.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/internal/queue/dashscope_image.go -------------------------------------------------------------------------------- /internal/queue/deepai.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/internal/queue/deepai.go -------------------------------------------------------------------------------- /internal/queue/fromston.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/internal/queue/fromston.go -------------------------------------------------------------------------------- /internal/queue/getimgai.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/internal/queue/getimgai.go -------------------------------------------------------------------------------- /internal/queue/group_chat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/internal/queue/group_chat.go -------------------------------------------------------------------------------- /internal/queue/image.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/internal/queue/image.go -------------------------------------------------------------------------------- /internal/queue/image_colorization.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/internal/queue/image_colorization.go -------------------------------------------------------------------------------- /internal/queue/image_downloader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/internal/queue/image_downloader.go -------------------------------------------------------------------------------- /internal/queue/image_to_video.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/internal/queue/image_to_video.go -------------------------------------------------------------------------------- /internal/queue/image_upscale.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/internal/queue/image_upscale.go -------------------------------------------------------------------------------- /internal/queue/image_upscale_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/internal/queue/image_upscale_test.go -------------------------------------------------------------------------------- /internal/queue/leapai.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/internal/queue/leapai.go -------------------------------------------------------------------------------- /internal/queue/mail.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/internal/queue/mail.go -------------------------------------------------------------------------------- /internal/queue/openai.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/internal/queue/openai.go -------------------------------------------------------------------------------- /internal/queue/payment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/internal/queue/payment.go -------------------------------------------------------------------------------- /internal/queue/pending_tasks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/internal/queue/pending_tasks.go -------------------------------------------------------------------------------- /internal/queue/provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/internal/queue/provider.go -------------------------------------------------------------------------------- /internal/queue/signup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/internal/queue/signup.go -------------------------------------------------------------------------------- /internal/queue/sms.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/internal/queue/sms.go -------------------------------------------------------------------------------- /internal/queue/stabilityai.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/internal/queue/stabilityai.go -------------------------------------------------------------------------------- /internal/queue/tasks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/internal/queue/tasks.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/main.go -------------------------------------------------------------------------------- /migrate/data/20231129_ddl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/migrate/data/20231129_ddl.go -------------------------------------------------------------------------------- /migrate/data/20231129_dml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/migrate/data/20231129_dml.go -------------------------------------------------------------------------------- /migrate/data/20240125_dml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/migrate/data/20240125_dml.go -------------------------------------------------------------------------------- /migrate/data/20240131_ddl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/migrate/data/20240131_ddl.go -------------------------------------------------------------------------------- /migrate/data/20240221_ddl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/migrate/data/20240221_ddl.go -------------------------------------------------------------------------------- /migrate/data/20240307_ddl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/migrate/data/20240307_ddl.go -------------------------------------------------------------------------------- /migrate/data/20240315_mix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/migrate/data/20240315_mix.go -------------------------------------------------------------------------------- /migrate/data/20240411_ddl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/migrate/data/20240411_ddl.go -------------------------------------------------------------------------------- /migrate/data/20240709_ddl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/migrate/data/20240709_ddl.go -------------------------------------------------------------------------------- /migrate/data/20240805_ddl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/migrate/data/20240805_ddl.go -------------------------------------------------------------------------------- /migrate/migrate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/migrate/migrate.go -------------------------------------------------------------------------------- /migrate/migrate_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/migrate/migrate_test.go -------------------------------------------------------------------------------- /migrate/provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/migrate/provider.go -------------------------------------------------------------------------------- /migrate/sql/2023090801-ddl.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/migrate/sql/2023090801-ddl.sql -------------------------------------------------------------------------------- /migrate/sql/2023090802-dml.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/migrate/sql/2023090802-dml.sql -------------------------------------------------------------------------------- /migrate/sql/2023092501-dml.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/migrate/sql/2023092501-dml.sql -------------------------------------------------------------------------------- /migrate/sql/2023100101-ddl.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/migrate/sql/2023100101-ddl.sql -------------------------------------------------------------------------------- /migrate/sql/2023100901-ddl.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/migrate/sql/2023100901-ddl.sql -------------------------------------------------------------------------------- /migrate/sql/2023101701-ddl.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/migrate/sql/2023101701-ddl.sql -------------------------------------------------------------------------------- /migrate/sql/2023102701-ddl.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/migrate/sql/2023102701-ddl.sql -------------------------------------------------------------------------------- /migrate/sql/2023103001-ddl.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/migrate/sql/2023103001-ddl.sql -------------------------------------------------------------------------------- /migrate/sql/2023110901-dml.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/migrate/sql/2023110901-dml.sql -------------------------------------------------------------------------------- /migrate/sql/2023111301-ddl.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/migrate/sql/2023111301-ddl.sql -------------------------------------------------------------------------------- /migrate/sql/2023111701-ddl.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/migrate/sql/2023111701-ddl.sql -------------------------------------------------------------------------------- /migrate/sql/2023112001-ddl.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/migrate/sql/2023112001-ddl.sql -------------------------------------------------------------------------------- /migrate/sql/2023112801-ddl.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/migrate/sql/2023112801-ddl.sql -------------------------------------------------------------------------------- /migrate/sql/2023112901-mix.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/migrate/sql/2023112901-mix.sql -------------------------------------------------------------------------------- /nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/nginx.conf -------------------------------------------------------------------------------- /pkg/ai/anthropic/anthropic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/ai/anthropic/anthropic.go -------------------------------------------------------------------------------- /pkg/ai/anthropic/anthropic_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/ai/anthropic/anthropic_test.go -------------------------------------------------------------------------------- /pkg/ai/anthropic/provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/ai/anthropic/provider.go -------------------------------------------------------------------------------- /pkg/ai/baichuan/baichuan.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/ai/baichuan/baichuan.go -------------------------------------------------------------------------------- /pkg/ai/baichuan/baichuan_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/ai/baichuan/baichuan_test.go -------------------------------------------------------------------------------- /pkg/ai/baichuan/provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/ai/baichuan/provider.go -------------------------------------------------------------------------------- /pkg/ai/baidu/baidu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/ai/baidu/baidu.go -------------------------------------------------------------------------------- /pkg/ai/baidu/baidu_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/ai/baidu/baidu_test.go -------------------------------------------------------------------------------- /pkg/ai/baidu/fake.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/ai/baidu/fake.go -------------------------------------------------------------------------------- /pkg/ai/baidu/image.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/ai/baidu/image.go -------------------------------------------------------------------------------- /pkg/ai/baidu/image_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/ai/baidu/image_test.go -------------------------------------------------------------------------------- /pkg/ai/baidu/provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/ai/baidu/provider.go -------------------------------------------------------------------------------- /pkg/ai/bfl/flux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/ai/bfl/flux.go -------------------------------------------------------------------------------- /pkg/ai/chat/anthropic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/ai/chat/anthropic.go -------------------------------------------------------------------------------- /pkg/ai/chat/baichuan.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/ai/chat/baichuan.go -------------------------------------------------------------------------------- /pkg/ai/chat/baichuan_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/ai/chat/baichuan_test.go -------------------------------------------------------------------------------- /pkg/ai/chat/baidu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/ai/chat/baidu.go -------------------------------------------------------------------------------- /pkg/ai/chat/baidu_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/ai/chat/baidu_test.go -------------------------------------------------------------------------------- /pkg/ai/chat/chat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/ai/chat/chat.go -------------------------------------------------------------------------------- /pkg/ai/chat/chat_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/ai/chat/chat_test.go -------------------------------------------------------------------------------- /pkg/ai/chat/dashscope.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/ai/chat/dashscope.go -------------------------------------------------------------------------------- /pkg/ai/chat/dashscope_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/ai/chat/dashscope_test.go -------------------------------------------------------------------------------- /pkg/ai/chat/deepseek.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/ai/chat/deepseek.go -------------------------------------------------------------------------------- /pkg/ai/chat/google.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/ai/chat/google.go -------------------------------------------------------------------------------- /pkg/ai/chat/gpt360.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/ai/chat/gpt360.go -------------------------------------------------------------------------------- /pkg/ai/chat/moonshot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/ai/chat/moonshot.go -------------------------------------------------------------------------------- /pkg/ai/chat/oneapi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/ai/chat/oneapi.go -------------------------------------------------------------------------------- /pkg/ai/chat/openai.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/ai/chat/openai.go -------------------------------------------------------------------------------- /pkg/ai/chat/openai_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/ai/chat/openai_test.go -------------------------------------------------------------------------------- /pkg/ai/chat/openrouter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/ai/chat/openrouter.go -------------------------------------------------------------------------------- /pkg/ai/chat/provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/ai/chat/provider.go -------------------------------------------------------------------------------- /pkg/ai/chat/sensenova.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/ai/chat/sensenova.go -------------------------------------------------------------------------------- /pkg/ai/chat/sensenova_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/ai/chat/sensenova_test.go -------------------------------------------------------------------------------- /pkg/ai/chat/sky.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/ai/chat/sky.go -------------------------------------------------------------------------------- /pkg/ai/chat/tencent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/ai/chat/tencent.go -------------------------------------------------------------------------------- /pkg/ai/chat/tencent_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/ai/chat/tencent_test.go -------------------------------------------------------------------------------- /pkg/ai/chat/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/ai/chat/token.go -------------------------------------------------------------------------------- /pkg/ai/chat/token_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/ai/chat/token_test.go -------------------------------------------------------------------------------- /pkg/ai/chat/xfyun.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/ai/chat/xfyun.go -------------------------------------------------------------------------------- /pkg/ai/chat/xfyun_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/ai/chat/xfyun_test.go -------------------------------------------------------------------------------- /pkg/ai/chat/zhipuai.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/ai/chat/zhipuai.go -------------------------------------------------------------------------------- /pkg/ai/control/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/ai/control/context.go -------------------------------------------------------------------------------- /pkg/ai/dashscope/dashscope.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/ai/dashscope/dashscope.go -------------------------------------------------------------------------------- /pkg/ai/dashscope/dashscope_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/ai/dashscope/dashscope_test.go -------------------------------------------------------------------------------- /pkg/ai/dashscope/facechain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/ai/dashscope/facechain.go -------------------------------------------------------------------------------- /pkg/ai/dashscope/facechain_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/ai/dashscope/facechain_test.go -------------------------------------------------------------------------------- /pkg/ai/dashscope/image_generation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/ai/dashscope/image_generation.go -------------------------------------------------------------------------------- /pkg/ai/dashscope/image_generation_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/ai/dashscope/image_generation_test.go -------------------------------------------------------------------------------- /pkg/ai/dashscope/provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/ai/dashscope/provider.go -------------------------------------------------------------------------------- /pkg/ai/dashscope/stable_diffusion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/ai/dashscope/stable_diffusion.go -------------------------------------------------------------------------------- /pkg/ai/dashscope/stable_diffusion_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/ai/dashscope/stable_diffusion_test.go -------------------------------------------------------------------------------- /pkg/ai/dashscope/text2image.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/ai/dashscope/text2image.go -------------------------------------------------------------------------------- /pkg/ai/dashscope/text2image_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/ai/dashscope/text2image_test.go -------------------------------------------------------------------------------- /pkg/ai/dashscope/wordart.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/ai/dashscope/wordart.go -------------------------------------------------------------------------------- /pkg/ai/dashscope/wordart_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/ai/dashscope/wordart_test.go -------------------------------------------------------------------------------- /pkg/ai/deepai/deepai.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/ai/deepai/deepai.go -------------------------------------------------------------------------------- /pkg/ai/deepai/deepai_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/ai/deepai/deepai_test.go -------------------------------------------------------------------------------- /pkg/ai/deepai/provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/ai/deepai/provider.go -------------------------------------------------------------------------------- /pkg/ai/deepseek/deepseek.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/ai/deepseek/deepseek.go -------------------------------------------------------------------------------- /pkg/ai/deepseek/deepseek_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/ai/deepseek/deepseek_test.go -------------------------------------------------------------------------------- /pkg/ai/fromston/custom.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/ai/fromston/custom.go -------------------------------------------------------------------------------- /pkg/ai/fromston/fromston.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/ai/fromston/fromston.go -------------------------------------------------------------------------------- /pkg/ai/fromston/fromston_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/ai/fromston/fromston_test.go -------------------------------------------------------------------------------- /pkg/ai/fromston/provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/ai/fromston/provider.go -------------------------------------------------------------------------------- /pkg/ai/getimgai/getimgai.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/ai/getimgai/getimgai.go -------------------------------------------------------------------------------- /pkg/ai/getimgai/getimgai_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/ai/getimgai/getimgai_test.go -------------------------------------------------------------------------------- /pkg/ai/getimgai/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/ai/getimgai/models.go -------------------------------------------------------------------------------- /pkg/ai/getimgai/provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/ai/getimgai/provider.go -------------------------------------------------------------------------------- /pkg/ai/google/gemini.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/ai/google/gemini.go -------------------------------------------------------------------------------- /pkg/ai/google/gemini_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/ai/google/gemini_test.go -------------------------------------------------------------------------------- /pkg/ai/google/provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/ai/google/provider.go -------------------------------------------------------------------------------- /pkg/ai/gpt360/gpt360.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/ai/gpt360/gpt360.go -------------------------------------------------------------------------------- /pkg/ai/gpt360/gpt360_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/ai/gpt360/gpt360_test.go -------------------------------------------------------------------------------- /pkg/ai/gpt360/provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/ai/gpt360/provider.go -------------------------------------------------------------------------------- /pkg/ai/leap/leap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/ai/leap/leap.go -------------------------------------------------------------------------------- /pkg/ai/leap/leap_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/ai/leap/leap_test.go -------------------------------------------------------------------------------- /pkg/ai/leap/provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/ai/leap/provider.go -------------------------------------------------------------------------------- /pkg/ai/lepton/lepton.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/ai/lepton/lepton.go -------------------------------------------------------------------------------- /pkg/ai/lepton/lepton_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/ai/lepton/lepton_test.go -------------------------------------------------------------------------------- /pkg/ai/lepton/provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/ai/lepton/provider.go -------------------------------------------------------------------------------- /pkg/ai/moonshot/moonshot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/ai/moonshot/moonshot.go -------------------------------------------------------------------------------- /pkg/ai/moonshot/moonshot_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/ai/moonshot/moonshot_test.go -------------------------------------------------------------------------------- /pkg/ai/moonshot/provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/ai/moonshot/provider.go -------------------------------------------------------------------------------- /pkg/ai/oneapi/oneapi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/ai/oneapi/oneapi.go -------------------------------------------------------------------------------- /pkg/ai/oneapi/oneapi_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/ai/oneapi/oneapi_test.go -------------------------------------------------------------------------------- /pkg/ai/oneapi/provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/ai/oneapi/provider.go -------------------------------------------------------------------------------- /pkg/ai/openai/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/ai/openai/client.go -------------------------------------------------------------------------------- /pkg/ai/openai/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/ai/openai/config.go -------------------------------------------------------------------------------- /pkg/ai/openai/image.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/ai/openai/image.go -------------------------------------------------------------------------------- /pkg/ai/openai/image_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/ai/openai/image_test.go -------------------------------------------------------------------------------- /pkg/ai/openai/openai.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/ai/openai/openai.go -------------------------------------------------------------------------------- /pkg/ai/openai/openai_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/ai/openai/openai_test.go -------------------------------------------------------------------------------- /pkg/ai/openai/provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/ai/openai/provider.go -------------------------------------------------------------------------------- /pkg/ai/openrouter/openrouter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/ai/openrouter/openrouter.go -------------------------------------------------------------------------------- /pkg/ai/openrouter/openrouter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/ai/openrouter/openrouter_test.go -------------------------------------------------------------------------------- /pkg/ai/openrouter/provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/ai/openrouter/provider.go -------------------------------------------------------------------------------- /pkg/ai/sensenova/provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/ai/sensenova/provider.go -------------------------------------------------------------------------------- /pkg/ai/sensenova/sensenova.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/ai/sensenova/sensenova.go -------------------------------------------------------------------------------- /pkg/ai/sensenova/sensenova_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/ai/sensenova/sensenova_test.go -------------------------------------------------------------------------------- /pkg/ai/sky/provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/ai/sky/provider.go -------------------------------------------------------------------------------- /pkg/ai/sky/tiangong.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/ai/sky/tiangong.go -------------------------------------------------------------------------------- /pkg/ai/sky/tiangong_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/ai/sky/tiangong_test.go -------------------------------------------------------------------------------- /pkg/ai/stabilityai/provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/ai/stabilityai/provider.go -------------------------------------------------------------------------------- /pkg/ai/stabilityai/stabilityai.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/ai/stabilityai/stabilityai.go -------------------------------------------------------------------------------- /pkg/ai/stabilityai/stabilityai_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/ai/stabilityai/stabilityai_test.go -------------------------------------------------------------------------------- /pkg/ai/stabilityai/v3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/ai/stabilityai/v3.go -------------------------------------------------------------------------------- /pkg/ai/stabilityai/video.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/ai/stabilityai/video.go -------------------------------------------------------------------------------- /pkg/ai/stabilityai/video_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/ai/stabilityai/video_test.go -------------------------------------------------------------------------------- /pkg/ai/streamwriter/streamwriter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/ai/streamwriter/streamwriter.go -------------------------------------------------------------------------------- /pkg/ai/tencent/tencent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/ai/tencent/tencent.go -------------------------------------------------------------------------------- /pkg/ai/tencent/tencent_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/ai/tencent/tencent_test.go -------------------------------------------------------------------------------- /pkg/ai/tencentai/provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/ai/tencentai/provider.go -------------------------------------------------------------------------------- /pkg/ai/tencentai/tencent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/ai/tencentai/tencent.go -------------------------------------------------------------------------------- /pkg/ai/tencentai/tencent_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/ai/tencentai/tencent_test.go -------------------------------------------------------------------------------- /pkg/ai/xfyun/provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/ai/xfyun/provider.go -------------------------------------------------------------------------------- /pkg/ai/xfyun/xfyun.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/ai/xfyun/xfyun.go -------------------------------------------------------------------------------- /pkg/ai/xfyun/xfyun_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/ai/xfyun/xfyun_test.go -------------------------------------------------------------------------------- /pkg/ai/zhipuai/provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/ai/zhipuai/provider.go -------------------------------------------------------------------------------- /pkg/ai/zhipuai/zhipu_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/ai/zhipuai/zhipu_test.go -------------------------------------------------------------------------------- /pkg/ai/zhipuai/zhipuai.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/ai/zhipuai/zhipuai.go -------------------------------------------------------------------------------- /pkg/aliyun/aliyun.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/aliyun/aliyun.go -------------------------------------------------------------------------------- /pkg/aliyun/aliyun_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/aliyun/aliyun_test.go -------------------------------------------------------------------------------- /pkg/aliyun/provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/aliyun/provider.go -------------------------------------------------------------------------------- /pkg/dingding/dingding.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/dingding/dingding.go -------------------------------------------------------------------------------- /pkg/dingding/dingding_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/dingding/dingding_test.go -------------------------------------------------------------------------------- /pkg/dingding/provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/dingding/provider.go -------------------------------------------------------------------------------- /pkg/file/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/file/file.go -------------------------------------------------------------------------------- /pkg/file/provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/file/provider.go -------------------------------------------------------------------------------- /pkg/image/.gitignore: -------------------------------------------------------------------------------- 1 | *.png -------------------------------------------------------------------------------- /pkg/image/image.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/image/image.go -------------------------------------------------------------------------------- /pkg/image/image_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/image/image_test.go -------------------------------------------------------------------------------- /pkg/mail/mail.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/mail/mail.go -------------------------------------------------------------------------------- /pkg/mail/provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/mail/provider.go -------------------------------------------------------------------------------- /pkg/misc/misc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/misc/misc.go -------------------------------------------------------------------------------- /pkg/misc/misc_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/misc/misc_test.go -------------------------------------------------------------------------------- /pkg/proxy/proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/proxy/proxy.go -------------------------------------------------------------------------------- /pkg/rate/limiter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/rate/limiter.go -------------------------------------------------------------------------------- /pkg/rate/provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/rate/provider.go -------------------------------------------------------------------------------- /pkg/redis/provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/redis/provider.go -------------------------------------------------------------------------------- /pkg/repo/article.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/repo/article.go -------------------------------------------------------------------------------- /pkg/repo/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/repo/cache.go -------------------------------------------------------------------------------- /pkg/repo/creative.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/repo/creative.go -------------------------------------------------------------------------------- /pkg/repo/event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/repo/event.go -------------------------------------------------------------------------------- /pkg/repo/group.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/repo/group.go -------------------------------------------------------------------------------- /pkg/repo/message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/repo/message.go -------------------------------------------------------------------------------- /pkg/repo/model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/repo/model.go -------------------------------------------------------------------------------- /pkg/repo/model/alipay_history.orm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/repo/model/alipay_history.orm.go -------------------------------------------------------------------------------- /pkg/repo/model/alipay_history.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/repo/model/alipay_history.yaml -------------------------------------------------------------------------------- /pkg/repo/model/apple_pay_history.orm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/repo/model/apple_pay_history.orm.go -------------------------------------------------------------------------------- /pkg/repo/model/apple_pay_history.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/repo/model/apple_pay_history.yaml -------------------------------------------------------------------------------- /pkg/repo/model/article.orm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/repo/model/article.orm.go -------------------------------------------------------------------------------- /pkg/repo/model/article.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/repo/model/article.yaml -------------------------------------------------------------------------------- /pkg/repo/model/cache.orm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/repo/model/cache.orm.go -------------------------------------------------------------------------------- /pkg/repo/model/cache.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/repo/model/cache.yaml -------------------------------------------------------------------------------- /pkg/repo/model/channels.orm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/repo/model/channels.orm.go -------------------------------------------------------------------------------- /pkg/repo/model/channels.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/repo/model/channels.yaml -------------------------------------------------------------------------------- /pkg/repo/model/chat_messages_share.orm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/repo/model/chat_messages_share.orm.go -------------------------------------------------------------------------------- /pkg/repo/model/chat_messages_share.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/repo/model/chat_messages_share.yaml -------------------------------------------------------------------------------- /pkg/repo/model/chat_sys_prompt_example.orm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/repo/model/chat_sys_prompt_example.orm.go -------------------------------------------------------------------------------- /pkg/repo/model/chat_sys_prompt_example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/repo/model/chat_sys_prompt_example.yaml -------------------------------------------------------------------------------- /pkg/repo/model/creative_gallery.orm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/repo/model/creative_gallery.orm.go -------------------------------------------------------------------------------- /pkg/repo/model/creative_gallery.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/repo/model/creative_gallery.yaml -------------------------------------------------------------------------------- /pkg/repo/model/creative_history.orm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/repo/model/creative_history.orm.go -------------------------------------------------------------------------------- /pkg/repo/model/creative_history.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/repo/model/creative_history.yaml -------------------------------------------------------------------------------- /pkg/repo/model/creative_island.orm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/repo/model/creative_island.orm.go -------------------------------------------------------------------------------- /pkg/repo/model/creative_island.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/repo/model/creative_island.yaml -------------------------------------------------------------------------------- /pkg/repo/model/debt.orm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/repo/model/debt.orm.go -------------------------------------------------------------------------------- /pkg/repo/model/debt.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/repo/model/debt.yaml -------------------------------------------------------------------------------- /pkg/repo/model/event.orm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/repo/model/event.orm.go -------------------------------------------------------------------------------- /pkg/repo/model/event.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/repo/model/event.yaml -------------------------------------------------------------------------------- /pkg/repo/model/group_chat.orm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/repo/model/group_chat.orm.go -------------------------------------------------------------------------------- /pkg/repo/model/group_chat.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/repo/model/group_chat.yaml -------------------------------------------------------------------------------- /pkg/repo/model/image_filters.orm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/repo/model/image_filters.orm.go -------------------------------------------------------------------------------- /pkg/repo/model/image_filters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/repo/model/image_filters.yaml -------------------------------------------------------------------------------- /pkg/repo/model/image_models.orm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/repo/model/image_models.orm.go -------------------------------------------------------------------------------- /pkg/repo/model/image_models.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/repo/model/image_models.yaml -------------------------------------------------------------------------------- /pkg/repo/model/message.orm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/repo/model/message.orm.go -------------------------------------------------------------------------------- /pkg/repo/model/message.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/repo/model/message.yaml -------------------------------------------------------------------------------- /pkg/repo/model/models.orm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/repo/model/models.orm.go -------------------------------------------------------------------------------- /pkg/repo/model/models.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/repo/model/models.yaml -------------------------------------------------------------------------------- /pkg/repo/model/models_daily_free.orm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/repo/model/models_daily_free.orm.go -------------------------------------------------------------------------------- /pkg/repo/model/models_daily_free.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/repo/model/models_daily_free.yaml -------------------------------------------------------------------------------- /pkg/repo/model/notification.orm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/repo/model/notification.orm.go -------------------------------------------------------------------------------- /pkg/repo/model/notification.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/repo/model/notification.yaml -------------------------------------------------------------------------------- /pkg/repo/model/payment_history.orm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/repo/model/payment_history.orm.go -------------------------------------------------------------------------------- /pkg/repo/model/payment_history.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/repo/model/payment_history.yaml -------------------------------------------------------------------------------- /pkg/repo/model/prompt_example.orm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/repo/model/prompt_example.orm.go -------------------------------------------------------------------------------- /pkg/repo/model/prompt_example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/repo/model/prompt_example.yaml -------------------------------------------------------------------------------- /pkg/repo/model/prompt_tags.orm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/repo/model/prompt_tags.orm.go -------------------------------------------------------------------------------- /pkg/repo/model/prompt_tags.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/repo/model/prompt_tags.yaml -------------------------------------------------------------------------------- /pkg/repo/model/queue_tasks.orm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/repo/model/queue_tasks.orm.go -------------------------------------------------------------------------------- /pkg/repo/model/queue_tasks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/repo/model/queue_tasks.yaml -------------------------------------------------------------------------------- /pkg/repo/model/queue_tasks_pending.orm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/repo/model/queue_tasks_pending.orm.go -------------------------------------------------------------------------------- /pkg/repo/model/queue_tasks_pending.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/repo/model/queue_tasks_pending.yaml -------------------------------------------------------------------------------- /pkg/repo/model/quota.orm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/repo/model/quota.orm.go -------------------------------------------------------------------------------- /pkg/repo/model/quota.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/repo/model/quota.yaml -------------------------------------------------------------------------------- /pkg/repo/model/quota_statistics.orm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/repo/model/quota_statistics.orm.go -------------------------------------------------------------------------------- /pkg/repo/model/quota_statistics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/repo/model/quota_statistics.yaml -------------------------------------------------------------------------------- /pkg/repo/model/quota_usage.orm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/repo/model/quota_usage.orm.go -------------------------------------------------------------------------------- /pkg/repo/model/quota_usage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/repo/model/quota_usage.yaml -------------------------------------------------------------------------------- /pkg/repo/model/room.orm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/repo/model/room.orm.go -------------------------------------------------------------------------------- /pkg/repo/model/room.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/repo/model/room.yaml -------------------------------------------------------------------------------- /pkg/repo/model/room_gallery.orm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/repo/model/room_gallery.orm.go -------------------------------------------------------------------------------- /pkg/repo/model/room_gallery.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/repo/model/room_gallery.yaml -------------------------------------------------------------------------------- /pkg/repo/model/settings.orm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/repo/model/settings.orm.go -------------------------------------------------------------------------------- /pkg/repo/model/settings.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/repo/model/settings.yaml -------------------------------------------------------------------------------- /pkg/repo/model/storage_file.orm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/repo/model/storage_file.orm.go -------------------------------------------------------------------------------- /pkg/repo/model/storage_file.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/repo/model/storage_file.yaml -------------------------------------------------------------------------------- /pkg/repo/model/stripe_history.orm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/repo/model/stripe_history.orm.go -------------------------------------------------------------------------------- /pkg/repo/model/stripe_history.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/repo/model/stripe_history.yaml -------------------------------------------------------------------------------- /pkg/repo/model/user.orm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/repo/model/user.orm.go -------------------------------------------------------------------------------- /pkg/repo/model/user.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/repo/model/user.yaml -------------------------------------------------------------------------------- /pkg/repo/model/user_api_key.orm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/repo/model/user_api_key.orm.go -------------------------------------------------------------------------------- /pkg/repo/model/user_api_key.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/repo/model/user_api_key.yaml -------------------------------------------------------------------------------- /pkg/repo/model/user_custom.orm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/repo/model/user_custom.orm.go -------------------------------------------------------------------------------- /pkg/repo/model/user_custom.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/repo/model/user_custom.yaml -------------------------------------------------------------------------------- /pkg/repo/model/wechat_pay_history.orm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/repo/model/wechat_pay_history.orm.go -------------------------------------------------------------------------------- /pkg/repo/model/wechat_pay_history.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/repo/model/wechat_pay_history.yaml -------------------------------------------------------------------------------- /pkg/repo/notification.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/repo/notification.go -------------------------------------------------------------------------------- /pkg/repo/payment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/repo/payment.go -------------------------------------------------------------------------------- /pkg/repo/prompts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/repo/prompts.go -------------------------------------------------------------------------------- /pkg/repo/provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/repo/provider.go -------------------------------------------------------------------------------- /pkg/repo/queue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/repo/queue.go -------------------------------------------------------------------------------- /pkg/repo/quota.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/repo/quota.go -------------------------------------------------------------------------------- /pkg/repo/rooms.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/repo/rooms.go -------------------------------------------------------------------------------- /pkg/repo/setting.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/repo/setting.go -------------------------------------------------------------------------------- /pkg/repo/storage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/repo/storage.go -------------------------------------------------------------------------------- /pkg/repo/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/repo/user.go -------------------------------------------------------------------------------- /pkg/search/assistant.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/search/assistant.go -------------------------------------------------------------------------------- /pkg/search/assistant_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/search/assistant_test.go -------------------------------------------------------------------------------- /pkg/search/bigmodel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/search/bigmodel.go -------------------------------------------------------------------------------- /pkg/search/bigmodel_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/search/bigmodel_test.go -------------------------------------------------------------------------------- /pkg/search/bocha_ai.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/search/bocha_ai.go -------------------------------------------------------------------------------- /pkg/search/bocha_ai_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/search/bocha_ai_test.go -------------------------------------------------------------------------------- /pkg/search/bocha_web.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/search/bocha_web.go -------------------------------------------------------------------------------- /pkg/search/bocha_web_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/search/bocha_web_test.go -------------------------------------------------------------------------------- /pkg/search/provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/search/provider.go -------------------------------------------------------------------------------- /pkg/search/search.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/search/search.go -------------------------------------------------------------------------------- /pkg/service/chat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/service/chat.go -------------------------------------------------------------------------------- /pkg/service/gallery.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/service/gallery.go -------------------------------------------------------------------------------- /pkg/service/provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/service/provider.go -------------------------------------------------------------------------------- /pkg/service/security.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/service/security.go -------------------------------------------------------------------------------- /pkg/service/setting.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/service/setting.go -------------------------------------------------------------------------------- /pkg/service/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/service/user.go -------------------------------------------------------------------------------- /pkg/sms/provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/sms/provider.go -------------------------------------------------------------------------------- /pkg/sms/sms.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/sms/sms.go -------------------------------------------------------------------------------- /pkg/tencent/provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/tencent/provider.go -------------------------------------------------------------------------------- /pkg/tencent/tencent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/tencent/tencent.go -------------------------------------------------------------------------------- /pkg/tencent/tencent_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/tencent/tencent_test.go -------------------------------------------------------------------------------- /pkg/token/provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/token/provider.go -------------------------------------------------------------------------------- /pkg/token/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/token/token.go -------------------------------------------------------------------------------- /pkg/uploader/downloader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/uploader/downloader.go -------------------------------------------------------------------------------- /pkg/uploader/downloader_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/uploader/downloader_test.go -------------------------------------------------------------------------------- /pkg/uploader/provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/uploader/provider.go -------------------------------------------------------------------------------- /pkg/uploader/uploader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/uploader/uploader.go -------------------------------------------------------------------------------- /pkg/uploader/uploader_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/uploader/uploader_test.go -------------------------------------------------------------------------------- /pkg/voice/azure.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/voice/azure.go -------------------------------------------------------------------------------- /pkg/voice/azure_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/voice/azure_test.go -------------------------------------------------------------------------------- /pkg/voice/minimax.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/voice/minimax.go -------------------------------------------------------------------------------- /pkg/voice/minimax_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/voice/minimax_test.go -------------------------------------------------------------------------------- /pkg/voice/openai.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/voice/openai.go -------------------------------------------------------------------------------- /pkg/voice/provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/voice/provider.go -------------------------------------------------------------------------------- /pkg/voice/voice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/voice/voice.go -------------------------------------------------------------------------------- /pkg/voice/voice_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/voice/voice_test.go -------------------------------------------------------------------------------- /pkg/wechat/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/wechat/auth.go -------------------------------------------------------------------------------- /pkg/wechat/provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/wechat/provider.go -------------------------------------------------------------------------------- /pkg/youdao/fake.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/youdao/fake.go -------------------------------------------------------------------------------- /pkg/youdao/provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/youdao/provider.go -------------------------------------------------------------------------------- /pkg/youdao/translate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/youdao/translate.go -------------------------------------------------------------------------------- /pkg/youdao/youdao.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/youdao/youdao.go -------------------------------------------------------------------------------- /pkg/youdao/youdao_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/pkg/youdao/youdao_test.go -------------------------------------------------------------------------------- /resources/fonts/FangZhengHeiTiJianTi-1.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/resources/fonts/FangZhengHeiTiJianTi-1.ttf -------------------------------------------------------------------------------- /resources/fonts/JingNanMaiYuanTi-2.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/resources/fonts/JingNanMaiYuanTi-2.otf -------------------------------------------------------------------------------- /resources/fonts/LogoSCUnboundedSans-Regular-2.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/resources/fonts/LogoSCUnboundedSans-Regular-2.ttf -------------------------------------------------------------------------------- /resources/fonts/MaoKenShiJinHei-2.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/resources/fonts/MaoKenShiJinHei-2.ttf -------------------------------------------------------------------------------- /resources/fonts/QianTuMaKeShouXieTi-2.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/resources/fonts/QianTuMaKeShouXieTi-2.ttf -------------------------------------------------------------------------------- /resources/fonts/WenCangShuFang-2.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/resources/fonts/WenCangShuFang-2.ttf -------------------------------------------------------------------------------- /server/auth/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/server/auth/client.go -------------------------------------------------------------------------------- /server/auth/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/server/auth/user.go -------------------------------------------------------------------------------- /server/controllers/admin/channels.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/server/controllers/admin/channels.go -------------------------------------------------------------------------------- /server/controllers/admin/creative.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/server/controllers/admin/creative.go -------------------------------------------------------------------------------- /server/controllers/admin/messages.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/server/controllers/admin/messages.go -------------------------------------------------------------------------------- /server/controllers/admin/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/server/controllers/admin/models.go -------------------------------------------------------------------------------- /server/controllers/admin/payment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/server/controllers/admin/payment.go -------------------------------------------------------------------------------- /server/controllers/admin/quota.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/server/controllers/admin/quota.go -------------------------------------------------------------------------------- /server/controllers/admin/setting.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/server/controllers/admin/setting.go -------------------------------------------------------------------------------- /server/controllers/admin/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/server/controllers/admin/user.go -------------------------------------------------------------------------------- /server/controllers/apikey.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/server/controllers/apikey.go -------------------------------------------------------------------------------- /server/controllers/apple-auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/server/controllers/apple-auth.go -------------------------------------------------------------------------------- /server/controllers/article.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/server/controllers/article.go -------------------------------------------------------------------------------- /server/controllers/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/server/controllers/auth.go -------------------------------------------------------------------------------- /server/controllers/auth_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/server/controllers/auth_test.go -------------------------------------------------------------------------------- /server/controllers/chat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/server/controllers/chat.go -------------------------------------------------------------------------------- /server/controllers/chat_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/server/controllers/chat_test.go -------------------------------------------------------------------------------- /server/controllers/common/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/server/controllers/common/common.go -------------------------------------------------------------------------------- /server/controllers/creative-island.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/server/controllers/creative-island.go -------------------------------------------------------------------------------- /server/controllers/creative.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/server/controllers/creative.go -------------------------------------------------------------------------------- /server/controllers/diagnosis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/server/controllers/diagnosis.go -------------------------------------------------------------------------------- /server/controllers/examples.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/server/controllers/examples.go -------------------------------------------------------------------------------- /server/controllers/group-chat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/server/controllers/group-chat.go -------------------------------------------------------------------------------- /server/controllers/images.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/server/controllers/images.go -------------------------------------------------------------------------------- /server/controllers/info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/server/controllers/info.go -------------------------------------------------------------------------------- /server/controllers/interapi/manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/server/controllers/interapi/manager.go -------------------------------------------------------------------------------- /server/controllers/message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/server/controllers/message.go -------------------------------------------------------------------------------- /server/controllers/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/server/controllers/models.go -------------------------------------------------------------------------------- /server/controllers/notification.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/server/controllers/notification.go -------------------------------------------------------------------------------- /server/controllers/openai.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/server/controllers/openai.go -------------------------------------------------------------------------------- /server/controllers/payment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/server/controllers/payment.go -------------------------------------------------------------------------------- /server/controllers/payment_public.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/server/controllers/payment_public.go -------------------------------------------------------------------------------- /server/controllers/prompts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/server/controllers/prompts.go -------------------------------------------------------------------------------- /server/controllers/proxies.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/server/controllers/proxies.go -------------------------------------------------------------------------------- /server/controllers/rooms.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/server/controllers/rooms.go -------------------------------------------------------------------------------- /server/controllers/tasks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/server/controllers/tasks.go -------------------------------------------------------------------------------- /server/controllers/translate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/server/controllers/translate.go -------------------------------------------------------------------------------- /server/controllers/upload.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/server/controllers/upload.go -------------------------------------------------------------------------------- /server/controllers/upload_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/server/controllers/upload_test.go -------------------------------------------------------------------------------- /server/controllers/users.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/server/controllers/users.go -------------------------------------------------------------------------------- /server/controllers/v2/creative-island.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/server/controllers/v2/creative-island.go -------------------------------------------------------------------------------- /server/controllers/v2/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/server/controllers/v2/models.go -------------------------------------------------------------------------------- /server/controllers/v2/rooms.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/server/controllers/v2/rooms.go -------------------------------------------------------------------------------- /server/controllers/v2/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/server/controllers/v2/user.go -------------------------------------------------------------------------------- /server/controllers/voice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/server/controllers/voice.go -------------------------------------------------------------------------------- /server/provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/server/provider.go -------------------------------------------------------------------------------- /systemd.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mylxsw/aidea-server/HEAD/systemd.service --------------------------------------------------------------------------------