<?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: anyone using ChatGPT yet? in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/anyone-using-chatgpt-yet/m-p/1250875#M66628</link>
    <description>&lt;P&gt;It's like a college student in that it assumes everything is common knowledge, asserts it already personally knew everything&amp;nbsp; and wings it without having to reference anything&lt;/P&gt;</description>
    <pubDate>Tue, 24 Jan 2023 16:42:10 GMT</pubDate>
    <dc:creator>piratecheese</dc:creator>
    <dc:date>2023-01-24T16:42:10Z</dc:date>
    <item>
      <title>anyone using ChatGPT yet?</title>
      <link>https://community.esri.com/t5/python-questions/anyone-using-chatgpt-yet/m-p/1242271#M66302</link>
      <description>&lt;P&gt;I'm trying AI ChatGPT, impressive:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="BertKraan1_0-1671434869517.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/58834i38FE0CAED793A47C/image-size/medium?v=v2&amp;amp;px=400" role="button" title="BertKraan1_0-1671434869517.png" alt="BertKraan1_0-1671434869517.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Keep in mind i'm using natural language and this was it's first response. As a single gis person in my company all assistance is welcome.&lt;/P&gt;&lt;P&gt;(https.openai.com)&lt;/P&gt;</description>
      <pubDate>Mon, 19 Dec 2022 07:30:18 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/anyone-using-chatgpt-yet/m-p/1242271#M66302</guid>
      <dc:creator>Gisbert61</dc:creator>
      <dc:date>2022-12-19T07:30:18Z</dc:date>
    </item>
    <item>
      <title>Re: anyone using ChatGPT yet?</title>
      <link>https://community.esri.com/t5/python-questions/anyone-using-chatgpt-yet/m-p/1242272#M66303</link>
      <description>&lt;P&gt;and then I asked: "can you write a python script to backup all layers in an arcgis online organisation"&lt;/P&gt;&lt;P&gt;response was:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="c"&gt;import requests
import json

# Set the base URL for the ArcGIS REST API
base_url = "https://www.arcgis.com/sharing/rest"

# Set the organization's name and the username and password of an account with privileges to access the organization's content
org_name = "your_organization_name"
username = "your_username"
password = "your_password"

# Use the ArcGIS REST API to authenticate the user and get an access token
auth_url = f"{base_url}/generateToken"
auth_params = {
"username": username,
"password": password,
"client": "referer",
"referer": f"https://{org_name}.maps.arcgis.com",
"f": "json"
}
auth_response = requests.post(auth_url, auth_params)
auth_response_json = auth_response.json()
access_token = auth_response_json["token"]

# Use the ArcGIS REST API to search for all layers in the organization
search_url = f"{base_url}/search"
search_params = {
"q": "type:\"layer\" AND owner:{org_name}",
"token": access_token,
"f": "json"
}
search_response = requests.get(search_url, search_params)
search_response_json = search_response.json()

# Iterate through the search results and download each layer
for result in search_response_json["results"]:
# Get the layer's ID and URL
layer_id = result["id"]
layer_url = result["url"]

# Use the ArcGIS REST API to export the layer as a GeoJSON file
export_url = f"{base_url}/content/items/{layer_id}/data"
export_params = {
"token": access_token,
"f": "geojson"
}
export_response = requests.get(export_url, export_params)

# Save the GeoJSON file to a local file
with open(f"{layer_id}.geojson", "w") as f:
f.write(export_response.text)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And it ended with&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="BertKraan1_0-1671435654652.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/58835i410FAD2686E7C0A0/image-size/medium?v=v2&amp;amp;px=400" role="button" title="BertKraan1_0-1671435654652.png" alt="BertKraan1_0-1671435654652.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;HR /&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;HR /&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 19 Dec 2022 07:41:04 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/anyone-using-chatgpt-yet/m-p/1242272#M66303</guid>
      <dc:creator>Gisbert61</dc:creator>
      <dc:date>2022-12-19T07:41:04Z</dc:date>
    </item>
    <item>
      <title>Re: anyone using ChatGPT yet?</title>
      <link>https://community.esri.com/t5/python-questions/anyone-using-chatgpt-yet/m-p/1242395#M66307</link>
      <description>&lt;P&gt;I am looking forward to playing with it. In your example, it seems like Duck Duck Go!! Does it give links to the pages that it copied the content from or is it like a college student?&lt;/P&gt;&lt;P&gt;Can you ask it for maps?&lt;/P&gt;&lt;P&gt;In a month or so every automated support chat engine will be using ChatGPT and still delivering the same&amp;nbsp; information. (I want to say "useless information" but I want to be nice, so I don't end up on the Bad Santa List.)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 19 Dec 2022 16:26:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/anyone-using-chatgpt-yet/m-p/1242395#M66307</guid>
      <dc:creator>Brian_Wilson</dc:creator>
      <dc:date>2022-12-19T16:26:40Z</dc:date>
    </item>
    <item>
      <title>Re: anyone using ChatGPT yet?</title>
      <link>https://community.esri.com/t5/python-questions/anyone-using-chatgpt-yet/m-p/1244178#M66353</link>
      <description>&lt;P&gt;I have been using ChatGPT quite often over the last couple weeks. I find that it is partially a hit or miss with developing python code for GIS (specifically ArcGIS). For example in the arcpy.mp submodule, it will develop code references where the submodule components don't even exist. On the other hand, I have had it assist me with a couple coding problems either to get started and to improve my overall code and I have found it has done a good job.&lt;/P&gt;&lt;P&gt;I imagine this will only get better over time.&lt;/P&gt;&lt;P&gt;Good luck!&lt;/P&gt;</description>
      <pubDate>Thu, 29 Dec 2022 10:28:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/anyone-using-chatgpt-yet/m-p/1244178#M66353</guid>
      <dc:creator>ChrisJRoss13</dc:creator>
      <dc:date>2022-12-29T10:28:25Z</dc:date>
    </item>
    <item>
      <title>Re: anyone using ChatGPT yet?</title>
      <link>https://community.esri.com/t5/python-questions/anyone-using-chatgpt-yet/m-p/1250871#M66627</link>
      <description>&lt;P&gt;I always told myself I'm lazy but in order to achieve peak laziness and offload coding to chat GPT, I have to log in during off peak hours and remote in from home. I don't know If It's good I'm working more or bad that I'm spending all day at the office wishing I was home so I could get work done.&lt;/P&gt;&lt;P&gt;Currently trying to get it to make a geoprocessing script to run CAD to Geodatabase, then run Spit by Attribute on the resulting feature classes. The biggest issue I'm running into is passing along my parameters to the person using the tool.&lt;/P&gt;&lt;P&gt;UPDATE:&lt;/P&gt;&lt;P&gt;For clarity, I've only ever done Visual Basic, Excel functions and a bit of arcade label engine coding. Importing libraries is a concept that scares me, but I'm familiar with the concept of syntax, variables and looking through documentation. GPT has given me a broken skeleton I can fix and in doing so, I feel more confident that I can code my own expressions from scratch if needed.&lt;/P&gt;&lt;P&gt;This code is mostly generated with chat GPT but I had to do a lot of digging to figure out what it did wrong to get to this point and I know there's a lot of looping that could be done with Feature_Type_Array="Point","Line"...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The code (parameters in picture):&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="python"&gt;import arcpy
import os

# Get user-defined parameters
input_cad_dataset = arcpy.GetParameterAsText(0) # CAD dataset
new_gdb_loc = arcpy.GetParameterAsText(1) # Output geodatabase location
prefix_name = arcpy.GetParameterAsText(2) # Prefix for gdb names

# Define placeholder geodatabase
placeholder_gdb = prefix_name + "_PLACEHOLDER.gdb"

# Create a new geodatabase for each feature class
annotation_gdb = prefix_name + "_Annotation"
multipatch_gdb = prefix_name + "_MultiPatch"
point_gdb = prefix_name + "_Point"
polygon_gdb = prefix_name + "_Polygon"
polyline_gdb = prefix_name + "_Polyline"


arcpy.CreateFileGDB_management(new_gdb_loc, annotation_gdb)
arcpy.CreateFileGDB_management(new_gdb_loc, multipatch_gdb)
arcpy.CreateFileGDB_management(new_gdb_loc, point_gdb)
arcpy.CreateFileGDB_management(new_gdb_loc, polygon_gdb)
arcpy.CreateFileGDB_management(new_gdb_loc, polyline_gdb)
arcpy.CreateFileGDB_management(new_gdb_loc, placeholder_gdb)

#make a path for each 
placeholder_gdb_path = os.path.join(new_gdb_loc, placeholder_gdb)

#the results of cad to geodatabase will be here. split by attibute aims here
pre_Annotation_path = os.path.join(placeholder_gdb_path + "\\" + prefix_name, "Annotation")
pre_Point_path = os.path.join(placeholder_gdb_path + "\\" + prefix_name, "Point")
pre_Polyline_path = os.path.join(placeholder_gdb_path + "\\" + prefix_name, "Polyline")
pre_Polygon_path = os.path.join(placeholder_gdb_path + "\\" + prefix_name, "Polygon")
pre_Multipatch_path = os.path.join(placeholder_gdb_path + "\\" + prefix_name, "Multipatch")


#the results of split by attribute dump here into the new databases
post_Annotation_path = os.path.join(new_gdb_loc, prefix_name + "_Annotation.gdb")
post_Point_path = os.path.join(new_gdb_loc, prefix_name + "_Point.gdb")
post_Polyline_path = os.path.join(new_gdb_loc, prefix_name + "_Polyline.gdb")
post_Polygon_path = os.path.join(new_gdb_loc, prefix_name + "_Polygon.gdb")
post_Multipatch_path = os.path.join(new_gdb_loc, prefix_name + "_Multipatch.gdb")


# Convert the CAD file to a feature class
arcpy.CADToGeodatabase_conversion(input_cad_dataset, placeholder_gdb_path, prefix_name,1000)


# Set the workspace to the placeholder geodatabase
arcpy.env.workspace = placeholder_gdb

# Split the feature classes by Layer
arcpy.SplitByAttributes_analysis(pre_Annotation_path, post_Annotation_path, "Layer")
arcpy.SplitByAttributes_analysis(pre_Multipatch_path, post_Multipatch_path, "Layer")
arcpy.SplitByAttributes_analysis(pre_Point_path,post_Point_path , "Layer")
arcpy.SplitByAttributes_analysis(pre_Polyline_path, post_Polyline_path, "Layer")
arcpy.SplitByAttributes_analysis(pre_Polygon_path, post_Polygon_path, "Layer")&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Chat GPT has a few problems. There's the lack of loop awareness, placing default argument inputs from documentation in as an expression within a function's argument, occasional use of variables before they get defined, it stops mid code sometimes and it has difficulty explaining some concepts like setting parameters to new users.&lt;/P&gt;&lt;P&gt;To a user unfamiliar with arcpy and script tools, It can be difficult to know what GPT wants you to set for parameters, or even how to set parameters in Pro (script properties). In fact it's methodology for setting up parameters is wonky.&amp;nbsp;&lt;/P&gt;&lt;P&gt;example:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="python"&gt;arcpy.management.CreateFileGDB(out_folder_path, out_name, {out_version})&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;is the given syntax from &lt;A href="https://pro.arcgis.com/en/pro-app/latest/tool-reference/data-management/create-file-gdb.htm" target="_self"&gt;documentation&lt;/A&gt;. The code it gives me is:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="python"&gt;import arcpy
new_gdb_loc = arcpy.GetParameterAsText(1) # Output geodatabase location
prefix_name = arcpy.GetParameterAsText(2) # Prefix for gdb names

arcpy.management.CreateFileGDB(out_folder_path=new_gdb_loc, out_name=prefix_name, out_version=1000)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;which gives errors&amp;nbsp; "out_folder_path variable undefined" which I was able to squish easy once I knew what was wrong.&lt;/P&gt;&lt;P&gt;In conclusion: I'll be using GPT more, but I'm never going to expect it to give me something correct the first time. I need to use my human brain to spot it's mistakes, but once I do, it's a lot more than what I could do by myself before and I can do a lot more by myself after now.&lt;/P&gt;</description>
      <pubDate>Mon, 30 Jan 2023 14:32:34 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/anyone-using-chatgpt-yet/m-p/1250871#M66627</guid>
      <dc:creator>piratecheese</dc:creator>
      <dc:date>2023-01-30T14:32:34Z</dc:date>
    </item>
    <item>
      <title>Re: anyone using ChatGPT yet?</title>
      <link>https://community.esri.com/t5/python-questions/anyone-using-chatgpt-yet/m-p/1250875#M66628</link>
      <description>&lt;P&gt;It's like a college student in that it assumes everything is common knowledge, asserts it already personally knew everything&amp;nbsp; and wings it without having to reference anything&lt;/P&gt;</description>
      <pubDate>Tue, 24 Jan 2023 16:42:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/anyone-using-chatgpt-yet/m-p/1250875#M66628</guid>
      <dc:creator>piratecheese</dc:creator>
      <dc:date>2023-01-24T16:42:10Z</dc:date>
    </item>
    <item>
      <title>Re: anyone using ChatGPT yet?</title>
      <link>https://community.esri.com/t5/python-questions/anyone-using-chatgpt-yet/m-p/1251674#M66670</link>
      <description>&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;I found this on LinkedIn the other day, and thought might add to this discussion - Credit: Jeremy Mirmelstein)&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;P&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;Jeremy Mirmelstein&lt;/SPAN&gt;&lt;SPAN class=""&gt;• 2nd&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class=""&gt;Sr. Solution Architect | Technical Lead | Team Lead @ Esri&lt;/SPAN&gt;&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;SPAN&gt;&lt;SPAN&gt;1d • &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class=""&gt;&lt;SPAN&gt;1 day ago&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;SPAN&gt;Follow&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;SPAN class=""&gt;&lt;SPAN&gt;Things are about to get super weird at work...&amp;nbsp;&lt;A href="https://www.linkedin.com/feed/hashtag/?keywords=gis&amp;amp;highlightedUpdateUrns=urn%3Ali%3Aactivity%3A7023500015817945088" target="_blank" rel="noopener"&gt;#gis&lt;/A&gt;&amp;nbsp;&lt;A href="https://www.linkedin.com/feed/hashtag/?keywords=esri&amp;amp;highlightedUpdateUrns=urn%3Ali%3Aactivity%3A7023500015817945088" target="_blank" rel="noopener"&gt;#esri&lt;/A&gt;&amp;nbsp;&lt;A href="https://www.linkedin.com/feed/hashtag/?keywords=chatgpt&amp;amp;highlightedUpdateUrns=urn%3Ali%3Aactivity%3A7023500015817945088" target="_blank" rel="noopener"&gt;#chatgpt&lt;/A&gt;&amp;nbsp;&lt;A href="https://www.linkedin.com/feed/hashtag/?keywords=python&amp;amp;highlightedUpdateUrns=urn%3Ali%3Aactivity%3A7023500015817945088" target="_blank" rel="noopener"&gt;#python&lt;/A&gt;&amp;nbsp;&lt;A href="https://www.linkedin.com/feed/hashtag/?keywords=arcgis&amp;amp;highlightedUpdateUrns=urn%3Ali%3Aactivity%3A7023500015817945088" target="_blank" rel="noopener"&gt;#arcgis&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Me to ChatGPT: "Please write a python script using the ArcGIS Python API to query for all users in an ArcGIS Online organization"&lt;BR /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="TarigAhmed3_1-1674687747391.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/61281i55EC65AB791C2477/image-size/medium?v=v2&amp;amp;px=400" role="button" title="TarigAhmed3_1-1674687747391.png" alt="TarigAhmed3_1-1674687747391.png" /&gt;&lt;/span&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 25 Jan 2023 23:04:13 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/anyone-using-chatgpt-yet/m-p/1251674#M66670</guid>
      <dc:creator>TarigAhmed3</dc:creator>
      <dc:date>2023-01-25T23:04:13Z</dc:date>
    </item>
    <item>
      <title>Re: anyone using ChatGPT yet?</title>
      <link>https://community.esri.com/t5/python-questions/anyone-using-chatgpt-yet/m-p/1252498#M66692</link>
      <description>&lt;P&gt;We are just starting to get familiar with the capabilities of Chat GPT in my organization.&lt;/P&gt;&lt;P&gt;An area where the program has been absolutely excellent in is writing legal disclaimers for our various maps and applications. I have also asked the chat bot to write a GIS strategic plan, give recommendations on the best python IDE for GIS, developing a project timeline for migration from arc map to pro, and much much more.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Our first experiment with testing it's python skills will be coming up in a week or 2, when we deploy the script it wrote to scan our enterprise geodatabases and generate and xml metadata files for all of our feature classes. I'm feeling cautiously optimistic on the coding experiment so far. Hopefully we will have good news to report back with.&lt;/P&gt;</description>
      <pubDate>Fri, 27 Jan 2023 19:55:45 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/anyone-using-chatgpt-yet/m-p/1252498#M66692</guid>
      <dc:creator>MartinPaulMollenhauer</dc:creator>
      <dc:date>2023-01-27T19:55:45Z</dc:date>
    </item>
    <item>
      <title>Re: anyone using ChatGPT yet?</title>
      <link>https://community.esri.com/t5/python-questions/anyone-using-chatgpt-yet/m-p/1255852#M66814</link>
      <description>&lt;P&gt;I think as ChatGPT advances this will become a normal thing in the GIS world, I see where some issues are but it at least is a start.&lt;/P&gt;</description>
      <pubDate>Tue, 07 Feb 2023 19:48:43 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/anyone-using-chatgpt-yet/m-p/1255852#M66814</guid>
      <dc:creator>JustinHarwell</dc:creator>
      <dc:date>2023-02-07T19:48:43Z</dc:date>
    </item>
    <item>
      <title>Re: anyone using ChatGPT yet?</title>
      <link>https://community.esri.com/t5/python-questions/anyone-using-chatgpt-yet/m-p/1257354#M66831</link>
      <description>&lt;P&gt;Have you tried this yet?&amp;nbsp; I was just thinking about this on my 6 hour drive home on Friday.&amp;nbsp; I am planning on looking into it this month.&lt;/P&gt;</description>
      <pubDate>Sun, 12 Feb 2023 03:17:21 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/anyone-using-chatgpt-yet/m-p/1257354#M66831</guid>
      <dc:creator>WStreet</dc:creator>
      <dc:date>2023-02-12T03:17:21Z</dc:date>
    </item>
    <item>
      <title>Re: anyone using ChatGPT yet?</title>
      <link>https://community.esri.com/t5/python-questions/anyone-using-chatgpt-yet/m-p/1259480#M66885</link>
      <description>&lt;P&gt;I am also interested in this. Would love to hear the results.&lt;/P&gt;</description>
      <pubDate>Fri, 17 Feb 2023 18:58:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/anyone-using-chatgpt-yet/m-p/1259480#M66885</guid>
      <dc:creator>AndrewRegnery</dc:creator>
      <dc:date>2023-02-17T18:58:49Z</dc:date>
    </item>
    <item>
      <title>Re: anyone using ChatGPT yet?</title>
      <link>https://community.esri.com/t5/python-questions/anyone-using-chatgpt-yet/m-p/1283247#M67529</link>
      <description>&lt;P&gt;if there is anyone who wants to improve add-in (this is a basic implementation)&lt;/P&gt;&lt;P&gt;&lt;A href="https://github.com/nicogis/PAMChatGPT" target="_blank"&gt;nicogis/PAMChatGPT: Add-in ArcGIS Pro ChatGPT (github.com)&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 27 Apr 2023 09:36:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/anyone-using-chatgpt-yet/m-p/1283247#M67529</guid>
      <dc:creator>nicogis</dc:creator>
      <dc:date>2023-04-27T09:36:07Z</dc:date>
    </item>
    <item>
      <title>Re: anyone using ChatGPT yet?</title>
      <link>https://community.esri.com/t5/python-questions/anyone-using-chatgpt-yet/m-p/1292307#M67714</link>
      <description>&lt;P&gt;Any updates with the XML script?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 23 May 2023 20:43:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/anyone-using-chatgpt-yet/m-p/1292307#M67714</guid>
      <dc:creator>Jrostek_Bouldercounty</dc:creator>
      <dc:date>2023-05-23T20:43:41Z</dc:date>
    </item>
    <item>
      <title>Re: anyone using ChatGPT yet?</title>
      <link>https://community.esri.com/t5/python-questions/anyone-using-chatgpt-yet/m-p/1295271#M67776</link>
      <description>&lt;P&gt;Do you have this compiled in an addin that you can share?&lt;/P&gt;</description>
      <pubDate>Fri, 02 Jun 2023 06:41:14 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/anyone-using-chatgpt-yet/m-p/1295271#M67776</guid>
      <dc:creator>NickMiller2</dc:creator>
      <dc:date>2023-06-02T06:41:14Z</dc:date>
    </item>
    <item>
      <title>Re: anyone using ChatGPT yet?</title>
      <link>https://community.esri.com/t5/python-questions/anyone-using-chatgpt-yet/m-p/1295698#M67786</link>
      <description>&lt;P&gt;&lt;A href="https://github.com/nicogis/ArcGISPro_AddIn_ChatGPT/releases/tag/v1.0.0" target="_blank"&gt;Release v1.0.0 · nicogis/ArcGISPro_AddIn_ChatGPT · GitHub&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 05 Jun 2023 07:52:18 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/anyone-using-chatgpt-yet/m-p/1295698#M67786</guid>
      <dc:creator>nicogis</dc:creator>
      <dc:date>2023-06-05T07:52:18Z</dc:date>
    </item>
    <item>
      <title>Re: anyone using ChatGPT yet?</title>
      <link>https://community.esri.com/t5/python-questions/anyone-using-chatgpt-yet/m-p/1300918#M67999</link>
      <description>&lt;P&gt;I got this error after adding my API key.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Error at chat/completions (&lt;A href="https://api.openai.com/v1/chat/completions" target="_blank"&gt;https://api.openai.com/v1/chat/completions&lt;/A&gt;) with HTTP status code: NotFound. Content: { "error": { "message": "This is not a chat model and thus not supported in the v1/chat/completions endpoint. Did you mean to use v1/completions?", "type": "invalid_request_error", "param": "model", "code": null } }&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="NickMiller2_0-1687234653513.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/73660iD3953C64608D730B/image-size/medium?v=v2&amp;amp;px=400" role="button" title="NickMiller2_0-1687234653513.png" alt="NickMiller2_0-1687234653513.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 20 Jun 2023 04:22:03 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/anyone-using-chatgpt-yet/m-p/1300918#M67999</guid>
      <dc:creator>NickMiller2</dc:creator>
      <dc:date>2023-06-20T04:22:03Z</dc:date>
    </item>
    <item>
      <title>Re: anyone using ChatGPT yet?</title>
      <link>https://community.esri.com/t5/python-questions/anyone-using-chatgpt-yet/m-p/1300943#M68000</link>
      <description>&lt;P&gt;Use model gpt_turbo_3_5&lt;/P&gt;&lt;P&gt;Here there is the list of&amp;nbsp; model compatible for chat:&amp;nbsp;&lt;A href="https://platform.openai.com/docs/models/how-we-use-your-data" target="_blank"&gt;Models - OpenAI API&lt;/A&gt;&lt;/P&gt;&lt;P&gt;I have updated models:&amp;nbsp;&lt;A href="https://github.com/nicogis/ArcGISPro_AddIn_ChatGPT/releases/tag/v1.1.0" target="_blank"&gt;Release v1.1.0 · nicogis/ArcGISPro_AddIn_ChatGPT (github.com)&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 20 Jun 2023 08:29:04 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/anyone-using-chatgpt-yet/m-p/1300943#M68000</guid>
      <dc:creator>nicogis</dc:creator>
      <dc:date>2023-06-20T08:29:04Z</dc:date>
    </item>
  </channel>
</rss>

