#custom gpts in android app

1 messages · Page 1 of 1 (latest)

raw mango
#

**Steps to reproduce:**
> 1. Create Custom GPT in Web UI
> 2. Use new GPT in web UI
> 3. Switch to Android App, refresh list.

**Expected result:**
> Cross platform access to custom gpts and messages.

**Actual result:**
> Network Error, Message exists, but shows as v3.5, and the custom gpt does not show up in the list with other gpts.

**Additional information**
> Browser: any firefox, chrome
> OS: Android ```
unkempt grove
raw mango
#

I can not. I get a message that loading message from a shared link is blocked.

#

I actually tried importing a conversation the other day as it told me it was possible to import context , but when I do.. it says it can't because the site is blocking it.

unkempt grove
raw mango
#

But this is unrelated to my original issue as far a i know.

#

The only reason i know how to import a shared link is from this conversation..

'''# Attempting to access the shared link provided by the user to import the ChatGPT v3.5 session data.
shared_link = "https://chat.openai.com/share/b0d3114e-aa53-4fcd-a77b-96d3ea08e663"

Checking if the link can be accessed and its content imported.

import requests

try:
response = requests.get(shared_link)
if response.status_code == 200:
# Successfully accessed the link
data_imported = True
content = response.text
else:
# Failed to access the link
data_imported = False
content = None
except Exception as e:
# Handle any exceptions during the process
data_imported = False
content = str(e)

data_imported, content[:500] # Displaying the first 500 characters of the content for review.'''

unkempt grove
# raw mango The only reason i know how to import a shared link is from this conversation.. ...

Any guidance it gave you to programmatically import a chat was likely a hallucination. The only function that's similar to this is the "Continue chat" feature available when opening a shared chat link. Certain chats can't be shared right now, like chats where DALL·E has generated images (last I checked at least).

But as for your original issue, what is the issue exactly? You can't start new chats using a custom GPT? Or you can't access a certain chat in your history?

raw mango
#

If i create a new chat using a newly created custom gpt. It all works fine from web ui. The custom gpt shows in the side bar, when in conversation it shows it is the custom gpt vs it saying ChatGPT v4.

However, on android, if the chat history for my account has a custom gpt conversation it throws a network error on list load, refresh.

However, I can see the contents of the conversation in android, but it doesn't see it as a custom gpt... It thinks it is a v3.5 chat.

I also do not see the custom gpt on the side bar or in the model selection when creating a new chat in android.

#

I have tried this on both the general android version and the beta version.