-
AI Prativa – Front End Deployment
AI Prativa – Front End Deployment https://vercel.com/ If You Have Missed To Add The Environment Variable
-
AI Prativa – Smart Farming Assistant – API Call Code Understanding
FastAPI Call Code Understanding @router.post("/api/chat") async def chat( request: Request, audio: Optional[UploadFile] = File(None), text: Optional[str] = Form(None) ): """ Handle chat requests – supports both audio and text input """ try: # Handle audio input if audio: # Validate file extension file_extension = audio.filename.split('.')[-1].lower() if file_extension not in settings.ALLOWED_EXTENSIONS: raise HTTPException( status_code=400, detail=f"File type not allowed. Allowed types: {settings.ALLOWED_EXTENSIONS}" ) # Save uploaded audio file file_path = os.path.join(settings.UPLOAD_FOLDER, audio.filename) os.makedirs(settings.UPLOAD_FOLDER, exist_ok=True) with open(file_path, "wb") as f: content = await audio.read() f.write(content) # Transcribe audio to text transcription = await speech_service.transcribe_audio(file_path) # Clean up uploaded file if os.path.exists(file_path): os.remove(file_path) return
-
OPSC – Indian Polity – Understanding The Structure Of Indian Constitution
Understanding The Structure Of Indian Constitution CONSTITUTION OF INDIA β βββ PREAMBLE β βββ Philosophy & Objectives of the Constitution β βββ PARTS → 25 Parts β β β βββ Part I to Part XXII (Original Parts) β βββ Part IVA – Fundamental Duties β βββ Part IXA – Municipalities β βββ Part IXB – Cooperative Societies β βββ Part XIV-A – Tribunals β β βββ ARTICLES → ~470 Articles (commonly accepted exam figure) β β β βββ Originally (1950): 395 Articles β βββ Added via amendments: A, B, C, AA… (e.g., 21A, 243ZA) β βββ Articles contain: β βββ
-
OPSC – Indian Polity – How To Read Indian Constitution ?
How To Read Indian Constitution How To Read Indian Constitution What Will Happen If We Exceed Letter ‘A’ to ‘Z’ ? When we insert new article why not to add a new article number at last why to add in the same arrticle like 21A, 21B ? Can’t we increase the part to 23 or 24 for a new theme ? Examples Of How New Topics Has Been Added.
-
OPSC – Indian Polity – Architecture Of Indian Constitution
Architecture Of Indian Constitution Architect Of The Indian Constitution: Basic Structure Of Indian Constitution: CONSTITUTION OF INDIA β βββ PREAMBLE β βββ Philosophy & Objectives of the Constitution β βββ PARTS → 25 Parts β β β βββ Part I to Part XXII (Original Parts) β βββ Part IVA – Fundamental Duties β βββ Part IXA – Municipalities β βββ Part IXB – Cooperative Societies β βββ Part XIV-A – Tribunals β β βββ ARTICLES → ~470 Articles (commonly accepted exam figure) β β β βββ Originally (1950): 395 Articles β βββ Added via amendments: A, B, C, AA… (e.g.,
-
OPSC – Indian Polity – Story Of Constitution
The Story Of Constitution A Journey Through Time, Struggle, and Wisdom CHAPTER 1: THE BROKEN PROMISES Why We Needed a Constitution August 15, 1947 – Midnight Imagine you're standing in a room with 390 million people (India's population then). Everyone is celebrating freedom, but suddenly someone asks: "We're free… but free to do what? Who decides the rules now?" Let me tell you a story that happened just weeks after independence: The Tale of Two Villages In a village in Punjab, a Sikh landlord said: "I own this land, Muslims must leave." In a village in Bengal, a Muslim landlord
-
OPSC – Pre-Independence Constitutional Development
Indian Polity – Pre Independence Constitutional Development
-

OPSC – Indian Polity – Indian Constitution Syllabus
Indian Constitution Syllabus MODULE 1: HISTORICAL FOUNDATIONS & CONSTITUTIONAL MODULE 2: PHILOSOPHICAL FOUNDATIONS & BASIC FEATURES MODULE 3: FUNDAMENTAL RIGHTS (PART III) MODULE 4: DIRECTIVE PRINCIPLES OF STATE POLICY (PART IV) MODULE 5: FUNDAMENTAL DUTIES MODULE 6: UNION GOVERNMENT STRUCTURE MODULE 7: STATE GOVERNMENT STRUCTURE MODULE 8: UNION TERRITORIES & SPECIAL PROVISIONS MODULE 9: CENTRE-STATE RELATIONS MODULE 10: EMERGENCY PROVISIONS (PART XVIII) MODULE 11: JUDICIARY MODULE 12: CONSTITUTIONAL BODIES MODULE 13: NON-CONSTITUTIONAL BODIES (Relevant for UPSC/OPSC) MODULE 14: PANCHAYATI RAJ (PART IX) MODULE 15: URBAN LOCAL BODIES (PART IXA) MODULE 16: COOPERATIVE SOCIETIES (PART IXB) MODULE 17: CONSTITUTIONAL AMENDMENTS MODULE
-
AI Prativa – Smart Farming Assistant – Hugging Face API Key Setup
Smart Farming Assistant – Hugging Face API Key Setup #1 Open The Hugging Face URL https://huggingface.co/ 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
