<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Is it possible to write GDL API in chatgpt or claude ai? in GDL</title>
    <link>https://community.graphisoft.com/t5/GDL/Is-it-possible-to-write-GDL-API-in-chatgpt-or-claude-ai/m-p/653181#M7470</link>
    <description>&lt;P&gt;Gdl objects are generated&amp;nbsp; from coded scripts,&lt;/P&gt;
&lt;P&gt;AI is kind of machine learning,&lt;/P&gt;
&lt;P&gt;I'm sure there is a way to train AI to generate parametric objects from a command line.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I wish this will happen soon &lt;span class="lia-unicode-emoji" title=":red_heart:"&gt;❤️&lt;/span&gt;&lt;span class="lia-unicode-emoji" title=":grinning_face_with_big_eyes:"&gt;😃&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#FF0000"&gt;Edit by moderator : this separate post merged here as it is the same topic.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 26 Feb 2025 07:36:18 GMT</pubDate>
    <dc:creator>Ahmed_K</dc:creator>
    <dc:date>2025-02-26T07:36:18Z</dc:date>
    <item>
      <title>Is it possible to write GDL API in chatgpt or claude ai?</title>
      <link>https://community.graphisoft.com/t5/GDL/Is-it-possible-to-write-GDL-API-in-chatgpt-or-claude-ai/m-p/644929#M7289</link>
      <description>&lt;P&gt;Is it possible to write GDL API in chatgpt or claude ai?&lt;/P&gt;
&lt;P&gt;If possible, what is a well-trained ai?&lt;/P&gt;</description>
      <pubDate>Tue, 31 Dec 2024 04:48:33 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/Is-it-possible-to-write-GDL-API-in-chatgpt-or-claude-ai/m-p/644929#M7289</guid>
      <dc:creator>LeeJaeYoung</dc:creator>
      <dc:date>2024-12-31T04:48:33Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to write GDL API in chatgpt or claude ai?</title>
      <link>https://community.graphisoft.com/t5/GDL/Is-it-possible-to-write-GDL-API-in-chatgpt-or-claude-ai/m-p/644932#M7290</link>
      <description>&lt;P&gt;I renege trying it when chatgpt first launched and it would give crap response that was like a made up BASIC.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;However I asked ChatGPT and it told me this:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;Yes, I am familiar with the principles, syntax, and structure of Archicad’s GDL (Geometric Description Language). I can write scripts that follow correct syntax and logic based on GDL conventions. However, my training data includes the fundamentals of GDL up to 2023, and I can cross-reference updated documentation online if necessary to ensure accuracy.&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;If you have a specific requirement for a GDL script, feel free to share the details, and I’ll construct the code for you! Let me know what kind of object or functionality you’re aiming to create.&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I then asked it:&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;EM&gt;Can I write me the 2D script for a polygon fill, a square 1m wide x 1m wide with 3 straight edges and one edge that is a curve with a radius of 1m.&lt;/EM&gt;&lt;SPAN class="Apple-converted-space"&gt;&lt;EM&gt;&amp;nbsp;&lt;BR /&gt;&lt;/EM&gt;&lt;BR /&gt;Response:&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;!! 2D Script

! Set up fill type and pens
pen 1 ! Outline pen color
fill 25 ! Fill type (change to desired fill ID)
line_type 1 ! Line type for edges

!! Define the polygon with 4 points and an arc
poly2_b{4} 5, 1+2+4, ! 5 points, flags for visibility, sharp edges, and arcs
0, 0, ! Bottom-left corner (starting point)
1, 0, ! Bottom-right corner
1, 1, ! Top-right corner
0, 1, ! Arc start point (Top-left corner)
0, 0, 1, 1 ! Arc control: back to (0,0) with radius 1m

! Set fill and close the polygon
end&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I’m not in front of a computer to test, the arc control I’m not quite sure it correct but the rest looks half decent.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;i asked it some other leading questions and it gave me answers about GLOB_MODPAR_NAME so i think it’s fairly competent.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 02 Jun 2025 18:01:05 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/Is-it-possible-to-write-GDL-API-in-chatgpt-or-claude-ai/m-p/644932#M7290</guid>
      <dc:creator>scottjm</dc:creator>
      <dc:date>2025-06-02T18:01:05Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to write GDL API in chatgpt or claude ai?</title>
      <link>https://community.graphisoft.com/t5/GDL/Is-it-possible-to-write-GDL-API-in-chatgpt-or-claude-ai/m-p/644934#M7291</link>
      <description>&lt;P&gt;My guess is currently no one has spent the time to teach any ai engines things.&lt;/P&gt;
&lt;P&gt;And given the poor quality of the over all documentation I'm guessing we would need a collaboration of a bunch of us to really reach it to understand what's wanted and needed.&lt;/P&gt;
&lt;P&gt;I have started training a little with some of my simpler objects but it's been a longer process than I have time for&lt;/P&gt;</description>
      <pubDate>Tue, 31 Dec 2024 05:26:02 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/Is-it-possible-to-write-GDL-API-in-chatgpt-or-claude-ai/m-p/644934#M7291</guid>
      <dc:creator>SenecaDesignLLC</dc:creator>
      <dc:date>2024-12-31T05:26:02Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to write GDL API in chatgpt or claude ai?</title>
      <link>https://community.graphisoft.com/t5/GDL/Is-it-possible-to-write-GDL-API-in-chatgpt-or-claude-ai/m-p/644935#M7292</link>
      <description>&lt;P&gt;I have no doubt it could help with the syntax of a command or maybe even a group of commands or a routine to do something.&lt;/P&gt;
&lt;P&gt;But I doubt very much if it could create a complicated object, probably nothing more than the most basic of forms.&lt;/P&gt;
&lt;P&gt;Otherwise you would have to spend an awful lot of time explaining what the object is to do, how it is to be made up, what parameters you want, what relationships they have, how it is to be controlled, min/max values, etc., etc.&lt;/P&gt;
&lt;P&gt;I am just not sure it would be possible, unless you are happy for it to just knock something together and then try and refine it to what you want.&lt;/P&gt;
&lt;P&gt;I guess the only way to find out is give it a try.&lt;/P&gt;
&lt;P&gt;If it doesn't work, you are no worse of than trying to do it yourself.&lt;/P&gt;
&lt;P&gt;If it does work - bonus.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Barry.&lt;/P&gt;</description>
      <pubDate>Tue, 31 Dec 2024 05:41:29 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/Is-it-possible-to-write-GDL-API-in-chatgpt-or-claude-ai/m-p/644935#M7292</guid>
      <dc:creator>Barry Kelly</dc:creator>
      <dc:date>2024-12-31T05:41:29Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to write GDL API in chatgpt or claude ai?</title>
      <link>https://community.graphisoft.com/t5/GDL/Is-it-possible-to-write-GDL-API-in-chatgpt-or-claude-ai/m-p/644936#M7293</link>
      <description>&lt;P&gt;My question is to Graphisoft.&lt;BR /&gt;REVIT's Family is accessible to everyone.&lt;BR /&gt;However, GDL is not accessible even without basic knowledge.&lt;BR /&gt;I think Graphisoft has a responsibility to solve this problem.&lt;/P&gt;
&lt;P&gt;The most powerful thing about AI is the programming language. Because there is so much data. Programming is really making programming accessible to beginners. So, I would like to know what Graphisoft is doing for Archicad GDL. I would like to know if they have made the GDL file format readable by AI. Or, as you mentioned, are they preparing to provide learning text for users?&lt;/P&gt;</description>
      <pubDate>Thu, 02 Jan 2025 21:14:44 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/Is-it-possible-to-write-GDL-API-in-chatgpt-or-claude-ai/m-p/644936#M7293</guid>
      <dc:creator>LeeJaeYoung</dc:creator>
      <dc:date>2025-01-02T21:14:44Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to write GDL API in chatgpt or claude ai?</title>
      <link>https://community.graphisoft.com/t5/GDL/Is-it-possible-to-write-GDL-API-in-chatgpt-or-claude-ai/m-p/653181#M7470</link>
      <description>&lt;P&gt;Gdl objects are generated&amp;nbsp; from coded scripts,&lt;/P&gt;
&lt;P&gt;AI is kind of machine learning,&lt;/P&gt;
&lt;P&gt;I'm sure there is a way to train AI to generate parametric objects from a command line.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I wish this will happen soon &lt;span class="lia-unicode-emoji" title=":red_heart:"&gt;❤️&lt;/span&gt;&lt;span class="lia-unicode-emoji" title=":grinning_face_with_big_eyes:"&gt;😃&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#FF0000"&gt;Edit by moderator : this separate post merged here as it is the same topic.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 26 Feb 2025 07:36:18 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/Is-it-possible-to-write-GDL-API-in-chatgpt-or-claude-ai/m-p/653181#M7470</guid>
      <dc:creator>Ahmed_K</dc:creator>
      <dc:date>2025-02-26T07:36:18Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to write GDL API in chatgpt or claude ai?</title>
      <link>https://community.graphisoft.com/t5/GDL/Is-it-possible-to-write-GDL-API-in-chatgpt-or-claude-ai/m-p/653184#M7471</link>
      <description>&lt;P&gt;AI needs good documentation to reference, or an easy source of reference materials that provide both input and output to learn from. GDL is lacking in the first, and the second is not easy... I would not hold my breath... AC40?&lt;/P&gt;</description>
      <pubDate>Wed, 26 Feb 2025 07:38:35 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/Is-it-possible-to-write-GDL-API-in-chatgpt-or-claude-ai/m-p/653184#M7471</guid>
      <dc:creator>Lingwisyer</dc:creator>
      <dc:date>2025-02-26T07:38:35Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to write GDL API in chatgpt or claude ai?</title>
      <link>https://community.graphisoft.com/t5/GDL/Is-it-possible-to-write-GDL-API-in-chatgpt-or-claude-ai/m-p/653209#M7475</link>
      <description>&lt;P&gt;Just for giggles, I tried with Claude before, and it could give me a 2D and 3D script for a typical table that was 80% correct. Then with a little back and forth I told it what it was doing wrong and then it fixed the code itself.&lt;/P&gt;&lt;P&gt;This was the 3D script in the end:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;! Parameters
length = 1200   ! Table length in mm
width = 800     ! Table width/depth in mm
height = 750    ! Table height in mm
top_thickness = 25  ! Table top thickness
leg_width = 50     ! Square leg dimension

! Position legs inset from edges
leg_inset = 50     ! Distance from edge

! Table top
material 1
add 0, 0, height - top_thickness
block length, width, top_thickness
del 1

! Legs (4 corners)
material 1
! Front left leg
add leg_inset, leg_inset, 0
block leg_width, leg_width, height - top_thickness
del 1

! Front right leg
add length - (leg_inset + leg_width), leg_inset, 0
block leg_width, leg_width, height - top_thickness
del 1

! Back left leg
add leg_inset, width - (leg_inset + leg_width), 0
block leg_width, leg_width, height - top_thickness
del 1

! Back right leg
add length - (leg_inset + leg_width), width - (leg_inset + leg_width), 0
block leg_width, leg_width, height - top_thickness
del 1&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I could also have it make a parameter script to limit the range of parameters.&lt;/P&gt;&lt;P&gt;But anything more complicated than a table, or any other script type failed immediately.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Maybe if you tell it to read everything on gdl.graphisoft.com first, and then prompt it, it might do better?&lt;/P&gt;</description>
      <pubDate>Wed, 26 Feb 2025 10:38:13 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/Is-it-possible-to-write-GDL-API-in-chatgpt-or-claude-ai/m-p/653209#M7475</guid>
      <dc:creator>danielk</dc:creator>
      <dc:date>2025-02-26T10:38:13Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to write GDL API in chatgpt or claude ai?</title>
      <link>https://community.graphisoft.com/t5/GDL/Is-it-possible-to-write-GDL-API-in-chatgpt-or-claude-ai/m-p/653262#M7477</link>
      <description>&lt;P&gt;this was about a year and a half ago, but i asked an AI if it could create ArchiCAD tools. it said yes.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;asked if it could improve the dimensioning tool according to some specs, and said yes.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;then it generated a lot of pages of code and told me to run it&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;i inmediately shut the computer down.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 07 Aug 2025 21:36:55 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/Is-it-possible-to-write-GDL-API-in-chatgpt-or-claude-ai/m-p/653262#M7477</guid>
      <dc:creator>jl_lt</dc:creator>
      <dc:date>2025-08-07T21:36:55Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to write GDL API in chatgpt or claude ai?</title>
      <link>https://community.graphisoft.com/t5/GDL/Is-it-possible-to-write-GDL-API-in-chatgpt-or-claude-ai/m-p/653264#M7478</link>
      <description>&lt;P&gt;so, what if we open all the code for all the objects and feed it to it? like&amp;nbsp; "this Is a chair, "this is a table" "this is the bilbao Guggenheim" and so forth?&lt;/P&gt;</description>
      <pubDate>Wed, 26 Feb 2025 15:16:43 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/Is-it-possible-to-write-GDL-API-in-chatgpt-or-claude-ai/m-p/653264#M7478</guid>
      <dc:creator>jl_lt</dc:creator>
      <dc:date>2025-02-26T15:16:43Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to write GDL API in chatgpt or claude ai?</title>
      <link>https://community.graphisoft.com/t5/GDL/Is-it-possible-to-write-GDL-API-in-chatgpt-or-claude-ai/m-p/653282#M7479</link>
      <description>&lt;P&gt;That's the idea, AI needs to be filled with data, feed it with tons of exemples, and it generates new objects from what it learns,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm sure it can be done, and once it works, boom,&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 26 Feb 2025 18:27:02 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/Is-it-possible-to-write-GDL-API-in-chatgpt-or-claude-ai/m-p/653282#M7479</guid>
      <dc:creator>Ahmed_K</dc:creator>
      <dc:date>2025-02-26T18:27:02Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to write GDL API in chatgpt or claude ai?</title>
      <link>https://community.graphisoft.com/t5/GDL/Is-it-possible-to-write-GDL-API-in-chatgpt-or-claude-ai/m-p/653331#M7482</link>
      <description>&lt;P&gt;ok, just not in my computer&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":rolling_on_the_floor_laughing:"&gt;🤣&lt;/span&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;i still dont trust that thing&lt;/P&gt;</description>
      <pubDate>Wed, 26 Feb 2025 21:47:44 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/Is-it-possible-to-write-GDL-API-in-chatgpt-or-claude-ai/m-p/653331#M7482</guid>
      <dc:creator>jl_lt</dc:creator>
      <dc:date>2025-02-26T21:47:44Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to write GDL API in chatgpt or claude ai?</title>
      <link>https://community.graphisoft.com/t5/GDL/Is-it-possible-to-write-GDL-API-in-chatgpt-or-claude-ai/m-p/664249#M7782</link>
      <description>&lt;P&gt;ChatGPT still does not fully understand GDL.&lt;BR data-start="278" data-end="281" /&gt;Isn't this because the Archicad GDL format is unreadable, like a &lt;CODE data-start="346" data-end="353"&gt;.docx&lt;/CODE&gt; file?&lt;BR data-start="359" data-end="362" /&gt;And isn't it also because Graphisoft hasn't taken ChatGPT into consideration?&lt;BR data-start="439" data-end="442" data-is-only-node="" /&gt;Why isn't the GDL source code made available for training purposes?&lt;/P&gt;
&lt;P&gt;It has been a year, but there has been no meaningful progress.&lt;BR data-start="132" data-end="135" /&gt;It seems that the manual has been read, but it appears to be an outdated one, as the parameter names differ from those currently used.&lt;BR data-start="269" data-end="272" /&gt;Do you know that GDL is considered both the greatest strength and the greatest weakness of Archicad?&lt;BR data-start="372" data-end="375" /&gt;Many users hope that AI will allow easier access to GDL, and we sincerely ask that you support such development.&lt;CODE data-start="346" data-end="353"&gt;&lt;/CODE&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 02 Jun 2025 06:17:10 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/Is-it-possible-to-write-GDL-API-in-chatgpt-or-claude-ai/m-p/664249#M7782</guid>
      <dc:creator>LeeJaeYoung</dc:creator>
      <dc:date>2025-06-02T06:17:10Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to write GDL API in chatgpt or claude ai?</title>
      <link>https://community.graphisoft.com/t5/GDL/Is-it-possible-to-write-GDL-API-in-chatgpt-or-claude-ai/m-p/693588#M8325</link>
      <description>&lt;P&gt;I tried to make an object in Claude Code. It can make a HSF directory with all xml-files. On my Mac I use the&amp;nbsp;LP_XMLConverter.app to maken a gsm file. This works. The&amp;nbsp;LP_XMLConverter.app is part of Archicad (show content).&lt;BR /&gt;Claude has te learn a lot but it can sure help.&lt;/P&gt;</description>
      <pubDate>Fri, 20 Feb 2026 11:09:54 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/Is-it-possible-to-write-GDL-API-in-chatgpt-or-claude-ai/m-p/693588#M8325</guid>
      <dc:creator>Zofa</dc:creator>
      <dc:date>2026-02-20T11:09:54Z</dc:date>
    </item>
    <item>
      <title>Betreff: Is it possible to write GDL API in chatgpt or claude ai?</title>
      <link>https://community.graphisoft.com/t5/GDL/Is-it-possible-to-write-GDL-API-in-chatgpt-or-claude-ai/m-p/693615#M8326</link>
      <description>&lt;P&gt;I recently made some very complex gdls with the help of gemeni3 (Google AI) like this:&lt;BR /&gt;&lt;BR /&gt;&lt;div class="video-embed-center video-embed"&gt;&lt;iframe class="embedly-embed" src="https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fwww.youtube.com%2Fembed%2FUpoOSPQxZ4I%3Ffeature%3Doembed&amp;amp;display_name=YouTube&amp;amp;url=https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DUpoOSPQxZ4I&amp;amp;image=https%3A%2F%2Fi.ytimg.com%2Fvi%2FUpoOSPQxZ4I%2Fhqdefault.jpg&amp;amp;type=text%2Fhtml&amp;amp;schema=youtube" width="200" height="113" scrolling="no" title="Archicad29 Polygon Kurvenarten, Straßenschichten und Randprofile" frameborder="0" allow="autoplay; fullscreen; encrypted-media; picture-in-picture;" allowfullscreen="true"&gt;&lt;/iframe&gt;&lt;/div&gt;Its in german, just as example whats possible with this. You have to be very patient and sent all failure-answers from Archicad direct to the AI and then the magic happens. The file is in the Video-Text für Download. AC29EduAut.&lt;/P&gt;</description>
      <pubDate>Fri, 20 Feb 2026 14:05:43 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/Is-it-possible-to-write-GDL-API-in-chatgpt-or-claude-ai/m-p/693615#M8326</guid>
      <dc:creator>Hmooslechner</dc:creator>
      <dc:date>2026-02-20T14:05:43Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to write GDL API in chatgpt or claude ai?</title>
      <link>https://community.graphisoft.com/t5/GDL/Is-it-possible-to-write-GDL-API-in-chatgpt-or-claude-ai/m-p/693642#M8327</link>
      <description>&lt;P&gt;I don't know if it's real, but this is in development:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://www.linkedin.com/posts/v-k-t-r-s_image-ai-archicad-activity-7430433772849987585-9XPT/?utm_source=share&amp;amp;utm_medium=member_desktop&amp;amp;rcm=ACoAADswk9sBnzkXDtcmv4Qux0sw3YNiCsH7NlY" target="_blank"&gt;https://www.linkedin.com/posts/v-k-t-r-s_image-ai-archicad-activity-7430433772849987585-9XPT/?utm_source=share&amp;amp;utm_medium=member_desktop&amp;amp;rcm=ACoAADswk9sBnzkXDtcmv4Qux0sw3YNiCsH7NlY&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="gdl IA 01.jpg" style="width: 400px;"&gt;&lt;img src="https://community.graphisoft.com/t5/image/serverpage/image-id/97550iCCD9D1793094A1D8/image-size/medium?v=v2&amp;amp;px=400" role="button" title="gdl IA 01.jpg" alt="gdl IA 01.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="gdl IA 02.jpg" style="width: 400px;"&gt;&lt;img src="https://community.graphisoft.com/t5/image/serverpage/image-id/97551iB482F254519CBCDC/image-size/medium?v=v2&amp;amp;px=400" role="button" title="gdl IA 02.jpg" alt="gdl IA 02.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;</description>
      <pubDate>Fri, 20 Feb 2026 20:54:18 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/Is-it-possible-to-write-GDL-API-in-chatgpt-or-claude-ai/m-p/693642#M8327</guid>
      <dc:creator>marcoariveross</dc:creator>
      <dc:date>2026-02-20T20:54:18Z</dc:date>
    </item>
    <item>
      <title>Betreff: Is it possible to write GDL API in chatgpt or claude ai?</title>
      <link>https://community.graphisoft.com/t5/GDL/Is-it-possible-to-write-GDL-API-in-chatgpt-or-claude-ai/m-p/693677#M8329</link>
      <description>&lt;P&gt;Maybe&amp;nbsp; - have a look at this german task in this forum. I made some Polygon-Fill GDLs with circles und a kind of Voroni-structure even in 3D with the help of DeepSeek AI and Gemini 3.1 AI:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://community.graphisoft.com/t5/Programmierung/2D-GDL-Kreise-verteilen/m-p/693573#M8325" target="_blank"&gt;https://community.graphisoft.com/t5/Programmierung/2D-GDL-Kreise-verteilen/m-p/693573#M8325&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Hmooslechner_0-1771690756827.jpeg" style="width: 400px;"&gt;&lt;img src="https://community.graphisoft.com/t5/image/serverpage/image-id/97566i6B459377E4487178/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Hmooslechner_0-1771690756827.jpeg" alt="Hmooslechner_0-1771690756827.jpeg" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;this is Esteban Ramos dynamic polygone-Code - filled with this structures.&lt;BR /&gt;If someone wants to try it: AC29EduAut:&amp;nbsp;&lt;A href="https://www.dropbox.com/scl/fi/hpw91huipdudxo3fiw7p0/Kreise-verteilen.pln?rlkey=jdrfq2l2sjqr3tnnvxxv0zq07&amp;amp;st=adc3juz2&amp;amp;dl=0" target="_blank"&gt;https://www.dropbox.com/scl/fi/hpw91huipdudxo3fiw7p0/Kreise-verteilen.pln?rlkey=jdrfq2l2sjqr3tnnvxxv0zq07&amp;amp;st=adc3juz2&amp;amp;dl=0&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 21 Feb 2026 16:21:02 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/Is-it-possible-to-write-GDL-API-in-chatgpt-or-claude-ai/m-p/693677#M8329</guid>
      <dc:creator>Hmooslechner</dc:creator>
      <dc:date>2026-02-21T16:21:02Z</dc:date>
    </item>
  </channel>
</rss>

