AI Workflows | Free.ai
Chain AI tools together. Automate multi-step processes with AI.
AI સાધનોને સ્વયંચાલિત પાઇપલાઇનમાં ચેનલ કરો
કાર્યપ્રવાહ તમને ઘણાં AI સાધનોને એક સાથે જોડવા દે છે. એક પગલુંનું આઉટપુટ પછીનાનું ઇનપુટ બને છે. બહુપગલાંની પ્રક્રિયાઓને સ્વયંચાલિત કરો કે જે જાતે કરવા માટે કલાકો લેશે.
ઉદાહરણ કાર્યપ્રવાહો
બ્લોગ પોસ્ટ પાઇપલાઇન
ગ્રાહક સહાય સ્વચાલિત
વિડીયો સમાવિષ્ટ પાઇપલાઇન
સંશોધન સહાયક
કામ કરવાનો પ્રવાહ કેવી રીતે બનાવવો
- સાધન સાથે શરૂ કરો — તમારા શરૂઆતના બિંદુ તરીકે કોઈપણ AI સાધનને પસંદ કરો (વાતચીત, ચિત્ર, TTS, વગેરે.)
- આઉટપુટની નકલ કરો — પરિણામને આગળના સાધન માટે ઇનપુટ તરીકે વાપરો. ઉદાહરણ તરીકે, AI-ઉત્પન્ન થયેલ લખાણને લો અને તેને લખાણ-થી-વાક્યમાં દાખલ કરો.
- API સાથે સ્વયં — સંપૂર્ણ સ્વયંચાલિત પાઇપલાઇન માટે સ્ક્રિપ્ટમાં API કોલ્સને એક સાથે ચેન કરો. અમારું જુઓ API દસ્તાવેજો.
- ઝાપીયર વાપરો — Connect Free.ai to 5,000+ apps for no-code automation. See our Zapier integration.
API કાર્યપ્રવાહ ઉદાહરણ
બે API કોલ્સને ચેનલ કરો — લખાણને ઉત્પન્ન કરો અને પછી બોલવામાં ફેરવો:
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)