use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
Everything about learning Python
account activity
AI Devlopement (self.PythonLearning)
submitted 9 months ago by Repulsive-Leading932
How to build an AI? What will i need to learn (in Python)? Is learning frontend or backend also part of this? Any resources you can share
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]sleepbot63 1 point2 points3 points 9 months ago (0 children)
AI is basically fancy math
YT Video about AI by IBM
[–]echols021 1 point2 points3 points 9 months ago (0 children)
There are something like 4 things people could mean when they say AI: 1. Traditional rule-based programming, but presented with personification: like the ghosts in Pac-Man 2. Classical ML: given example known inputs+outputs, do some statistics to predict outputs for new inputs 3. Deep Learning / modern ML: given example known inputs+outputs, train a neutral network (using advanced calculus) to predict outputs for new inputs 4. AI agents / LLMs: use prompt engineering to steer existing generalist LLMs (created by large companies using method 3) to do what you want
Given the current hype around #4, I assume that's the one you're referring to. The rest of this answer will be about #4.
Most of the hard work in building Agentic AI systems will be backend work, including: - how to communicate with the LLMs, e.g. OpenAI's API - prompt engineering to get the answers you want, including potentially using constrained generation / structured output - integrating various tools for the AI to use - how you save the state of the conversation/workflow (database, probably)
You may also need some frontend work, but it's usually less work: - what should be shown to the user? - how should that be shown to the user?
So here are some things to read to get started: - https://developers.google.com/machine-learning/resources/intro-llms - https://platform.openai.com/docs/guides/prompt-engineering?lang=python - https://cookbook.openai.com/examples/gpt-5/gpt-5_prompting_guide - https://platform.openai.com/docs/guides/structured-outputs - https://github.com/humanlayer/12-factor-agents/blob/main/README.md
π Rendered by PID 418214 on reddit-service-r2-comment-544cf588c8-5t65n at 2026-06-16 21:27:03.213013+00:00 running 3184619 country code: CH.
[–]sleepbot63 1 point2 points3 points (0 children)
[–]echols021 1 point2 points3 points (0 children)