AI Workflows | Free.ai
Chain AI tools together. Automate multi-step processes with AI.
Chain AI Tools Into Automated Pipelines
Wuraren aiki suna ba ka damar haɗi da kayan aiki masu yawa na AI tare. Zaɓuɓɓukan fitarwa na mataki ɗaya suna zama shigarwar na gaba. Yi amfani da tsarin matakai-da-da yawa wanda zai iya ɗaukar awanni don yin shi da hannu.
Example Workflows
Blog Post Pipeline
QSql
Mai Tsara Shirin Bidiyo
KCharselect unicode block name
Yadda za a gina wani aiki
- Fara da wani kayan aiki — Zaɓi wani kayan aiki na AI a matsayin maɓallin farawa (QDialogButtonBox, @ action, KCharselect unicode block nameKuma Allah ne Yake yin hukunci a tsakãnin mutãne.
- Copy the output — Yi amfani da sakamakon kamar maɓallin shigarwa ga kayan aikin gaba. Misali, ka ɗauki rubutun da aka halitta da AI ka kuma shigar da shi cikin rubutu zuwa magana.
- Automate with the API — Chain API kira tare a cikin wani rubutu ga cikakken automated pipelines. Ka duba mu @ action.
- Yi amfani da Zapier — Connect Free.ai to 5,000+ apps for no-code automation. See our Zapier integration.
KCharselect unicode block name
Chain two API calls — generate text then convert to speech:
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)