{"id":274,"date":"2024-03-17T18:35:46","date_gmt":"2024-03-17T18:35:46","guid":{"rendered":"https:\/\/rssfeedtelegrambot.bnaya.co.il\/index.php\/2024\/03\/17\/how-ai-code-generation-works\/"},"modified":"2024-03-17T18:35:46","modified_gmt":"2024-03-17T18:35:46","slug":"how-ai-code-generation-works","status":"publish","type":"post","link":"https:\/\/rssfeedtelegrambot.bnaya.co.il\/index.php\/2024\/03\/17\/how-ai-code-generation-works\/","title":{"rendered":"How AI code generation works"},"content":{"rendered":"<p>Generative AI coding tools are changing software production for enterprises. Not just for their code generation abilities\u2014from vulnerability detection and facilitating comprehension of unfamiliar codebases, to streamlining documentation and pull request descriptions, they\u2019re <a href=\"https:\/\/www.wired.com\/story\/fast-forward-ai-rewiring-coders-brains-github-copilot\/\">fundamentally reshaping<\/a> how developers approach application infrastructure, deployment, and their own work experience.<\/p>\n<p>We\u2019re now witnessing a significant turning point. As AI models get better, refusing adoption would be like \u201casking an office worker to use a typewriter instead of a computer,\u201d says <a href=\"https:\/\/github.com\/wunderalbert\">Albert Ziegler<\/a>, principal researcher and member of the <a href=\"https:\/\/githubnext.com\/\">GitHub Next<\/a> research and development team.<\/p>\n<p>In this post, we\u2019ll dive into the inner workings of AI code generation, exploring how it functions, its capabilities and benefits, and how developers can use it to enhance their development experience while propelling your enterprise forward in today\u2019s competitive landscape.<\/p>\n<h2>How to use AI to generate code<a href=\"https:\/\/github.blog\/category\/engineering\/#how-to-use-ai-to-generate-code\" class=\"heading-link pl-2 text-italic text-bold\"><\/a><\/h2>\n<p>AI code generation refers to full or partial lines of code that are generated by machines instead of human developers. This emerging technology leverages advanced machine learning models, particularly <a href=\"https:\/\/github.blog\/2023-10-27-demystifying-llms-how-they-can-do-things-they-werent-trained-to-do\/\">large language models<\/a> (LLMs), to understand and replicate the syntax, patterns, and paradigms found in human-generated code.<\/p>\n<p>The AI models powering these tools, like ChatGPT and GitHub Copilot, are trained on natural language text and source code from publicly available sources that include a diverse range of code examples. This training enables them to understand the nuances of various programming languages, coding styles, and common practices. As a result, the AI can generate code suggestions that are syntactically correct and contextually relevant based on input from developers.<\/p>\n<p>Favored by <a href=\"https:\/\/survey.stackoverflow.co\/2023\/#ai\">55% of developers<\/a>, our AI-powered pair programmer, GitHub Copilot, provides contextualized coding assistance based on your organization\u2019s codebase across dozens of programming languages, and targets developers of all experience levels. With GitHub Copilot, developers can use AI to generate code in three ways:<\/p>\n<h3>1. Type code and AI can autocomplete the code<a href=\"https:\/\/github.blog\/category\/engineering\/#1-type-code-and-ai-can-autocomplete-the-code\" class=\"heading-link pl-2 text-italic text-bold\"><\/a><\/h3>\n<p>Autocompletions are the earliest version of AI code generation. <a href=\"https:\/\/github.com\/jnbrymn\">John Berryman<\/a>, a senior researcher of ML on the <a href=\"https:\/\/github.com\/features\/copilot\">GitHub Copilot<\/a> team, explains the user experience: \u201cI\u2019ll be writing code and taking a pause to think. While I\u2019m doing that, the agent itself is also thinking, looking at surrounding code and content in neighboring tabs. Then it pops up on the screen as gray \u2018ghost text\u2019 that I can reject, partially accept, or fully accept and then, if necessary, modify.\u201d<\/p>\n<p>While every developer can reap the benefits of using AI coding tools, experienced programmers can often feel these gains even more so. \u201cIn many cases, especially for experienced programmers in a familiar environment, this suggestion speeds us up. I would have written the same thing. It\u2019s just faster to hit \u2018tab\u2019 (thus accepting the suggestion) than it is to write out those 20 characters by myself,\u201d says <a href=\"https:\/\/github.com\/johanrosenkilde\">Johan Rosenkilde<\/a>, principal researcher for GitHub Next.<\/p>\n<p>Whether developers are new or highly skilled, they\u2019ll often have to work in less familiar languages, and code completion suggestions using GitHub Copilot can lend a helping hand. \u201cUsing GitHub Copilot for code completion has really helped speed up my learning experience,\u201d says Berryman. \u201cI will often accept the suggestion because it\u2019s something I wouldn\u2019t have written on my own since I don\u2019t know the syntax.\u201d<\/p>\n<p>Using an AI coding tool has become an invaluable skill in itself. Why? Because the more developers practice coding with these tools, the faster they\u2019ll get at using them.<\/p>\n<h3>2. Explicit code comments codes using natural language to receive even better AI-generated code suggestions<a href=\"https:\/\/github.blog\/category\/engineering\/#2-explicit-code-comments-codes-using-natural-language-to-receive-even-better-ai-generated-code-suggestions\" class=\"heading-link pl-2 text-italic text-bold\"><\/a><\/h3>\n<p>For experienced developers in unfamiliar environments, tools like GitHub Copilot can even help jog their memories.<\/p>\n<p>Let\u2019s say a developer imports a new type of library they haven\u2019t used before, or that they don\u2019t remember. Maybe they\u2019re looking to figure out the standard library function or the order of the argument. In these cases, it can be helpful to make GitHub Copilot more explicitly aware of where the developer wants to go by writing a comment.<\/p>\n<p>\u201cIt\u2019s quite likely that the developer might not remember the formula, but they can <em>recognize<\/em> the formula, and GitHub Copilot can remember it by being prompted,\u201d says Rosenkilde. This is where natural language commentary comes into play: it can be a shortcut for explaining intent when the developer is struggling with the first few characters of code that they need.<\/p>\n<p>If developers give specific names to their functions and variables, and write documentation, they can get better suggestions, too. That\u2019s because GitHub Copilot can read the variable names and use them as an indicator for what that function should do.<\/p>\n<p>Suddenly that changes how developers write code for the better, because code with good variable and function names are more maintainable. And oftentimes the main job of a programmer is to maintain code, not write it from scratch.<\/p>\n<p>\u201cWhen you push that code, someone is going to review it, and they will likely have a better time reviewing that code if it\u2019s well named, if there\u2019s even a hint of documentation in it, and so on,\u201d says Rosenkilde. In this sense, the symbiotic relationship between the developer and the AI coding tool is not just beneficial for the developer, but for the entire team.<\/p>\n<h3>3. Chat directly with AI<a href=\"https:\/\/github.blog\/category\/engineering\/#3-chat-directly-with-ai\" class=\"heading-link pl-2 text-italic text-bold\"><\/a><\/h3>\n<p>With AI chatbots, code generation can be more interactive. <a href=\"https:\/\/www.youtube.com\/watch?v=3surPGP7_4o\">GitHub Copilot Chat<\/a>, for example, allows developers to interact with code by asking it to explain code, improve syntax, provide ideas, generate tests, and modify existing code\u2014making it a versatile ally in managing coding tasks.<\/p>\n<p>Rosenkilde uses the different functionalities of GitHub Copilot:<\/p>\n<p>\u201cWhen I want to do something and I can\u2019t remember how to do it, I type the first few letters of it, and then I wait to see if Copilot can guess what I\u2019m doing,\u201d he says. \u201cIf that doesn\u2019t work, maybe I delete those characters and I write a one liner in commentary and see whether Copilot can guess the next line. If that doesn\u2019t work, then I go to Copilot Chat and explain in more detail what I want done.\u201d<\/p>\n<p>Typically, Copilot Chat returns with something much more verbose and complete than what you get from GitHub Copilot code completion. \u201cNamely, it describes back to you what it is you want done and how it can be accomplished. It gives you code examples, and you can respond and say, oh, I see where you\u2019re going. But actually I meant it like this instead,\u201d says Rosenkilde.<\/p>\n<p>But using AI chatbots doesn\u2019t mean developers should be hands off. Mistakes in reasoning could lead the AI down a path of further mistakes if left unchecked. Berryman recommends that users should interact with the chat assistant in much the same way that you would when pair programming with a human. \u201cGo back and forth with it. Tell the assistant about the task you are working on, ask it for ideas, have it help you write code, and critique and redirect the assistant\u2019s work in order to keep it on the right track.\u201d<\/p>\n<p><a href=\"https:\/\/github.com\/features\/copilot?utm_source=blog&amp;utm_medium=blogA&amp;utm_campaign=cta&amp;utm_content=copilot\"><\/a><\/p>\n<h2>The importance of code reviews<a href=\"https:\/\/github.blog\/category\/engineering\/#the-importance-of-code-reviews\" class=\"heading-link pl-2 text-italic text-bold\"><\/a><\/h2>\n<p>GitHub Copilot is designed to empower developers to execute their ideas. As long as there is some context for it to draw on, it will likely generate the type of code the developer wants. But this doesn\u2019t replace code reviews between developers.<\/p>\n<p>Code reviews play an important role in maintaining code quality and reliability in software projects, regardless of whether AI coding tools are involved. In fact, the earlier developers can spot bugs in the code development process, the cheaper it is by orders of magnitude.<\/p>\n<p>Ordinary verification would be: does the code parse? Do the tests work? With AI code generation, Ziegler explains that developers should, \u201cScrutinize it in enough detail so that you can be sure the generated code is correct and bug-free. Because if you use tools like that in the wrong way and just accept everything, then the bugs that you introduce are going to cost you more time than you save.\u201d<\/p>\n<p>Rosenkilde adds, \u201cA review with another human being is not the same as that, right? It\u2019s a conversation between two developers about whether this change fits into the kind of software they\u2019re building in this organization. GitHub Copilot doesn\u2019t replace that.\u201d<\/p>\n<h2>The advantages of using AI to generate code<a href=\"https:\/\/github.blog\/category\/engineering\/#the-advantages-of-using-ai-to-generate-code\" class=\"heading-link pl-2 text-italic text-bold\"><\/a><\/h2>\n<p>When developer teams use AI coding tools across the software development cycle, they experience a host of benefits, including:<\/p>\n<h3>Faster development, more productivity<a href=\"https:\/\/github.blog\/category\/engineering\/#faster-development-more-productivity\" class=\"heading-link pl-2 text-italic text-bold\"><\/a><\/h3>\n<p>AI code generation can significantly speed up the development process by automating repetitive and time-consuming tasks. This means that developers can focus on high-level architecture and problem-solving. In fact, <a href=\"https:\/\/github.blog\/2022-09-07-research-quantifying-github-copilots-impact-on-developer-productivity-and-happiness\/#table-survey-responses-measuring-dimensions-of-developer-productivity-when-using-github-copilot\">88% of developers reported feeling more productive<\/a> when using GitHub Copilot.<\/p>\n<p>Rosenkilde reflects on his own experience with GitHub\u2019s AI pair programmer: \u201c95% of the time, Copilot brings me joy and makes my day a little bit easier. And this doesn\u2019t change the code I would have written. It doesn\u2019t change the way I would have written it. It doesn\u2019t change the design of my code. All it does is it makes me faster at writing that same code.\u201d And Rosenkilde isn\u2019t alone: <a href=\"https:\/\/github.blog\/2022-09-07-research-quantifying-github-copilots-impact-on-developer-productivity-and-happiness\/\">60% of developers feel more fulfilled with their jobs<\/a> when using GitHub Copilot.<\/p>\n<h3>Mental load alleviated<a href=\"https:\/\/github.blog\/category\/engineering\/#mental-load-alleviated\" class=\"heading-link pl-2 text-italic text-bold\"><\/a><\/h3>\n<p>The benefits of faster development aren\u2019t just about speed: they\u2019re also about alleviating the mental effort that comes with completing tedious tasks. For example, when it comes to debugging, developers have to reverse engineer what went wrong. Detecting a bug can involve digging through an endless list of potential hiding places where it might be lurking, making it repetitive and tedious work.<\/p>\n<p>Rosenkilde explains, \u201cSometimes when you\u2019re debugging, you just have to resort to creating print statements that you can\u2019t get around. Thankfully, Copilot is brilliant at print statements.\u201d<\/p>\n<p>A whopping <a href=\"https:\/\/github.blog\/2022-09-07-research-quantifying-github-copilots-impact-on-developer-productivity-and-happiness\/\">87% of developers reported spending less mental effort on repetitive tasks<\/a> with the help of GitHub Copilot.<\/p>\n<h3>Less context switching<a href=\"https:\/\/github.blog\/category\/engineering\/#less-context-switching\" class=\"heading-link pl-2 text-italic text-bold\"><\/a><\/h3>\n<p>In software development, context switching is when developers move between different tasks, projects, or environments, which can disrupt their workflow and decrease productivity. They also often deal with the stress of juggling multiple tasks, remembering syntax details, and managing complex code structures.<\/p>\n<p>With GitHub Copilot developers can bypass several levels of context switching, staying in their IDE instead of searching on Google or jumping into external documentation.<\/p>\n<p>\u201cWhen I\u2019m writing natural language commentary,\u201d says Rosenkilde, \u201cGitHub Copilot code completion can help me. Or if I use Copilot Chat, it\u2019s a conversation in the context that I\u2019m in, and I don\u2019t have to explain quite as much.\u201d<\/p>\n<p>Generating code with AI helps developers offload the responsibility of recalling every detail, allowing them to focus on higher-level thinking, problem-solving, and strategic planning.<\/p>\n<p>Berryman adds, \u201cWith GitHub Copilot Chat, I don\u2019t have to restate the problem because the code never leaves my trusted environment. And I get an answer immediately. If there is a misunderstanding or follow-up questions, they are easy to communicate with.\u201d<\/p>\n<h2>What to look for in enterprise-ready AI code generation tools<a href=\"https:\/\/github.blog\/category\/engineering\/#what-to-look-for-in-enterprise-ready-ai-code-generation-tools\" class=\"heading-link pl-2 text-italic text-bold\"><\/a><\/h2>\n<p>Before you implement any AI into your workflow, you should always review and test tools thoroughly to make sure they\u2019re a good fit for your organization. Here are a few considerations to keep in mind.<\/p>\n<h3>Compliance<a href=\"https:\/\/github.blog\/category\/engineering\/#compliance\" class=\"heading-link pl-2 text-italic text-bold\"><\/a><\/h3>\n<p><strong>Regulatory compliance<\/strong>. Does the tool comply with relevant regulations in your industry?<br \/>\n<strong>Compliance certifications<\/strong>. Are there attestations that demonstrate the tool\u2019s compliance with regulations?<\/p>\n<h3>Security<a href=\"https:\/\/github.blog\/category\/engineering\/#security\" class=\"heading-link pl-2 text-italic text-bold\"><\/a><\/h3>\n<p><strong>Encryption<\/strong>. Is the data transmission and storage encrypted to protect sensitive information?<br \/>\n<strong>Access controls<\/strong>. Are you able to implement strong authentication measures and access controls to prevent unauthorized access?<br \/>\n<strong>Compliance with security standards<\/strong>. Is the tool compliant with industry standards?<br \/>\n<strong>Security audits<\/strong>. Does the tool undergo regular security audits and updates to address vulnerabilities?<\/p>\n<h3>Privacy<a href=\"https:\/\/github.blog\/category\/engineering\/#privacy\" class=\"heading-link pl-2 text-italic text-bold\"><\/a><\/h3>\n<p><strong>Data handling<\/strong>. Are there clear policies for handling user data and does it adhere to privacy regulations like GDPR, CCPA, etc.?<br \/>\n<strong>Data anonymization<\/strong>. Does the tool support anonymization techniques to protect user privacy?<\/p>\n<h3>Permissioning<a href=\"https:\/\/github.blog\/category\/engineering\/#permissioning\" class=\"heading-link pl-2 text-italic text-bold\"><\/a><\/h3>\n<p><strong>Role-based access control<\/strong>. Are you able to manage permissions based on user roles and responsibilities?<br \/>\n<strong>Granular permissions<\/strong>. Can you control access to different features and functionalities within the tool?<br \/>\n<strong>Opt-in\/Opt-out mechanisms<\/strong>. Can users control the use of their data and opt out if needed?<\/p>\n<h3>Pricing<a href=\"https:\/\/github.blog\/category\/engineering\/#pricing\" class=\"heading-link pl-2 text-italic text-bold\"><\/a><\/h3>\n<p><strong>Understand the pricing model<\/strong>. is it based on usage, number of users, features, or other metrics?<br \/>\n<strong>Look for transparency<\/strong>. Is the pricing structure clear with no hidden costs?<br \/>\n<strong>Scalability<\/strong>. Does the pricing scale with your usage and business growth?<\/p>\n<p>Additionally, consider factors such as customer support, ease of integration with existing systems, performance, and user experience when evaluating AI coding tools. Lastly, it\u2019s important to thoroughly assess how well the tool aligns with your organization\u2019s specific requirements and priorities in each of these areas.<\/p>\n<p>Visit the GitHub <a href=\"https:\/\/resources.github.com\/copilot-trust-center\/\">Copilot Trust Center<\/a> to learn more around security, privacy, and other topics.<\/p>\n<h2>Can AI code generation be detected?<a href=\"https:\/\/github.blog\/category\/engineering\/#can-ai-code-generation-be-detected\" class=\"heading-link pl-2 text-italic text-bold\"><\/a><\/h2>\n<p>The short answer here is: maybe.<\/p>\n<p>Let\u2019s first give some context to the question. It\u2019s never really the case that a whole code base is generated with AI, because large chunks of AI-generated code are very likely to be wrong. The standard code review process is a good way to avoid this, since large swaths of completely auto-generated code would stand out to a human developer as simply not working.<\/p>\n<p>For smaller amounts of AI-generated code, there is no way at the moment to detect traces of AI in code with true confidence. There are offerings that purport to classify whether content has AI-generated <em>text<\/em>, but there are limited equivalents for code, since you\u2019d need a dedicated model to do it. Ziegler explains, \u201cComputer generated code is good enough that it doesn\u2019t leave any particular traces and normally has no clear tells.\u201d<\/p>\n<p>At GitHub, the Copilot team makes use of a duplicate detection filter that detects exact duplicates in code. So, if you\u2019re writing code and it\u2019s an exact copy of something that exists elsewhere, then it\u2019ll flag it.<\/p>\n<h2>Is AI code generation secure?<a href=\"https:\/\/github.blog\/category\/engineering\/#is-ai-code-generation-secure\" class=\"heading-link pl-2 text-italic text-bold\"><\/a><\/h2>\n<p>AI code generation is not any more insecure than human generated code. A combination of testing, manual code reviews, scanning, monitoring, and feedback loops can produce the same quality of code as your human-generated code.<\/p>\n<p>When it comes to code generated by GitHub Copilot, developers can use tools like <a href=\"https:\/\/github.com\/features\/security\/code'\">code scanning<\/a>, which actively reviews your code for potential security issues in real-time and seamlessly integrates the findings into the developer workflow.<\/p>\n<p>Ultimately, AI code generation will have vulnerabilities\u2014but so does code written by human developers. As Ziegler explains, \u201cIt\u2019s unclear whether computer generated code does particularly worse. So, the answer is not if you have GitHub Copilot, use a vulnerability checker. The answer is <em>always<\/em> use a vulnerability checker.\u201d<\/p>\n<p><strong>Watch this video for more tips and words of advice around secure coding best practices with AI.<\/strong><\/p>\n<div>\n<div class=\"mod-vh position-relative\"><\/div>\n<\/div>\n<h2>Empower your enterprise with AI code generation<a href=\"https:\/\/github.blog\/category\/engineering\/#empower-your-enterprise-with-ai-code-generation\" class=\"heading-link pl-2 text-italic text-bold\"><\/a><\/h2>\n<p>While the benefits to using AI code generation tools can be significant, it\u2019s important to note that human oversight remains crucial to ensure that the generated code aligns with project goals, coding standards, and business needs.<\/p>\n<p>Tech leaders should embrace the use of AI code generation\u2014not only to streamline development, but also to empower developer teams to collaborate, drive meaningful business outcomes, and deliver exceptional value to customers.<\/p>\n<div class=\"post-content-cta\">\n<p>Ready to get started with the world\u2019s most widely adopted AI developer tool? <a href=\"https:\/\/github.com\/features\/copilot\">Learn more<\/a> or <a href=\"https:\/\/github.com\/features\/copilot\/plans\">get started now<\/a>.<\/p>\n<\/div>\n<p>The post <a href=\"https:\/\/github.blog\/2024-02-22-how-ai-code-generation-works\/\">How AI code generation works<\/a> appeared first on <a href=\"https:\/\/github.blog\/\">The GitHub Blog<\/a>.<\/p>","protected":false},"excerpt":{"rendered":"<p>Generative AI coding tools are changing software production for enterprises. Not just for their code generation abilities\u2014from vulnerability detection and [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":275,"comment_status":"","ping_status":"","sticky":false,"template":"","format":"standard","meta":{"site-sidebar-layout":"default","site-content-layout":"","ast-site-content-layout":"default","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","ast-disable-related-posts":"","theme-transparent-header-meta":"","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"default","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"footnotes":""},"categories":[8],"tags":[],"class_list":["post-274","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-github-engineering"],"_links":{"self":[{"href":"https:\/\/rssfeedtelegrambot.bnaya.co.il\/index.php\/wp-json\/wp\/v2\/posts\/274","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/rssfeedtelegrambot.bnaya.co.il\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/rssfeedtelegrambot.bnaya.co.il\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/rssfeedtelegrambot.bnaya.co.il\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/rssfeedtelegrambot.bnaya.co.il\/index.php\/wp-json\/wp\/v2\/comments?post=274"}],"version-history":[{"count":0,"href":"https:\/\/rssfeedtelegrambot.bnaya.co.il\/index.php\/wp-json\/wp\/v2\/posts\/274\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/rssfeedtelegrambot.bnaya.co.il\/index.php\/wp-json\/wp\/v2\/media\/275"}],"wp:attachment":[{"href":"https:\/\/rssfeedtelegrambot.bnaya.co.il\/index.php\/wp-json\/wp\/v2\/media?parent=274"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/rssfeedtelegrambot.bnaya.co.il\/index.php\/wp-json\/wp\/v2\/categories?post=274"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/rssfeedtelegrambot.bnaya.co.il\/index.php\/wp-json\/wp\/v2\/tags?post=274"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}