-

OPSC – Prelim Paper – 1: History Of Odisha & Odisha Nationalism Syllabus
History Of Odisha & Odisha Nationalism
-

OPSSC – Prelim Paper – 1: History Of India & Indian National Movements Syllabus
History Of India & Indian National Movements Syllabus
-

OPSC – Prelim Paper -1: Current Affairs Syllabus
Current Affairs Syllabus
-

OPSC – Prelim Paper – 1 : Indian Polity Syllabus
Indian Polity Syllabus Original Syllabus
-

Python – Fast API
Python – Fast API Tutorial Difference Between GET & POST.
-
AI Prativa – Backend API Deployment
AI Prativa – Backend API Deployment Commands To Create Backend Python Project: #1 Run The Below Command To Create The Python Project Structure mkdir my-python-api cd my-python-api mkdir app mkdir appapi mkdir appmodels mkdir appservices mkdir appcore mkdir appdb New-Item appmain.py -ItemType File New-Item appapiroutes.py -ItemType File New-Item appcoreconfig.py -ItemType File New-Item appdbsession.py -ItemType File New-Item appdbbase.py -ItemType File New-Item requirements.txt -ItemType File New-Item README.md -ItemType File my-python-api/ ├── app/ │ ├── main.py │ ├── api/ │ │ └── routes.py │ ├── models/ # DB models (ORM) │ ├── services/ # Business logic │ ├── core/ │ │ └── config.py
-

AI Prativa – Frontend WebSite Deployment
AI Prativa – API Deployment https://render.com/
-

OPSC – Paper – 1 Study Planning
OPSC – Prelim Paper – 1 Study Planning
-

AI Prativa – Smart Farming Assistant – Project Planning
Smart Farming Assistant Project Planning ┌─────────────────────────────────────────────────────────┐ │ USER INTERACTION │ └─────────────────────────────────────────────────────────┘ ↓ ┌──────────────────────┐ │ Voice or Text Input │ └──────────────────────┘ ↓ ┌───────────────────────────────┐ │ │ ┌────▼────┐ ┌──────▼──────┐ │ VOICE │ │ TEXT │ └────┬────┘ └──────┬──────┘ │ │ │ 1. Upload audio file │ 1. Direct input │ 2. Save to 'uploads/' │ │ 3. Speech-to-Text │ │ (Hugging Face API) │ └────────┬─────────────────────┘ │ ▼ ┌────────────────────┐ │ TEXT PROCESSING │ └────────────────────┘ │ ▼ ┌────────────────────┐ │ OpenAI GPT-3.5 │ │ (Agriculture │ │ Expert System) │ └────────────────────┘ │ ▼ ┌────────────────────┐ │ AI Response │ └────────────────────┘ │ ┌────────┴────────┐ │ │ ▼ ▼ ┌────────┐ ┌──────────┐
-

AI Prativa – Git Hub Setup
AI Prativa GitHub Setup https://www.github.com git init git status git add . git commit -m "Initial Project Structure Commit" git status git remote add origin https://github.com/MacLearnAI/AIPritiva.git git branch -M main git pusg -u origin main
