Back to Video Hub
Released Aug 28, 2026

AI agent explained in tamil

🤖 இந்த வீடியோவில், AI Agent என்றால் என்ன? ஏன் அது முக்கியம்? எப்படி அது ChatGPT, Siri, AutoGPT போன்ற தொழில்நுட்பங்களில் வேலை செய்கிறது என்பதை தமிழில் விரிவாக தெரிந்து கொள்வோம்!
-------------------------------------------------------
Python Code sample:
class SimpleAgent:
   def __init__(self,goal):
             self.goal = goal
  
  def observe(self,environment):
         print("Observing environment:",environment)
  
 def decide(self):
       print("Thinking about goal:",self.goal)
       return "Plan generated for goal:"+ self.goal

def act(self):
      action = self.decide()
      print("Action taken:",action)

agent = SimpleAgent("Travel plan creation")
agent.observe("Requirments of travel")
agent.act()

இந்த வீடியோ 'AI in Tamil' தொடரின் ஒரு முக்கிய அத்தியாயம்.

✅ என்ன தெரிந்து கொள்ளலாம்:
 

Agent என்றால் என்ன?
 

AI Agent எப்படி வேறுபடுகிறது?
 

Examples: Siri, ChatGPT, AutoGPT
 

Python Coding Example
 

--------------------------------------------------------------------------------
Types of AI Agent:
Reactive nAgent
Planning Agent
Learning Agent
--------------------------------------------------------------------------------
📌 அடுத்த வீடியோவில் நாம் “LangChain Agents” பற்றி காணப்போறோம்!

🔔 Subscribe பண்ணுங்க 👉somethingtalk1
👍 Like & Share பண்ணுங்க Tamil AI ஆர்வலர்களுடன்!

#AITamil #AIinTamil #LangChainTamil #AgentTamil #OpenAITamil #AutoGPT #AIExplainedTamil

[00:10] Hello everyone! Welcome back to Teltam AI guides. Today we're diving into the document translation tool.
[01:05] First, log into your Teltam console and navigate to the "AI Tools" tab. You'll see the "Doc Translator" option.
[02:22] Simply drag and drop your PDF or word file. Next, choose your target settings. For instance, translating from English to Spanish.
[03:40] Once translation finishes, press the "Download" button to save your formatted translated document.

Discussion

RK
Rohan K. 1 week ago

Does the document translator work with scanned JPG images too? Or only PDFs?

Ask a Question