AI Workflows | Free.ai
Chain AI tools together. Automate multi-step processes with AI.
Mametraka ny Fitaovana AI ho ao anatin'ny Fandaharanasa
Ny workflow dia mamela anao hampifandray fitaovana AI marobe. Ny vokatra avy amin'ny dingana iray dia lasa ny fidirana amin'ny manaraka. Ampiasao ho mandeha ho azy ireo dingana marobe izay mety haharitra ora maro raha atao amin'ny tanana.
Ohatra amin'ny fizotry ny asa
Fandefasana lahatsoratra bilaogy
Fanohanana ny mpanjifa
Fidirana amin'ny mpiatin'ny lahatsary
Mpisolovava
Ahoana ny fomba hananganana workflow
- Manomboka amin'ny fitaovana iray — Misafidiana fitaovana AI iray ho toetry ny fiandohanao (Fifampiresaka, Sary, TTS, sns.).
- Adikao ny famoahana — Ampiasao ho toy ny famenoan'ny fitaovana manaraka ny vokany. Ohatra, raisino ny lahabolana novokarin'ny AI ary ampidirina ao anatin'ny soratra ho teny mivaky.
- Manatanteraka amin'ny alalan'ny API — Ampifandraiso amin'ny alalan'ny baiko soratra ny antso API mba hamoronana fantsona mandeha ho azy tanteraka. Jereo ny Tahirin-kevitra API.
- Zapier — Connect Free.ai to 5,000+ apps for no-code automation. See our Zapier integration.
Ohatran'ny fizotry ny asa
Mifameno ny antso API roa — mamorona lahabolana dia manova ho fitenenana:
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)