Skip to content

LeafYeeXYZ/MyAPIs

Repository files navigation

中文 | English

Introduction

My personal API repository

Usage

Configure Environment Variables

Please Fork this repository, manually create the wrangler.toml file, and add the following content:

name = "api"
main = "dist/index.js"
compatibility_date = "2024-04-05"

[vars]
KEY = "VALUE"
# See Environment Variables

# Only used for counting visits, can be omitted
[[kv_namespaces]]
binding = "count"
id = "YOUR_KV_NAMESPACE_ID"

Environment Variables

  • CF_USER: Cloudflare user ID, for PainterLeaf and CounselorLeaf
  • CF_AI_API_KEY: Cloudflare AI API key, for PainterLeaf and CounselorLeaf
  • HF_API_KEY: Hugging Face API key, for PainterLeaf
  • WEATHER_API_KEY: qWeather API key, for MyHomepage

If you don't need to use a certain feature, it's okay not to set the corresponding environment variable.

Deployment

# Install dependencies
npm i -g pnpm
pnpm i
# Login to Cloudflare
pnpm loi
# Deploy
pnpm dep

API Reference

Category Function Path Method Query Parameters Request Body Response
PainterLeaf Get model list /painter/models GET - - application/json
PainterLeaf Generate image /painter/generate POST - prompt: prompt words
model: model name
If img2img: image: Array.from(uint8Array)
image/png
PainterLeaf Translate prompt words /painter/translate POST - text: text
source_lang: source language
target_lang: target language
application/json
MyHomepage qWeather (Beijing) /weather GET - - application/json
CounselorLeaf Chat /counselor/chat POST - messages: message list, excluding system messages application/json
PainterLeaf Generate text from image /painter/genprompt POST - image: Array.from(uint8Array) application/json
Others Count visits /count GET - - text/javascript
Others Count visits /count POST - hostname: domain name
unique: whether to count as unique visitors
application/json