AI Engineer Projects in Ghaziabad
AI Engineer Projects in Ghaziabad
Sign Up
Post a job
Sign Up
Log In
Filters
2
Projects
People
Message
0
AKASH VASHISHTHA
pro
Légacie Phase 1
0
16
Message
1
Wahid Ali
pro
Innovation Intelligence Platform
1
30
Message
1
Satya Prakash
pro
GymCare Management System Development
1
14
Message
0
Rishi Bajpai
Tenderseal - AI-Driven Tender Management Platform Development
0
4
Message
0
Aparna Soneja
It's finally here 🎬✨ Introducing Sniplyx AI — your full AI video editor, not just another clipper. Upload your raw footage and let AI do the heavy lifting: ✂️ Auto viral clips 🎞️ AI B-roll 🎵 AI music & SFX 📝 Auto transcription 🌐 100% browser-based, nothing to install Built this because manual video editing was something I had to do myself but never really knew how to do well, and it took forever. So I built a tool that does the heavy lifting for me. Now it's all in one place, starting at just $2 🙌 Try it out here: https://www.sniplyxai.com
0
98
Message
0
Jagwinder Singh
AI Tattoo Generator App
0
5
Message
2
Ajay Bidyarthy- Full Stack AI Engineer
A multi-tenant architecture is a software architecture where a single application instance serves multiple customers (tenants) while keeping each tenant's data and configuration isolated. Example Imagine a SaaS CRM platform: - Company A uses the CRM. - Company B uses the same CRM. - Company C uses the same CRM. All three companies share the same application, but: -> Their users only see their own data. -> Their settings, branding, and permissions can be different. -> The platform provider maintains only one codebase.
2
132
Message
1
Abhishek Kumar
pro
Indigloo Softwares - AI-Driven Software Solutions
1
2
Message
1
Manoj Rana
AI is helping humanity in incredible ways, but every innovation comes with a hidden environmental cost. This short film explores the balance between technological progress and sustainability—and asks whether AI can become part of the solution.
3
1
261
Message
0
Chiranjeev Singh
Statifytix, an AI powered football stat and analytics SaaS used by sports enthusiasts and betters to give them live and fast results. The application scaled to thousands of users and I handled every aspect from development to deployment.
0
33
Message
0
Izhar Katariya
Title: NEXUS AI — M&A Intelligence Platform Description: Enterprise platform combining RAG, Neo4j knowledge graphs, and XGBoost ESG forecasting under a LangGraph agent. Built for PE due diligence. Image: same NEXUS AI screenshot from Upwork Link: private demo only
0
15
Message
4
Trashu Vashisth
Built a highly scalable Retrieval-Augmented Generation (RAG) chatbot designed to interact with private datasets/PDFs. Unlike standard LLMs, this system minimizes hallucinations by retrieving real-time context from a local knowledge base before generating responses. Key Features: Semantic Search: Implemented Vector Embeddings to perform high-speed similarity searches across thousands of document chunks. Smart Retrieval: Integrated a retrieval pipeline using LangChain to fetch the most relevant context for user queries. Source Citation: Configured the bot to provide source references from documents, ensuring data transparency and accuracy. Optimized Performance: Used FAISS/Chromadb for efficient vector storage and retrieval.
4
298
Message
0
Ajay Kumar Mahato
Heya Brand Identity
0
3
Message
0
Om Shukla
NanoMech: The Real-Time Multimodal AI Trading Assistant 📈🤖 Built for the Gemini Hackathon Traders know that in the market, seconds equal dollars. By the time you switch between your chart, your analysis tools, and your risk calculator, the candle has already moved, and your setup is gone. I wanted to fix this. For the Gemini Hackathon, I built NanoMech—an AI that sits on top of your screen, sees exactly what you see, and gives you a complete trade plan in seconds. No API keys required, and no leaving your chart. 💡 The Solution NanoMech runs as two frameless, transparent overlays on top of any trading platform. It uses Google Gemini 2.5 Flash's multimodal vision capabilities to visually read your screen and deliver instant insights. Overlay 1: Market Analysis Trend: Analyzes bullish/bearish market structure and moving average crossovers. Liquidity: Evaluates order book depth, bid/ask walls, and support/resistance zones. Momentum: Breaks down candlestick patterns, volume behavior, and price velocity. Overlay 2: Trade Setup & Risk Management AI-Extracted Targets: Instantly provides Entry Price, Target Price, and Stop Loss. Live CALC Engine: Calculates Risk Amount ($), Position Size (Units), and Risk-to-Reward (R:R) Ratio. Everything updates live as you type in your desired risk percentage. 🛠️ How It Works (Under the Hood) Vision-to-Text Processing: Captures the screen in real-time using the mss library and sends the raw screenshot to Google Gemini 2.5 Flash via the Google GenAI SDK. Prompt Engineering: Engineered strict structured prompts using [ANALYSIS] and [TRADE] tags to force the LLM to output reliably parseable price data. Regex Extraction: Uses regex to pull the exact Entry, Target, and Stop prices from the AI's response and wire them directly into the local risk calculator. Custom Desktop UI: Built always-on-top transparent overlays using Python's Tkinter, utilizing threading to keep the UI fully responsive during API calls. Hands-Free Scanning: Integrated a global hotkey (Ctrl+A+I) and an Auto Mode that scans the chart every 20 seconds. 🧗♂️ Challenges Overcome Structured LLM Outputs: Getting an LLM to consistently return prices in a parseable numeric format is notoriously tricky. We solved this with rigorous prompt engineering and robust fallback handling. Thread-Safe UI: Tkinter isn’t thread-safe. We engineered a solution to route all UI updates through root.after() callbacks from the active analysis thread. UX/UI Friction: Tuning the transparency and colors so the text remains readable across both dark and light chart themes, while ensuring our global hotkeys didn't conflict with native trading platforms. 🚀 What We Learned & What's Next This project proved just how incredibly capable Gemini 2.5 Flash is at visual reasoning. It accurately identified complex candlestick patterns, moving averages, and volume spikes from a raw image alone. The Roadmap for NanoMech: Voice Output: Speaking the trade setup aloud for a 100% hands-free experience. Multi-Monitor Support: Allowing users to select which screen the AI tracks. Cloud Hosting: Running NanoMech as a scalable web service on Google Cloud Run. Trade Logging: Automatically tracking how the AI's setups perform over time. 💻 Built With Python | Google Gemini 2.5 Flash | Google GenAI SDK | Google Cloud | Tkinter | mss | pillow | Regex Ready to try it out? Check out the code and run it yourself: https://github.com/omshukla24/NanoMech
0
118
Message
0
Rishabh Gupta
pro
Website Design for NEA, Nepal
0
142
Message
0
Ritik Goyal
Hit a classic Django trap this week and figured it's worth sharing since so many people are running into it now. I was adding an LLM feature to a Django app. The AI call takes a few seconds, so naturally I made the view async so it doesn't block a worker while waiting. Wrote the async view, called the ORM like I always do, and boom: SynchronousOnlyOperation: You cannot call this from an async context. Turns out Django's ORM can't just be called normally inside async code. The classic sync API isn't safe in an event loop, so Django protects it and throws this error instead. The fix is simpler than most people think. Since Django 4.1 the ORM has async versions of everything, same names with an "a" prefix. So objects.get() becomes await objects.aget(), create() becomes acreate(), save() becomes asave(). For loops over querysets, async for works directly. And for old sync code or third party libraries you can't change, wrap them with sync_to_async(). Why this matters right now: everyone is bolting AI features onto Django apps, and LLM calls are exactly the slow I/O that async is made for. Which means a lot of devs who never touched async Django are suddenly hitting this error for the first time. One honest caveat: transactions still don't fully work in async mode, so if you need atomic blocks, keep that path sync and wrap it. Anyone else made the jump to async views yet, or still happily on WSGI?
0
82
Explore projects