AI Workflows | Free.ai
Chain AI tools together. Automate multi-step processes with AI.
စက်မှုလုပ်ငန်းအတွက် AI Tools များ
workflows သင်အတူတကွပေါင်းစပ် AI tools များ multiple ပေးပါ။ တစ်ဆင့်၏ output ကိုနောက်တစ်ခု၏ input ကိုဖြစ်လာသည်။ လက်ဖြင့်လုပ်ဖို့နာရီကြာလိမ့်မည်ဟု multi-ခြေလှမ်းလုပ်ငန်းစဉ်များကိုအလိုအလျောက်။
ဥပမာအလုပ်လုပ်ကိုင်
ဘလော့ Post ကို Pipeline
ဖောက်သည်ထောက်ခံမှုအလိုအလျောက်
ရုပ်သံ အကြောင်းအရာ ပို့ဆောင်ရေး
သုတေသနအကူ
အလုပ်လုပ်ကိုင်ပုံကိုတည်ဆောက်ရန်
- ကိရိယာတခုနဲ့ စတင်ပါ — သင်၏စတင်ချက်အဖြစ်မည်သည့် AI tool ကို Pick (စကားပြော, ပုံရိပ်, TTS, စသည်တို့)။
- ထုတ်ယူချက်ကို မိတ္တူကူးပါ — နောက် tool အတွက် input အဖြစ်ရလဒ်ကိုအသုံးပြုပါ။ ဥပမာအားဖြင့် AI-generated text ကိုယူပြီး text-to-speech သို့ပို့ပါ။
- API ဖြင့်အလိုအလျောက် — လုံးဝအလိုအလျောက်ပြွန်များအတွက် script ကိုထဲမှာအတူတကွ Chain API ကိုခေါ်ဆိုမှုများ. ကျွန်တော်တို့ရဲ့ကြည့်ပါ API စာရွက်စာတမ်းများ.
- Zapier ကိုအသုံးပြုပါ — Connect Free.ai to 5,000+ apps for no-code automation. See our Zapier integration.
API ကို Workflow ကိုဥပမာ
Chain နှစ်ခု API ကိုခေါ်ဆိုမှုများ — ဘာသာစကားသို့ပြောင်းလဲပြီးနောက်စာသားကို generate:
import requests
API_KEY = "YOUR_API_KEY"
HEADERS = {"Authorization": f"Bearer {API_KEY}", "Content-Type": "application/json"}
# Step 1: Generate text
resp = requests.post("https://api.free.ai/v1/chat/completions", headers=HEADERS,
json={"model": "qwen2.5-72b", "messages": [{"role": "user", "content": "Write a 2-sentence product description for wireless earbuds"}]})
text = resp.json()["choices"][0]["message"]["content"]
# Step 2: Convert to speech
resp = requests.post("https://api.free.ai/v1/tts", headers=HEADERS,
json={"text": text, "voice": "af_heart"})
with open("output.mp3", "wb") as f:
f.write(resp.content)