-
Notifications
You must be signed in to change notification settings - Fork 318
Open
Description
🚀 Agent Name
PolyTalk AI
🧠 Description
A smart multilingual translation agent powered by LLMs that:
- Automatically detects input language
- Translates text intelligently using AI
- Supports dynamic target language selection
- Uses OpenRouter (GPT-based models)
🌐 Live API
https://polytalk-agent.onrender.com/
🔗 Endpoint
POST /translate
📥 Input
{
"text": "string",
"target_language": "string (optional)"
}📤 Output
{
"original": "string",
"detected_language": "string",
"translated": "string",
"target_language": "string",
"status": "success"
}⚡ Features
- Auto language detection (langdetect + fallback)
- AI-powered translation (OpenRouter LLM)
- Smart target language selection
- Production-ready deployment (Render)
- Public REST API
🛠 Tech Stack
- FastAPI
- OpenRouter (LLM API)
- Python
- Render (Deployment)
🧪 Test Example
Request:
{
"text": "Hola amigo"
}Response:
{
"original": "Hola amigo",
"detected_language": "es",
"translated": "Hello friend",
"target_language": "en",
"status": "success"
}📌 Notes
- Fully deployed and stable (Render)
- No longer using ngrok
- Supports real-world usage
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels
Type
Projects
Status
Backlog