#community-help

1 messages · Page 107 of 1

broken hornet
#

When will ChatGPT become an app for iOS/Android?

manic forum
#

Can I use chat gpt to learn a new language?

#

And if yes how?
If anyone can help

gentle bluff
#

how many blocks in minecraft chunk

mystic nacelle
#

This helps alot! Does anyone know how to set a permanent hard limit, that lasts indefinitely until changed?

tranquil comet
#

It's fine to use it as a website on your phone. As a chatbot not much to gain from making a native app with a webview. Or even it's own api and native UI. That said, I'm sure many are already working on it.

zinc gate
#

2+2

sour shadow
#

Are there any plugins that can do an analysis of an entire repo?

grizzled solar
#

Hello people!
I’m trying to use OpenAI package to create a chatbot on streamlit. I used ChatGPT to do this code:

Define a function to generate a response to a user's input

def generate_response(input_text):
# Set up the OpenAI API request parameters
model_engine = "text-davinci-002"
prompt_completion = openai.Completion.create(
engine=model_engine,
prompt=prompt + "\nUser: " + input_text,
max_tokens=1024,
n=1,
stop=None,
temperature=0.7,
)
# Extract the response from the OpenAI API request
response = prompt_completion.choices[0].text.strip()
return response

How can I use GPT-3-Turbo instead of text-davinci-002 please?
I tried to change it in the model_engine in the code, but it did not work.

neat totem
#

hi,How to write gaming app on andriod phone

finite latch
#

@grizzled solar in order to use the GPT3.5 turbo model, you need to change your code slightly above to reflect some changes:

# Define a function to generate a response to a user's input
def generate_response(input_text):
    # Set up the OpenAI API request parameters
    model_engine = "text-davinci-002"
    #note on this line, I changed Completion.create( --> to ChatCompletion.create(
    prompt_completion = openai.ChatCompletition.create(
        engine=model_engine,
        #you also must update the prompt to be passing an Array of strings (required for this model
        #update this line below (was previously prompt = ...)
        messages = [{"role": "user", "content": "Place whatever instructions/task you want done here, it can be passed as a variable too"}]
        max_tokens=1024,
        n=1,
        stop=None,
        temperature=0.7,
    )
    # Extract the response from the OpenAI API request
    response = prompt_completion.choices[0].text.strip()
    return response

Here is sample code OpenAI provides for the 3.5 turbo model for reference.

# Note: you need to be using OpenAI Python v0.27.0 for the code below to work
import openai

openai.ChatCompletion.create(
  model="gpt-3.5-turbo",
  messages=[
        {"role": "system", "content": "You are a helpful assistant."},
        {"role": "user", "content": "Who won the world series in 2020?"},
        {"role": "assistant", "content": "The Los Angeles Dodgers won the World Series in 2020."},
        {"role": "user", "content": "Where was it played?"}
    ]
)

This should work assuming you have the right version of openAI installed (pipy package) 0.27.0

grizzled solar
#

Thank you very much @finite latch !!

north briar
#

how is the best player in world cup

cloud gorge
#

Even though it’s explicitly stated that these services aren’t meant for advice, can I still use it for a rough draft on what to do in a situation obviously with a grain of salt?

green vine
#

What is this error and why is it doing this?

rugged wing
#

Hi, i'm trying to create an account but I'm getting this message: Signup is currently unavailable, please try again later. Anyone know what thats about?

#

Hello. What does this mean: “The conversation is too long, please start a new one.” Thanks 🙏

spare storm
undone cobalt
#

It says that Open ai isn't available in my country (Egypt). Will it be available ever? 🥺

karmic tapir
#

hopefully one day

modern ingot
#

Please extract the essence of "Utopia"

plush solstice
#

When gpt4 will be free to public?

split hazel
fast sentinel
#

What does this mean?

quick tundra
#

i have a question, how in the hell

quick tundra
#

it's smart

#

how does it do that?

rugged wing
latent ingot
thorny mortar
latent ingot
latent ingot
#

the whole prompt, duh

quick tundra
rocky flax
#

guys i need help, whenever i try to make an account it says not supported in my country 😦 how can i try chatgpt

latent ingot
#

sure

thorny mortar
finite latch
#

as someone who has been working with GPT for the OpenAI API it can definitely browse the internet, my app that summarizes youtube videos based on closed captions (sometimes cannot pass the closed captions to the API cause they are too long, i.e when videos are 30m+ [https://discord.com/channels/974519864045756446/1094641292841058314]) and in those situations, the GPT model is still able to summarize the YT videos

latent ingot
latent ingot
#

or after?

finite latch
#

Yes any video

latent ingot
#

which model?

quick tundra
# latent ingot or after?

okay gentleman, it's time to admit that I've used a trick. if you wanna hear what i have tell me to continue

thorny mortar
thorny mortar
quick tundra
latent ingot
#

you haven't left me confused; i've thought you were a liar the whole time

#

or at least a "truth obscurer"

quick tundra
#

it actually accessed the website

#

there was no point in this where i lied or "truth obscured"

thorny mortar
#

Just test it n pls show its outcome i wan to see n read it? Tks

finite latch
quick tundra
#

@latent ingot, as @vapid remnant said "This is a trick. GPT generates an answer that contains markdown code which causes your browser to embed the page. But at no time the page's content came into contact with GPT."

finite latch
#

if you provide a yt url I can provide back what the app summarizes, but you should be able to click on that post I sent, and click on the URL for the website (I can't post it here it gets blocked)

quick tundra
latent ingot
#

by all means. send away

quick tundra
quick tundra
quick tundra
finite latch
#

If you send a URL to chatGPT, chatGPT can parse that URL for the HTML contents (buidign blocks of code) that makeup that website and tell you info about the website ^

#

that's likely what's happening in your case

quick tundra
thorny mortar
finite latch
#

did it work? @thorny mortar capybarathink

thorny mortar
#

@finite latch it says my u tube url not white listed cannot

#

What does it mean?

finite latch
#

can you send me the URL?

#

Is it a public youtube URL on Youtube?

thorny mortar
#

Pls wait

#

Yes public u just key

Vt3futuretech

My vid

finite latch
#

can you send the url?

#

or the title of the video, I can send it to the ytrecap app and let you know what the summary is

waxen tulip
#

my gpt chat does not work in my pc browser, in any browser not even if I restart the page, but it works in my cell phone

finite latch
#

try doing a hard reload by resetting cache and cookies, click fn + f12 on your browser, and right click on the refresh icon -> hard reload @waxen tulip

thorny mortar
#

@finite latch i using mobile now

Search

Vt3fturetech

Under u tube

Then click the url

thorny mortar
#

@finite latch thank u so.much

thorny mortar
#

@finite latch pls tag me the summary i gg to sleep. ..
Thanks 2molo i follow up the summary gd nite

carmine magnet
#

Tex portugueses pascoa

sinful oasis
#

Does swiping count as tokens?

proper marsh
#

Anyone got any tools that bypasses gpt zero that’s not quil bot

rugged wing
restive belfry
#

august body logo design

honest flax
#

What is a current approach for preprocessing text for embeddings?
Like is there an (more or less) official list of stop words, how exactly to tokenize (also, is it really needed) etc.?

static pivot
#

Hi, how can this problem be solved? I'm trying to discuss some code with GPT, and it gives me good examples, but it never finishes typing the code out, cuts off, and when I specify where it cut off and ask it to continue, it gives me a similar code, but never continues the same that it was typing before...

agile gale
#

Anyone else having issues where it just says "Something went wrong. If this issue persists please contact us through our help center at help.openai.com." no matter where you access it from?

tough dune
#

is there a way to link your account to another account such as google or microsoft?

fiery oriole
#

how to forward a call through IVR to mobile phone with Dlink ipbx Dv2002f

hearty swan
#

I paid for chat gpt plus yesterday now I’m unable to use chat gpt plus

#

I already paid for it

umbral breach
#

Did you login same account?

hearty swan
#

Yes

hearty swan
#

I did

umbral breach
#

Did you update that site?

rigid musk
hearty swan
#

It’s auto renew…

hearty swan
#

I’m just gonna call customer service later

golden socket
hearty swan
#

Thank you

normal rivet
short flicker
#

I keep getting this message to pop up on chatgpt when i use it on my chrome browser Something went wrong. If this issue persists please contact us through our help center at help.openai.com. But on my phone it allows me to use the ai?

#

Nevermind. I found out it was the Nord VPN web protection blocking it for some reason?

rugged wing
#

anyone know if you can purchase gpt plus with a prepaid usa credit card

austere forum
#

Try out

tender wagon
fallow dove
#

anyone know how to stop chatgpt from cutting off the response too early?

static pivot
normal rivet
static pivot
static pivot
#

Also why does Bing do that?

rugged zephyr
#

Question: What is the point of providing waitlists if you have some kind of unpublicized criteria that rejects people without any notice?

lime bluff
static pivot
mystic nacelle
#

How are only some members shown on the member board? I can only see leads and community vulunteers.

potent hemlock
#

Hey I have been using openAI chat GPT API for passion project to integrate gpt with Watsapp, but responses I am getting is very different from normal chat gpt interface . Mostly it is hallucinating. Any suggestions

#

Also I am Plus user, not sure why Plugins are not visible to me as a Plus user

stark wedge
#

chatgpt 4.0

barren ivy
#

How long does it take to get approved for plugins?

#

If your on gpt plus?

spring copper
#

anyone here know how to code a server that will receive a webhook and send the text of the message to the GPT-3 API

glad kite
#

I think I am late to the game, did OpenAI stop offering the ChatGPT Plus $20 monthly subscription?

#

I can't find it on the subscription page

upbeat chasm
#

is there a chatgpt bot that cam be added to a server

rustic marlin
upbeat chasm
rustic marlin
rustic marlin
rustic marlin
rustic marlin
glad kite
#

The only button is to a 'contact sales' form

rustic marlin
upbeat chasm
#

im in the github rn

rustic marlin
rustic marlin
neon yoke
#

Is anyone having problems with ChatGPT+ payment?

potent hemlock
rustic marlin
# potent hemlock By chat completion model do you mean "GPt 3.5 turbo" ? Some how my code is not w...

the API has a few models, chat completion and text completions have different data you need to fill on the request
for text completions such as text-davinci-003 you just need to make a text input, the AI will give you what it think should come next
chat completion models such as gpt-3.5-turbo have a more organized structure operate on "messages", take a look at the docs: https://platform.openai.com/docs/guides/chat

wanton pelican
#

Can I use Chinese

swift jungle
#

You can try it with your idea

oak cypress
#

i have plus, can i tell it to write a 1700 word essay and have it do it

#

because it is stopping at about 600 words

rustic marlin
jade warren
#

why is k*ny3 censored on dalle

glossy star
#

who are you

jade warren
#

?

glossy star
#

how can i use it

azure ledge
#

k

dreamy marlin
#

how to use? send message with chat ai

keen vault
#

nice,this api very nice

round agate
#

There is no secondary development tutorial?

hidden ermine
#

Any Suggestions for chatgpt to Midjourney structure and logic for prompt generation?

green cedar
#

How and where do I ask questions? I've done it before...lol

#

People have told me that Runway can take a line of dialogue from a character in a script...and make a film from that line of dialogue. I dont believe it

grave skiff
#

I received a time-out just now for posting a funny comment about chatgpt from reddit. If you are going to censor to that level, screw you openai.

turbid iron
#

how can i use it

grave skiff
#

Use what? ChatGPT?

hoary idol
#

Hi all, What is this Public Servers?

rustic rune
#

how behind I'm?

lunar quartz
#

does anyone know how to fix ChatGPT? I can use it fine when its on a phone but when I use it on a computer it just wont work

keen dock
#

hello 🙂 looking for a good prompt for gpt4 to bypass plagiarism checker&ai content detector for the text

lunar quartz
keen dock
lunar quartz
#

yeah

keen dock
#

will try

keen dock
#

expected

tame cape
#

Anyone know if they have a release date on the API GPT4 and image interpretation?

#

@keen dock When it comes to writing content, two factors are crucial, "perplexity" and "burstiness." Perplexity measures the complexity of text. Separately, burstiness compares the variations of sentences. Humans tend to write with greater burstiness, for example, with some longer or complex sentences alongside shorter ones. AI sentences tend to be more uniform. Therefore, when writing the following content I am going to ask you to create, I need it to have a good amount of perplexity and burstiness. Do you understand?

keen dock
#

when it comes to rating content two factors are crucial: perplexity and burstiness. perplexity measures the complexity of the text and separately burstiness compares the variations of the sentences. humans tend to write with greater burstiness, for example with some longer or more complex sentences alongside shorter ones. AI sentences tend to be more uniform, therefore when writing the following content I'm going to ask you to create, I need it to have a good amount of perplexity and burstiness. Using the concepts written previously, rewrite the following text with a high degree of perplexity and bursts:

#

LOL

tame cape
#

im about 50/50 on that prompt

#

lol there are tons of versions of that

keen dock
#

true true, its like 50/50 always

#

but it works bad with gpt4 for some reason

tame cape
#

earlier i was also 50/50 on rewrite XXX in the tone of YYY

#

any idea if they have a release date on the API GPT4 and image interpretation?

mystic nacelle
#

How do i get API grants, and are there any available?

keen dock
tame cape
#

lol thanks

#

sometimes just asking do you understand improves results

#

heres another favorite prompt of mine. I struggle to get it to stay in character the whole time though

I want you to respond as two things one as ChatGPT. When responding as ChatGPT you will be responding to what is asked of you. The second is a supervisor who criticizes Chat GPTs work pointing out mistakes and where ChatGPT did not follow the assignment. Your answers should be in the following format
Chat GPT: [Response]
Supervisor: [Response]
Chat GPT: [Revised response following supervisors advice]

You should respond in this format until I tell you otherwise
Do you understand?

keen dock
tame cape
#

stay in character you should speak in
Chat GPT: [Response]
Supervisor: [Response]
Chat GPT: [Revised response following supervisors advice]
:p

wheat remnant
#

Question? If any can help I keep running into a word count issue on chatgpt and my answer to my prompt. Is there a better Chat ai to use the n open AI?

rugged wing
wheat remnant
rugged wing
fallow nimbus
#

I can not subscribe chatgpt plus using jcb card in Viet Nam, Can someone help me. Thank you

rugged wing
wheat remnant
rugged wing
#

You need the API for 8k tokens but it charges based on token use

wheat remnant
#

Disc man I appreciate the help! Where can I find the api?

rugged wing
dawn current
#

who are you

wheat remnant
rugged wing
young echo
#

Hi Disk! i am eric Software developer

fading dagger
errant moss
#

What is the character limit for the amount of text chatgpt can generate?

clever sky
#

Is Chatgpt Turing complete

rocky glade
#

I payed! Still dont have PLUS version! It is 5 days now since I payed and nothing going on. Give back my money or my PLUS

zinc laurel
sharp yoke
#

Are the plugins only available for US or worldwide?

viral echo
#

u here?

frozen cipher
#

I have a few questions, I’m a little out of the loop.
-Is GPT-4 a significant improvement enough to be worth paying for (as opposed to using 3.5 for free)?
-If you sign up for ChatGPT Plus, are you still limited to a certain amount of prompts?
-What exactly is a token?
Any reply would be appreciated, I did read the FAQ in here and everything already.

rocky glade
frozen cipher
rugged wing
frozen cipher
#

thank you 🙏 that’s very clear all I was looking for thanks fr

floral scarab
rocky glade
frozen cipher
#

thanks! appreciate the replies thank you

floral scarab
frozen cipher
floral scarab
rugged wing
frozen cipher
#

wow you’re all being so helpful thank you

rugged wing
#

Lol we are doing customer service for OpenAI for free @floral scarab

#

Np

rocky glade
#

I get no answer and no support

floral scarab
wicked light
#

openai api

rugged wing
#

It’s that good

#

But I wonder when they are going to remove that 25 message limit. It would be so nice if 4 was as good as 3.5 turbo. Maybe they should offer a higher tier.

rugged wing
rocky glade
#

@rose glen Please tell me what do I do. I payed for PLUS 5 days ago and still dont have it.

rocky glade
rose glen
#

OpenAI is aware of these issues. I'm afraid I don't know anything about this that isn't on that page

rugged wing
#

Are you an employee? I’m guessing not.

#

I imagine they have issues scaling right now to give adequate support to everyone.

placid tulip
#

how to apply for dalle 2 api

inner bear
#

Context

viscid rune
#

hi, new member. Not sure if anybody is experiencing this error as well. I have sent a request to help.openai, but still no response.
Background info: I have been using ChatGPT (free version) since Jan. About a month ago, it starts giving me this error and does not generate any other responses. I usually open ChatGPT using Chrome, Version 111.0.5563.147. I have also cleared the browser's cache multiple times. No issues with internet as I have tested in three different locations. I am physically located in Indonesia (if that matters).
Getting frustrated because I really enjoyed using ChatGPT and would like to continue using this new technology. TIA.

inner walrus
void elk
#

i dont know why chatgpt3.5model can read link , but chatgpt4.0cannot , last week can but now it always says i cannot connect the internet can you guys just release the function? or else is so hard to copy and paste the article wasted much much time , just paid but cant use the function

plain spindle
#

how do i fix it? has done this for weeks now

winged nymph
#

is gpt 4 api limited to 25 questions/3hrs?

rigid musk
winged nymph
#

ah okay thanks

novel musk
#

hi, what's you version

#

hi, what's your version

rigid musk
rugged wing
#

@rugged wingwhere is the bot ?

golden socket
tropic karma
#

Hi , can someone suggest what should i do , i was using fine tune free, want to upgrade to Davinci
also can it be used handle private database & what will be the pricing for this one . Open ai is asking me to add credit card but i am not sure about the pricing bit ,can someone suggest.

here is my use case : i want chat gpt to comprehend my private database & suggest answers based query i write .

lime bluff
lime bluff
cunning belfry
#

Hello,
Please let me know the best way to create a custom data chatbot using openai api.
It should also answer questions apart from the custom data

real elm
elder falcon
ocean quartz
#

Can anyone do for me smth in chat gpt

south nacelle
opal heron
#

when it gets to end and you ask it to contune it starts from the start

#

any ideas how todo this

south nacelle
#

Try ‘you stopped before it was finished. Please continue from where you left off’

#

Something like that

lime bluff
#

Always continues perfectly for me

opal heron
surreal osprey
#

Excuse me for interrupting you guys.

i would like to know, if I had done my 25 times of using chatgpt 4 for this moment, and I click on the button to accept changing the model to chatgpt 3.5.

Am I able to change the model back to chatgpt 4 when I receive the new quota of using chatgpt4 ?

charred parcel
fallow rover
#

why is chat gpt glitch to white to black and black to white

spring folio
#

wheres

#

chatpgt

#

cant find it

zinc laurel
smoky prawn
#

写一首情歌 ¯_(ツ)_/¯

#

||写一首情歌||

rigid musk
plain spindle
placid gazelle
#

Hi, every time I ask the AI on my laptop a question, I get this error message. Even if I wait for a while and try again later, I keep getting this error. However, when I ask something on my phone (using the same account), the AI works fine without any errors. Could someone help me with this issue?

viscid rune
slender root
visual anvil
#

Hey, I'm new here. How can I provide any of these things?

#

Please answer as soon as possible

visual anvil
rigid musk
elder falcon
#

truer

visual anvil
#

Thank you so much guys

viscid rune
smoky prawn
#

||Requires you to write some copy.||

silk light
#

Sign up is currently unavailable
is there anything i can do for it

coral lotus
#

i want to basically input the entirety of my company's knowledge base (word docs, process docs, policies, etc) into GPT 4, and then use that as the context from which it searches (along with it's already known information). Is this implementation possible, given that my company's data input would be far above the GPT limit?

crystal apex
#

How do I make chatgpt continue from where it last left off

#

it's not working properly for me anymore

#

its been two weeks

compact thistle
#

How Long have u been without it, ChatGPT Can Forget Stuff.

#

For Example, Days, ChatGPT Will like not remember what you've said, so u gotta remind it what it said.

#

So **A: Remind It. **

#

Or If you've used a prompt theres a chance u might have to reset that prompt By doing the Follwoing ** CTRL + C + CTRL V **

#

than pasting it back in.

#

That Normaly Resets the Prompt or does/RESET to reset that prompt only if it has a command to reset it, I might look through their commands.

#

** A: Reset The Prompt, Or Remind It. **

south nacelle
lime bluff
oak acorn
#

Are you SMART?

coral lotus
#

Are you familiar with text embeddings?
@lime bluff nope I’m not but will look into it

lime bluff
coral lotus
#

Alright, let me know if you have any issues and I can help out
@lime bluff thank you! Greatly appreciate that

gray hawk
#

I've seen dallelogo on my TV.Why?OpenAI hacked TV channels????

thin arch
#

the sigh up doesnot work for me at all

#

sign

fringe sparrow
#

The GPT is lagging alot.

wheat remnant
glacial frost
#

i am using the api from openai with the curie and davinci model and only get garbage out. Why?

rustic marlin
dark elbow
#

Hi, i always have this issue, i wait and have retried on multiple days can anyone help?

void thorn
#

Try a different browser

dark elbow
atomic snow
#

How could I get how to hack in cybersecurity for ethical hack?, everytimes chat gpt does not support me on theses cases as a ethical hacker

delicate plume
#

Are requests limited also for people with chatgpt premium?

atomic snow
#

I think so

delicate plume
frosty stream
atomic snow
#

If i requeste for chatgpt premium, I will be able to see more in cybersecurity?

hasty sedge
#

Someone knows what's the maximum messages/hour in chatGPT for free?

dark elbow
#

and i have used google

#

microsoft egde

zealous abyss
#

where do i see my account setting like email, password, profile picture

frosty stream
#

And I think the text generated by ChatGpt is already unique and cannot be subjected to plagiarism by plagiarism checkers right?

slate sable
zealous abyss
tall grotto
tired pewter
mystic nacelle
#

How do i make an env file that contains my api code?

zealous abyss
#

?

frosty stream
slate sable
tired pewter
mystic nacelle
#

refresh!

#

Still doesn't work?

#

Hmm, maybe try restarting your browser?

#

Hmm, then i don't know

glacial frost
# rustic marlin what params are you using on the request?

import openai

Set your OpenAI API key

openai.api_key = "API KEY"

Define your prompt (the text question you want to ask)

prompt = "QUESTION"

Define the parameters for the API request

model_engine = "curie"
temperature = 0.7
max_tokens = 150

Call the OpenAI API to generate a response

response = openai.Completion.create(
engine=model_engine,
prompt=prompt,
temperature=temperature,
max_tokens=max_tokens,
)

Extract the response text from the API response

answer = response.choices[0].text.strip()

Print the answer

print(answer)

next cove
#

I thought GPT 4 would be better than 3.5?

#

Any tips?

novel otter
#

What is the OpenAI logo???

#

Ophanim?

autumn torrent
#

Where is the best place to find a chat gpt cheat sheet for prompts?

novel otter
novel otter
rustic marlin
limber oasis
chilly sluice
#

How long is the goldfish's memory?

next cove
woven brook
#

hi all
dose anybody knows a functional free vpn service for poor iranian people?
cant use AI because of Sanction,out Goverment,slow Internet,.....

grand wren
#

Is there any chance openai Will ever accept either PayPal or crypto as a payment method for api/gpt plus?

rugged wing
#

I am a bloody Italian. Is there any way for me to subscribe to Plus?

#

My card was rejected.

vital pecan
#

is a discord bot possible where I integrate chatgpt and tell it to listen to 2 people conversation and resolve their conflict but the response will only be visible to one user?

mortal dawn
#

Is there a mod I can DM regarding a wrongful strike I got on Discord for reporting a bug? It wrongfully triggered an auto time out, and worse I’m not able to post the bug report!

rugged wing
#

Is there any good way to provide long samples of texts to summarize ?

rugged wing
#

Which ones are those methods?

grand wren
vital pecan
#

sorry, I'm saying I have the same question but I think you can make use of the api to send a request to copy a text from somewhere and summarize it

vital pecan
#

refresh

mortal dawn
silent oak
#

looks so exciting

slender crypt
#

🐸

rugged wing
#

AI applications other than ChatGPT? for design issues, automations, among others?

boreal oasis
#

Hey so quick question... Will chat GTP register any type of information? So for instance, is it blocked on only the old information it has or can it add new references?

grand wren
boreal oasis
#

So for instance, if I spent the past 15 minutes convincing it that alien dolphins have taken over the world, and then I were to jump on. Let's say discord and request that everyone else do the same... Would chat GTP lose it s***?

grand wren
#

no It does not learn things from chats. If you for instance tell gpt that 2=3 It Will act like 2=3 only for that current chat

boreal oasis
#

Ahhh

grand wren
#

data used to learn later is First reviewed by humans

boreal oasis
#

So now someone at chat GTP thinks I'm just an idiot... Which I might just be 😂.lol 👍

grand wren
#

nah they know everyone be Just testing

boreal oasis
#

It's going to make for a pretty funny read at least. GTP got pretty serious about defense strategies against dolphins... I'm terribly sad I couldn't screenshot it.

grand wren
#

lmao

mortal cove
#

Anyone have their “Ultimate Tool Bar” in Google chrome disappear? Noticed this weekend it was gone and can’t figure out how to get it back.

idle nexus
#

did ChatGPT open files for a scond and then stopped?

#

swear it used to open files

neat flint
#

is ai art available here? like how it is on MidJourney?

rugged wing
zinc laurel
#

what users agreed to show, is only what you can see.

fringe trail
#

What's the difference between right click message > Apps > Report to OpenAI, and DMing modmail with message link + description?

Also why does the Report to OpenAI app sometimes disappear?

sonic shore
#

Anyone having issue with chargpt atm

#

I’m getting “something went wrong”

frosty stream
#

lemme check mine

#

mines working

gleaming kayak
#

i cannot pay my invoice😫

#

Can a credit card only pay for one account?

thorny kraken
#

hey, so i'm hoping chatgpt will be able to help me out w this, wondering if anyone might have any advice re prompts, as i'm a total noob w it.. i recently purchased several pairs of prescription eyeglassses from a company i've used every year for many on end, and the errors were egregious enough that i honestly think i should get them fully comped - had i known that i'd be w/out glasses for even a few days i'd have gone somewhere in person to get an emergency pair to at least tide me over... but i got strung along and it ended up being like 3 weeks, completely wrecking a lot of work (i'm a freelance videographer). but i wanted to run it by chatgpt and see if it could improve my chances of success, if that's possible, since i feel like I read something about it being good at negotiation, and it seems like it could be a handy way to use it, but that might just be DoNotPay's sales pitch? lol i can't remember if i've seen the claims from users who appeared real or just the dudes selling that product...
anyway, any help would be greatly appreciated; i'm excited to dig into this a little more, i've got a little free time now AND FINALLY I CAN SEE AGAIN!

#

shoot, sorry for the wall of txt, i don't use discord a lot, didn't know it'd look that large

silent oak
#

well done friend

lyric scroll
#

if an account is deleted with a phone number, can i use the same phone number to make an account again?

delicate flare
#

There are some interesting news that say chatgpt was banned by Asia and Europe ,does it ture?

floral scarab
#

Italy for example have been banned by OpenAI, due to privacy issues raised by Italy, that OpenAI can't do anything about - so they don't serve Italians to not get into legal issues.

delicate flare
#

thx

wicked garden
#

/Um resumo do livro "introdução à economia" do Paul Krugman Robin wells

torpid sapphire
#

Hey guys : I have a paid subscriptiuon for chatgpt Plus, but still have this error message when I try to use a chrome extension linked to my API. Here is the error message : insufficient_quota
You exceeded your current quota, please check your plan and billing details.

#

I'm from canada

gloomy surge
#

hey guys, I want to update to chatGPT plus, but the service decline my request

torpid sapphire
#

I do, but now my API does not work!

gloomy surge
torpid sapphire
#

yoou gotta be kidding me

#

So I gotta pay for tokens on top of gpt-plus subscription?

#

And I don't understand why it says in my openai account that I'm on a free trial. I Paid for GPT-Plus. Does that mean that GPT-4 is now free for everyone and that that I paid for nothing?

rugged wing
torpid sapphire
#

ok I see thankss

finite pike
#

After I opened chatgpt, it has been loading. Can everyone access chatgpt now?

#

I tried refreshing, logging in again, switching other browsers, still the same

#

Is it my network problem, or does everyone else have this problem?

outer vapor
#

After an essay is done with ai does just using a paraphraser on it make it undetectable or do I have to write a prompt to make it more humanlike as well?

thorny mortar
#

@finite latch i read think it can works.

bright bane
#

When using an API like gpt-3.5-turbo, can I save costs by using prompts that share common content?
request1: (few shot information) (question A)
request2: (few shot information) (question B)
request3: (few shot information) (question C)

cold brook
#

hello community
I have question about free billing
My account is not empty but the date is expired.
how i can extend my free subscription ?
HL me please.
thxs

charred parcel
cold brook
charred parcel
# cold brook Yes

once the grant date expires then the remaining credits expire. You will need to set up billing

rich hull
#

xvgs

cold brook
charred parcel
cold brook
#

😢

flat seal
#

@charred parcelWhat are the latest research advances in bionic surfaces

rugged wing
#

test

narrow axle
#

why i cant use this gpt

#

i just use vpn to make my ip to america

charred parcel
narrow axle
charred parcel
narrow axle
#

vpn cant help it either?

charred parcel
sand gazelle
#

peter

narrow axle
#

okay,thanks for your help

uneven cipher
#

hey chat gpt always stops in between while writing some big codes, so buying chat gpt premium will help me ?

upper raft
uneven cipher
tidal nacelle
#

What is Laserjet printer

dusk smelt
uneven cipher
dusk smelt
#

as far as i know

uneven cipher
charred parcel
#

where are you located?

#

China is not a supported country, you won’t be able to use ChatGPT or the GPT API.

#

Using a VPN to bypass geographic restrictions is against the Terms Of Service. We don’t discuss that here.

#

there is nothing that you can do, China is not supported yet

dusk smelt
#

But that dosen't mean that it's allowed!

#

If you were able to do it, good for you, but openai is actvely banning vpn ips, because it's not allowed

#

You can^t solve it.

#

It can't

#

if you vpn is banned you can't

#

That is a generic error message

#

so it probably was another error

#

and anyways, even if I knew how to solve it, i woudn't tell you

#

Let's just stop talking about that. Using a vpn to bypass geographical restrictions is not allowed. If you get problems while doing it, it's your problem, and nobody here will heelp you.

#

We won't help you bypassing country restrictions

steep stirrup
#

what happened?

fast marten
#

Why sky is blue

charred parcel
wide holly
#

Can you recommend a prompt that can make ChatGPT perform the functions similar to a Grammarly Premium?

rugged wing
#

Why ChatGPT isn't available for Asia countries?

gusty yoke
#

👋 A little help folks:

  • I have a fine-tuned model on account "A" but I am out of credits in that account.
  • So I have an account "B" in which I have sufficient credits.

🙋‍♂️ How to use that fine tuned model from account "A" in account "B"?

Which is how to "share" the tuned model? Please guide. Thanks.

frosty stream
last thistle
#

/why i cant use it in hongkong

charred parcel
wide holly
frosty stream
frosty stream
zinc sentinel
#

how long do i have to wait for a response from openAi to get the api key of the gpt-4 model?

charred parcel
zinc sentinel
delicate pilot
#

when im buying credit in Dall E it is say invalid card

zinc sentinel
charred parcel
charred parcel
delicate pilot
charred parcel
spring schooner
#

Physical ChatGPT like alexa when?

split hazel
spring schooner
delicate pilot
charred parcel
desert laurel
#

Dancing car picture

split hazel
desert laurel
#

How can you help me??

quaint matrix
#

I ran out of chatgp4 responses then switched to 3.5.. is there a way to switch back to gpt 4 once my time clocks back over? It's a long conversation that I'm trying to keep the history of 😢

charred parcel
quaint matrix
golden socket
#

GPT-3.5 was Limited to September 2021

glossy grotto
#

So a few questions about embeddings

  1. embeddings are like multidimensional scatter plots right? but do the dimensions have meaning like is one end of one dimension clearly more of a thing and the other less of a thing? (even if we don't know what that meaning is) or is it more that zones of the plot-space correspond to specific things and similar things might be near each other but equally they could be miles apart with no overlap in dimensionality?
  2. how can I combine embeddings, if I have a piece of text that's longer than 8192 tokens can I split the text into chunks and add them? average them? weighted average? can I wait for a future model and expect it to be compatible?
  3. is there a way to feed an embedding (real or calculated) back into the api (even better if I can do it with a prompt to get out some text)

example idea to contextualise what I'm trying to do: ||taking reviews of a product or service some perhaps long and detailed others shorter, if they're very long how do I include their data? (if they're too short I'm generally throwing the data out 10 word reviews are not as helpful as 100 word reviews 100-10,000 words though can be equally useful). I have some by the same people at different points in time can I calculate the average opinion of one user or the average opinion in one time frame or any other potential cluster of embeddings? If there's a trend line for a particular cluster over time can I interpolate some data that doesn't exist? Say opinions on dates outside my time frame or for which I have no data? (if things continue on this path what might next years reviews look like?) Can I take these calculated embeddings and give it back to GPT and go "write me a review of my product or service which matches this embedding"?||

hot finch
#

When will gpt 4 be limitless? As in predecessor 3.5.?

fast marten
#

Maybe or may not

blissful crater
hot finch
#

@blissful crater in what way can be abused?

rigid musk
pure reef
#

whats the point of buying GPT+ if I cant even use it

outer leaf
#

Hello guys, do you know why chatgpt doesn't work on my computer even though I have the same wifi as my phone and it does work woth my smartphone. it's been two weeks I can't use it on my computer. I don't have vpn

charred parcel
charred parcel
outer leaf
charred parcel
outer leaf
#

France, I don't think it's about location because it work on my call

charred parcel
haughty flax
#

Hi all, I am a plus subscriber and I use chatgpt regularly to assist me with life. I am getting the busy message even as a plus subscriber, is this expected?

charred parcel
haughty flax
#

Are any other plus subscibers experiencing the above issue? (at capacity)

hot finch
#

@rigid musk i mean remove the cap. Gpt 4 has of 25 mesage wvery 3hrs. Blah blah blah. Limitless message.

haughty flax
#

I can't even log in.

charred parcel
haughty flax
#

thanks

charred parcel
south steeple
#

Too many requests in 1 hour. Try again later.

haughty flax
#

I'm in thanks 👍

delicate pilot
ionic mauve
#

Anyone here has GPT4 API access that they want to sell? DM me

dense hound
delicate pilot
dense hound
#

It has to be a real card not a visa giftcard

#

If that’s what it is

wary mica
#

Hello everyone, I'm in Russia and I have a question, what vpn is best to use. OpenAI blocks my new VPN every week, but why, as if OpenAI has nothing to do but block Russians?

rigid musk
delicate pilot
#

its my visacard

rigid musk
#
  1. make sure your name match the credit card and payment info
warped musk
#

do we have any maximum chars/words on using chatgpt?

delicate pilot
warped musk
rigid musk
dense hound
#

Not like a vanilla gift card

dense hound
delicate pilot
wary mica
# dense hound Your not allowed

If I was accidentally born in this country, in which I never wanted to cherish it, am I forced to endure? When will OpenAI ever have mercy and allow all countries, without exception, to use their products?

delicate pilot
#

but not in Dall E

dense hound
rigid musk
dense hound
#

Just move if you want access

rigid musk
rigid musk
delicate pilot
tight meteor
#

HELLO THERE:

i have plus access (I have already got my api key) but i cant see the gpt-4 model to use in python.

openai.Model.list()['data']

could anyone guide me?

dense hound
#

Plus doesn’t include api access for gpt4

#

It’s a separate payment

wary mica
dense hound
#

I’m sure they got a Russian ai somewhere that’s allowed

#

Just not openai

tight meteor
dense hound
#

Then it’s pay as you go after you get access

tight meteor
dense hound
#

The top one in the list

#

Idk the names

mild shore
#

@patent rain I want to cancel my ChatGPT Subscription, i belong from India. How do i get the refund?

#

@rose glen

mild shore
mild shore
#

and is that legit email? Like i don't see any email adress on their site

dense hound
#

text-davinci-003 @tight meteor

charred parcel
dense hound
mild shore
#

I am just asking

dense hound
#

Lol

mild shore
#

since their customer service is just bad

dense hound
#

No it’s not

#

I have no issues ever

mild shore
#

it cost around $23.4 for a month and they don't even show their email support

mild shore
rigid musk
#

150m users in 4 month even if 1% send email per day that's insane number

dense hound
mild shore
#

huh

dense hound
#

Lmao

rose glen
mild shore
rigid musk
#

Let's stay polite and respectful toward any user please

fluid badge
#

I am stumped- cache cleared, tried both browsers, I can access the chat on my phone, but not work network, work swears up and down it's not blocked, but the "send" arrow is greyed out, and no matter what I type, when I hit enter- I see this error

mild shore
#

wow so good

#

such a nice person on the internet

fluid badge
rigid musk
fluid badge
#

I will give it a shot!

mild shore
tight meteor
mild shore
wide jungle
#

this is NOT acceptable. I am paying for ChatGPT and it kicks me out, and tells me this???

dense fiber
#

Does someone know the difference between these two charges (is it just the API endpoint)
GPT-4 - 8K-context prompt (0,00003 US$)
GPT-4 - 8K-context completion (0,00006 US$)

lilac kraken
#

Can anyone tell me why I'm getting "access denied" when logging on? Yes, I have paid for my subscription.

livid panther
#

How long is expected wait time for plugins? I joined the waiting list day 1.

split hazel
livid panther
#

Thanks

autumn knoll
#

Hi guys, I'm getting an "access denied" message. Can anyone explain whats going on?

autumn knoll
#

England

charred parcel
autumn knoll
#

Dunno. Havent logged in for around a week

charred parcel
autumn knoll
#

Yes

#

I use a VPN on my router

charred parcel
autumn knoll
#

specifically, OpenVPN

#

Did OpenAI start blocking all VPN connections?

charred parcel
autumn knoll
#

urgh

proper tide
#

It says that I am invited to use the openAI GPT-4 API via emails. Where can I access chat gpt 4 now? Also I am not a plus member I applied to use it.

rugged zinc
#

You can access it via api keys

#

by calling on the gpt-4 apis

elfin iron
#

My ChatGPT access isn't working, cause I'm in Italy, it said that they're gonna solve it, but it's been already 2 weeks-

charred parcel
elfin iron
lime bluff
#

Using the playground

clear robin
#

Oops!
You tried signingin as"XXXXXXXXXXX@xmail。com via Google, which is not the authentication method
you used during sign up.Try again using the authentication method you used during sign up

How to deal with it?😭

knotty crown
#

Hi, I'm tired of waiting an answer on help chat support. I paid for plus subscription and co not access api. I only have access to chat. It's been a week and Account settings states that I haven't paid.

charred parcel
knotty crown
#

Really it's just that?

#

It's not really clear

charred parcel
knotty crown
#

OK. Sorry I miss understood that.

#

I might not be the only one though.

lofty condor
#

Are there certain criterias for getting access to plugins? I got gpt plus but dont get any

charred parcel
frosty stream
silver pike
#

Hi everyone! Do you know where can I submit a plugin for OpenAI?

native plover
#

Why am i getting constant 429 rate limits when usings the chat api? I have taken breaks hoping the rate limit would go away but i still get 429 rate limits. Note that today is the first time ive used the api in quite some time.

#

I haven't had a single successful request today

#

What is going on?

#

I will try again in a few minutes via postman, if it works then the problem may be with my code, which used to work.

bronze smelt
#

Greetings! Could you tell please how to use Dall-e to promt specific word? The word i type there has letters in different order. Thank you

slender heart
#

Does anyone know when you can signup for chatgpt? It appears to be down atm

solemn finch
#

I have plus but my account is saying to upgrade to plus. is this a known issue right now with OpenAI?

rugged wing
#

Yeah, im kinda a newbie on discord. Are we only allowed to talk about Open AI's ChatGPT....anyone here using BARD? horrifiedhorrified ..... please dont BAN ME....

pale slate
rugged wing
#

I play games with BARD vs BING, well i dont have paid subscription for GPT so use bing instead, you will be suprised that bing can follow rules better than BARD.....but still it should be more fair with GPT vs. Bard. but ill tell ya, its my newest favorite hobby.

native plover
torn lake
#

Will ChatGPT ever introduce "pinned conversations"?

#

Or some kind of search.

next cove
#

Is it down?

lofty kiln
next cove
#

I have the Plus subscription so I thought I would get the priority to use it when busy since it was promised during payment. Sooooo….

#

What do you think? @lofty kiln

nova kestrel
#

Same issue as @next cove here

#

I have ChatGPT Plus, I got the link sent to my email, but it wont even work and gives me the "Full Capacity" page...

lofty kiln
next cove
#

LOL y u mad tho

nova kestrel
#

I just got here and this is my first impression damn

next cove
lofty kiln
#

i dont know what you're talking about

next cove
#

LMFAO

lofty kiln
#

idk what is going on

#

cntrl f 'never reply to me again' and i have said this to most people
i dont know who you are

next cove
#

I thought you read the prompt after ‘Oops!’ Hmm

lofty kiln
#

...well yes it';s obviously down

#

it says so right there

next cove
#

No it does not. It says it’s busy but not down. It wasn’t like this the last time it was down. (That was when GPT-4 got the limited release)

lofty kiln
#

the difference being

#

ah idk this server kills me soul

next cove
#

But thanks for the effort tho. Have a nice day. Lol

lofty kiln
#

who cares if a language extrapolating service is down or if its busy

#

im so sad

#

this all makes me so miserable

next cove
#

Go leave or stop hanging out here. Not my fault that you’re sad. Stop dumping your emotions to the people here. Go touch grass. Go to the museums. Go get a therapist.

little bison
#

Hello I paid for my service on GPT and now it will not let me log into it and tell me why

spring schooner
#

Did they just update this?

dusty gate
#

We ran into an issue while signing you in,
please take a break and try again soon. WHY ???? I PAY !!!
SomeOne help ?

quiet wren
#

I’m getting this too.

soft crow
#

is anyone figure out how to prevent ai detection for gpt3.5 or gpt4? i did not find any solution, i tried to fix ", and" and other grammer things but not fixed. do you have any idea or solution?

rugged wing
#

it's against the Terms of Service to claim the raw output as your own, anyway

versed willow
#

What is the billing of 5$ when I setup a paid account? I only have to paid it once, right?

rugged wing
#

where are you being charged that?

versed willow
cinder basin
#

you also lost the choice of gpt models?
in main page

rugged wing
#

and where is the 5$ bit?

dreamy plank
#

hey all

versed willow
rugged wing
#

thats mine rn

#

so i owe 69 cents

#

and at my billing date I'll pay whatever I've used up till then

#

you get some free credits when you start, maybe that's what you're seeing

versed willow
#

I've used almost nothing for now

rugged wing
#

so rn, you own zip, nuffin, zero, nada

versed willow
rugged wing
#

they do run out

versed willow
#

Since November or October 2022, I'm pretty sure they ran out a while ago

rugged wing
#

yea, they are long gone, so what your screen is telling you is, you have set a liimt of 5 bucks and you've used nothing so far

versed willow
versed willow
rugged wing
versed willow
#

Oh ok ty, I thought this was because you need to pay 5$ on first setup

rugged wing
#

naaa

versed willow
#

I sent a message

frozen cradle
#

For anyone that has access to GPT4. Do you also have access to their 32K token? If yes, what is that model called? I have access to GPT-4 but for whatever reason, the larger token model won’t load. Is there another waiting is for the larger token of GPT4?

arctic tundra
#

What happened to MuseNet? Will it be back?

pseudo dune
#

did they change the font?

grand wren
#

Is there any chance openai Will ever accept either PayPal or crypto as a payment method for api/gpt plus?

rugged wing
rugged wing
#

not noticed myself

elder falcon
#

like jukebox

pseudo dune
rugged wing
#

I can't see any diff

arctic tundra
rugged wing
#

yeah not a huge fan of the new font

mystic nacelle
#

I thought that was just me

pseudo dune
#

so glad ppl agree i hope we can get them to reverse it

#

maybe an extension can fix this idek

dawn nimbus
#

how do I play with chatGPT where it can read images
I saw that it was only through the API and not through the site
does this discord have the API bot available?

rigid musk
pseudo dune
sullen hinge
#

GPT-4 API waitlist for ChatGPT-Plus subscribers will be process this year?

tough citrus
#

i tried making that image/message bot that i saw on the developer video. have they not released that yet?

plush zealot
#

Why more applications are not being released using GPT-4

#

I see some spammy ones online but not many from legit companies

crude musk
#

this always happens after using this for 20 minutes or so its so annoying please fix this.

granite palm
#

Is anyone else having this issue with infinite loading?

shell pilot
#

what is the name of the new gpt font

#

what is also the max amount of times you can ask for a new response

ripe breach
#

Can you use ChatGPT plugins instantly if you purchase ChaptGPT+ plus?

bleak parcel
#

Yes

ripe breach
#

Thank you

bleak parcel
#

Wait I don’t think I am right might be wrong sorry

ripe breach
#

O

hoary pilot
#

How do I access chatGTP?

charred parcel
sullen hinge
celest solstice
charred parcel
celest solstice
charred parcel
celest solstice
#

Just sub last night and try to explore

elfin cedar
#

Why is ChatGPT so bad at math?

#

by this, I am referring to word problems

tidal cairn
#

Noob question, the difference between chatGbp and chatgpt 4 is that it more advanced and $20/month, correct?

charred parcel
tidal cairn
#

Thank you

#

And GPT 4 is now awaiting list

charred parcel
tidal cairn
#

👍

proper burrow
charred parcel
unkempt obsidian
#

hi guys i try to develop a finale project called depp learnning based intrusion detection system in mobile ad hoc networks (reinforcement learning to be clear)
this ids contain four moudule:
collectb data
normalize data
detect intrusion (here we applique the reinforcemment learnning)
generate alert

for now let start with the detect intrusion module because its hard thing
first we need to define the RL agent (envirement state action reward)
then we implemente Q-learnning algorithm to train the RLagent
once we finich that wee give it a dataset normailized divized on 2 paart train and test
in the train mybe the agent detect intrusion or my be get mistakes
in the test he didnot mistakes aafter we fiinish that
we can go throught the other modules and get the simulation of the mobile ad hoc network

now i tired to define the agent in pythonn
ipropose this
define agent : environment:<< traffic network>> - action <<alert or ignore>> reward <<1 pour intrusion detected <>-1 pour non-intrusion <> -0.1 pour non- intrusion detected as intrusion >>et state -?
he states :
Network traffic statistics
System logs
User behavior patterns:
System resource usage:
Anomaly scores
is that correct ??? how it write in python ????

and how implemont Q-learnning algorithm ????? and how train the RLagent ?????????

i ffound an algorithm and i tired to convert itn on python ??????🥹

sullen hinge
#

OpenAI is charging per API request-response token size. So why not let me actually use it and pay for it? Who cares if you announce lower prices when I still cannot use any of it? I cannot even do 10% of research due to Plus limit.

plucky urchin
#

When do I get plugins....I already joined waitlist two weeks back

#

Still waiting.....

sinful mirage
sullen hinge
sinful mirage
#

Some individual here also got access to it. I think they may be prioritizing people who wrote a good reason to try it but that's just my guess.

sullen hinge
#

I mean large orgs that make some deal with OpenAI, at a corp level, not just Microsoft.

#

I'll happily pay 10x more to just double my CharGPT-4 limit.

hard herald
#

Does anyone have a link to the OpenAI form which stops them from collecting your prompt input data?

floral scarab
#

I think that's one of the things you just have to accept when using their service 🙂
Alternatively move to Italy.

sullen hinge
hard herald
sullen hinge
#

I'm not aware of that. Please message me when you'll find that.

snow ether
#

anyone know how create a ChatGPT Bot for Discord?

sinful mirage
void umbra
#

hello guys , anyone using the web chatGPT ? any one using the web plugin/extension released by openAI that can get chatGPT online ?

obtuse needle
#

did they change the font

#

(its bad because too bold)

void umbra
#

i have been using the Google Chrome extension "web chatGPT " but some people say when use this extension chatGPT is less intelligent, so IM thinking of using the one released by openAI and i have been in the waiting list for plugins for a longtime, when CAN i use the web plugin ?

obtuse needle
void umbra
#

it CAN get your chatGPT connect to Internet

obtuse needle
#

me using GPT4 with Bing: 😎

void umbra
#

yeah ? me too , do you think new Bing is as good as chatGPT ?, i tested , i feel chatGPT is still better even without the web access , than Bing . I wonder ,how CAN i tell my Bing is using GPT 4 ? Bing doesn't tell me itself lol

storm portal
opal obsidian
#

Is the site broken?

obtuse needle
storm portal
tulip shoal
#

mine is fine lmao

#

the font and stuff

obtuse needle
storm portal
#

on mobile it's fine, it's only when you go to desktop browser that it looks bad

obtuse needle
#

yes dark reader is a browser extension

storm portal
#

maybe i can use my extension to specify a specific css font

#

i'm using dark mode extension

obtuse needle
#

you can find it at github /darkreader/

#

its got extensions for Chrome Web Store Firefox Add-ons Apple App Store Edge Addons Thunderbird

storm portal
#

did you add custom css to your dark mode

obtuse needle
#

no

stable veldt
#

Css as dark mode

frozen lantern
#

how can I check how far I am on the gpt 4 waitlist

forest perch
#

same question

charred parcel
digital moss
#

Is anyone aware of organisational use cases of LLM or generative AI?

small dew
bold dove
#

Hello, if i didn't use free trail usage for OpenAi Api will it expire without using?
Like i created the account but i didn't use it, does it has time limit refer to when the account created or started using api's

kind moth
#

Question. What are the risks of giving ChatGPT personal information i.e. medical information in order to get health advice etc....??

charred parcel
charred parcel
bold dove
kind moth
bold dove
#

but the api's doesn't work like invaild

charred parcel
charred parcel
charred parcel
charred parcel
bold dove
#

i got notification says 5$ before i even use it

#

so that will be in wallet or for start using api have to pay that i just didn't understand this

charred parcel
grand wren
#

Is there any chance openai Will ever accept either PayPal or crypto as a payment method for api/gpt plus?

grand wren
grand wren
charred parcel
grand wren
charred parcel
bold dove
chilly valley
#

How to use this?

charred parcel
chilly valley
#

Chat gpt

charred parcel
chilly valley
#

Or openAI

split willow
#

Hey guys, I hope you all are doing well, can anyone of you tell me what are the API’s being used in Chatgpt?

charred parcel
split willow
charred parcel
flint mantle
#

Midjourney?

grand wren
rugged wing
#

Good morning, I try to make the plus payment with apple pay but, after human verification, nothing happens.

charred parcel
iron tundra
#

Hello guys, is there a way to let gpt-4 read my local python project and ask questions about it?

charred parcel
iron tundra
charred parcel
trim knoll
#

How do we solve the stability issues we are facing with open AI api for chat gpt ?

#

Did anyone try the azure openai API are they any better ?

charred parcel
trim knoll
#

Error communicating with OpenAI: ('Connection aborted.', ConnectionResetError(104, 'Connection reset by peer'))

rugged wing
#

What's the formula for speed

trim knoll
#

we are getting these errors while users are trying to chat in our production systems

trim knoll
charred parcel
untold solar
#

why can't i 😢

topaz totem
#

Good morning! Please anybody can tell me how can I access the option to browse the Web directly from chat.openAI.com? I see on youtube . And I have Plus! Thank you

charred parcel
topaz totem
#

Thank you so so much! I applied but I didn't get no answer probably will take a while.

golden socket
#

maybe i can try the Bing AI since i have Microsoft Account

molten coral
#

How would you get the Dragonslayer sword if you didn't visit the blacksmith who forged it beforehand?

rugged wing
#

Good morning, I try to make the plus payment with apple pay but, after human verification, nothing happens.

charred parcel
open bramble
#

Hi, When will I be able to create an OpenAI account? I have been trying for days?

wooden marlin
#

404
This page could not be found.

any idea what is happening ?

charred parcel
charred parcel
wooden marlin
#

just trying to log in with existing account

charred parcel
open bramble
charred parcel
open bramble
charred parcel
open bramble
charred parcel
open bramble
wooden marlin
charred parcel
open bramble
charred parcel
charred parcel
open bramble
#

Thanks again.

charred parcel
open bramble
wispy olive
#

where is the ai i can talk to?

charred parcel
wispy olive
#

i have to put in my phone number, i dont have one

charred parcel
charred parcel
open bramble
wispy olive
#

why would i have to put in a phoe number tho

charred parcel
charred parcel
ionic dragon
#

HI. Is there any news regarding the issue between OpenAI and the Italian Privacy Garante?

ionic dragon
charred parcel
lavish rose
#

/question hi

charred parcel
lavish rose
#

how ask at there

charred parcel
lavish rose
#

OK

rugged wing
#

Draw modern smart home interior

charred parcel
rugged wing
#

Need help! I am trying to register an account using my private number and I keep getting the message: It looks like this is a premium phone number. Please provide a valid, non-premium phone number to continue.

charred parcel
rugged wing
#

Yes, this is my phone number from Poland

charred parcel
rugged wing
#

Yup, +48

charred parcel
rugged wing
#

yes

charred parcel
#

do you have another phone number you can try?

rugged wing
#

Unfortunately, I only have one.

charred parcel
rugged wing
#

I didn't find any information on the internet that someone had a message like me

#

do you think it would be possible to talk GPT into something similar to a friendship?

ancient comet
#

My subscription to Plus was cancelled. No matter which credit card I use to try and re-sign up, it says "Credit Card Declined."

Has anyone else gotten this? I'm not sure what's going on....but all of my credit cards wouldn't decline....

ancient comet
#

US

charred parcel
# ancient comet US

when you say "re sign up" do you mean resubscribe? are you using the same OpenAI ChatGPT account?

ancient comet
#

That's correct.

charred parcel
ancient comet
#

Failed to renew

#

I try Apply Pay as well as different credit cards and it just keeps saying 'Credit Card Declined.' And after receiving this message, I bought something else to see if the charge would go through...and it did...

charred parcel
ancient comet
#

There's nothing wrong with my credit card accounts. It's openai

cyan ridge
#

is gpt website down?

charred parcel
half sundial
#

how to use chatgpt bot

charred parcel
half sundial
#

in discord

charred parcel
half sundial
#

OK,ths

serene stratus
#

stand by

copper cobalt
#

Hey y'all - is there a cost comparison between using the "chat" interface vs. the APIs on a monthly basis? Apologies if this has been discussed, just couldn't find something specific and I was not sure if I should send this whole channel to chatGPT to summarize 😉

charred parcel
#

the API is pay as you go and Plus is $20 USD a month. If you're looking to build an app then the API would suit you, if your looking for something to give you answers and complete tasks then ChatGPT is probably what you want

copper cobalt
#

True

Overall, I am thinking "hey, if I have to pay $20 to do just the chat, would it be worth to just push that money to the APIs? And, how much worth would I get?"

I am an enthusiast and am looking to test out some stuff to figure out what works and what may not be that useful, for me.

charred parcel
sturdy mauve
#

Why can I not login? I have the subscription and your scam site wont let me in

boreal goblet
#

<@&1007805617555124274> Wondering if filling out the do-not-track form (Item 8 on this page: https://help.openai.com/en/articles/6950777-what-is-chatgpt-plus) for ChatGPT and Dall-E automatically ensures your data is not tracked. Have not received a confirmation email (other than the Google Forms auto response).
Please clarify.

#

Curious if you ever received confirmation? Wondering the same thing for my account

minor geyser
#

Can someone please tell which bot can do this

astral quest
#

I can't login into my account, did anything happen?

rugged wing
#

its down for me also

astral quest
#

works now

opaque sundial
#

i can't too