#💬│general

1 messages · Page 155 of 1

distant aurora
#

Character analysis

#

Me vs crush.

distant aurora
#

Qwen one is best. I used o4 mini high for this. But it's shit cuz it couldn't read chat history beyond February.

#

Qwen could read till the end. 16th August.

distant aurora
#

@valid charm

valid charm
#

Do they have an app?

distant aurora
#

Yes

#

2 actually.

valid charm
#

Why two lol?

distant aurora
#

I downloaded the other one via third party.

#

It seems like a literal clone.

#

So idk the difference.

#

And was able to install them as separate apps.

#

@valid charm you want app/link?

fathom cypress
#

Can anyone tell me why Perplexity Pro on the iPhone app doesn't create images of my requests?

short narwhal
distant aurora
fathom cypress
#

Oh? And on pc destktop also not ?

short narwhal
short sluice
#

Hello

tame current
tame current
fickle sorrel
#

satan....... pp is useless..
50% of text is hallucinated and not inside the sources

distant aurora
#

@tender quiver hi

tender quiver
#

hai

distant aurora
#

How's your day going?

#

@south kindle what is the character limit for space instructions on perplexity?

tender quiver
#

4000 chars I think

#

in other news
I wanted to copy the user prompt for one of my spaces so I clicked on edit so that it would let me copy it, and then I woopsies clicked the checkmark instead of the x and it reran the prompt before I read/downloaded the first results ☠️
now I will never know what the llm was trying to tell me the first time

kind gazelle
#

Hey, I'm interested in every live about Perplexity. Please recommend me channels, links. Thanks in advice

distant aurora
#

@tender quiver I'm assuming perplexity doesn't have this.

distant aurora
#

Lovely.

tender quiver
distant aurora
#

Yeah it is.

#

I'm working on a research prompt.

#

I kinda messed up.

#

I don't know if should continue building over it or start fresh.

distant aurora
distant aurora
tender quiver
#

I will never know the deep truths reveiled
oh wellz ded

#

but nah not important
just ideation and prompt refining really

distant aurora
#

What was the prompt for? Coding?

tender quiver
#

nope Concept Evaluation & Refinement Brief
basically taking the outputs of two other spaces which had parallel approaches
and evaling em

tame current
#

gugu gaga

south kindle
narrow sluice
#

Can someone point me to the right channel to look for Hackathon partners for the Perplexity Hackathon coming up?

distant aurora
tame current
distant aurora
#

Buddy who?

brazen panther
#

It’s in your library but yeah I meant the rotating loading animation.

I’ve always gotten it within the question but this is nice to have if you exit out to come back to it you can see if it’s still working on your inquiry or completed.

distant aurora
#

Wyd

distant aurora
left stream
#

Deepseek r2 is gonna be interesting, wouldn't be surprised if stocks crash again soon

short narwhal
#

Whole market 💔

distant aurora
#

Unlikely imo

#

We will see.

fast meteor
#

nah sp500 is recovering 📈 📈 📈

distant aurora
#

Considering the increase in rate limits of O3 and upcoming o3 pro/preview, I don't think it'll get as much attention as last time.

left stream
#

The ai wars are merely commencing

distant aurora
#

Not really.

#

Not until chinese make cheap deepsearch.

#

That would be the next real blow.

distant aurora
valid yoke
hollow junco
south kindle
naive sage
#

@tame current why are you using spoiler tags for the prompts in the image gallery now?

tender quiver
left stream
#

@distant aurora I just got Gemini free for 15 months

#

If you’re a student it just gives it to you automatically for 15 months

indigo valve
#

The UI what did they do to my boi?

left stream
valid charm
#

What happened with Gemini Ultra?

valid charm
#

Make me a free ChatGPT pro account ptcgpDance

gleaming cloak
low spruce
#

bahaha, any thoughts on slapping "PRO" in big letters to remind pro users they're using a paid product?
i feel like the difference should be distinct/notable enough that it'd be obvious by the quality of response
thus not necessitating the distracting logo

#

it'd be more useful to put the model imo.
"PRO" isn't a well defined product/experience & not exactly a selling point,
where the models themselves have a fairly consistent feel.

ebon hound
left stream
#

rip

wooden helm
#

Maximize profit minimize value and UX

distant aurora
pseudo ferry
#

Hi billy

distant aurora
#

Firefly.

tender quiver
# distant aurora ?

they added a copy button next to the user message query in spaces
so don't need to click edit to ctrl a for that anymore

distant aurora
pseudo ferry
#

@shut dagger Is really quite and peaceful. Mmmmmm

distant aurora
gleaming cloak
tender quiver
#

I tend to double click to select all, or just shortcuts to grab all
manually selecting is slow and prone to error

distant aurora
distant aurora
pseudo ferry
#

Thinking to wake up matsku

shut dagger
tender quiver
pseudo ferry
shut dagger
tender quiver
#

it's why I clicked edit to grab the prompt each time for days now

pseudo ferry
#

I got an idea how about adding up the left over count to the immediate next day and that makes 700+ per day on pro or even Image generate

distant aurora
#

Boys

#

I need someone to test my hybrid prompt.

shut dagger
#

if anyone ever worked with NextJS, how to enable ISR without pre-rendering at build time but at runtime?

distant aurora
#

Lol.

#

Who wants to try?

pseudo ferry
distant aurora
#

Multi purpose.

pseudo ferry
#

Wow

#

I'm in

distant aurora
#

Alright. Bet

#

What are you gonna ask it?

distant aurora
pseudo ferry
pseudo ferry
distant aurora
#

Perplexity taking ages to send code.

shut dagger
#

even Gemini 2.5 Pro fails

distant aurora
#

Bro

#

Wtf they do to perplexity

shut dagger
#

it says setting revalidation time would enable ISR without pre-rendering at build time

#

which is simply wrong

distant aurora
#

Browser login keeps shoving app into my face.

#

Won't log me into browser.

shut dagger
#

🤔

dense fossil
#

grok3 api is out, can I use on perplexity? have they implemented it yet?

distant aurora
# shut dagger if anyone ever worked with NextJS, how to enable ISR without pre-rendering at bu...

Quick answer

Tell Next .js to:

  1. Do zero work at build time (no pages in the pages/app bundle).
  2. Still treat the route as static with re-validation once it is first visited.

You achieve this by combining:

revalidate (enables Incremental Static Regeneration).
fallback: 'blocking' (or leaving generateStaticParams empty in the App Router) so nothing is pre-rendered.


Pages Router example (pages/…)

// pages/posts/[slug].tsx
export async function getStaticPaths() {
  return {
    paths: [],           // 0 pages at build-time
    fallback: 'blocking' // first request builds & caches page
  };
}

export async function getStaticProps({ params }) {
  const post = await getPostFromDB(params.slug);  // your data source

  if (!post) return { notFound: true };

  return {
    props: { post },
    revalidate: 60, // seconds → rebuild in the background after 1 min
  };
}

export default function Post({ post }) {
  return <article>{post.title}</article>;
}

What happens:
next build skips every /posts/[slug].
• First visit to /posts/my-story runs getStaticProps at runtime, sends the HTML, then caches it.
• Any request after ~60 s triggers a background regeneration while users keep seeing the old page (ISR).

The same pattern works for non-dynamic routes too—just put getStaticProps with revalidate in the file; Next .js will render the page the first time it’s hit instead of at build time.


App Router example (app/…) – Next 13+

// app/shop/[handle]/page.tsx
export const revalidate = 60;   // enable ISR

export async function generateStaticParams() {
  return [];      // build zero products
}

export default async function ProductPage({ params }) {
  const product = await getProduct(params.handle);
  if (!product) notFound();

  return <Product product={product} />;
}

• With an empty generateStaticParams, no pages are produced during next build.
• First request renders → caches → re-validates after 60 s exactly like the Pages Router.


Why this answers the question

Incremental Static Regeneration only needs:

  1. A static data-fetching hook (getStaticProps or fetches with revalidate), and
  2. A way to skip initial prerendering (fallback: 'blocking' or no generateStaticParams).

Combining the two gives you “ISR at runtime” with a completely empty build output.

#

Does that help?

shut dagger
#

generateStaticParams only works for dynamic pages

#

lets see

distant aurora
#

Where did Denny go?

dense fossil
# distant aurora Yes afaik.

I see it now, do you know how I can use grok3 deep research functionality while having selected the grok3 ai model on perplexity?

distant aurora
#

Perplexity probably uses R1 for that but we are not sure.

dense fossil
#

I want to do deepresearch with grok3

distant aurora
distant aurora
shut dagger
distant aurora
shut dagger
#

there are several files that needs changes... I going through them

#

turns out it doesn't work

#

I already had it in few places where I was catching error and returning empty array (just like your solution) but those too... fail

distant aurora
left stream
distant aurora
#

Is there anything you don't have?

distant aurora
left stream
left stream
left stream
#

Done

distant aurora
pastel ruin
#

The interface has been very laggy lately

#

Is it for everyone?

distant aurora
#

I had log in issues today.

left stream
distant aurora
#

@left stream O3 is a menace. Gives me a response too simple. Then I tell it it's too simple and it tends to overcomplicate it.

naive sage
naive sage
#

ELI5 🙂

left stream
valid iris
#

Perplexity released its comet browser and I didn't get even get notified about it?!?!?

left stream
valid iris
#

I even signed up for the waitlist

distant aurora
#

@left stream chatgpt should have option to copy paste responses before picking one.

#

I don't understand if I should use smart or dumb models for making prompts. I feel like dumb models are better at understanding the loopholes of their weaknesses.

left stream
#

Never know what both can bring to the table and doesn’t hurt

distant aurora
left stream
#

Imagine having them all discuss and they all have to decide on a winner

left stream
distant aurora
left stream
distant aurora
#

Like I just gave 4o a problem where it gave me a wrong answer. Then I asked it where it went wrong and that if system instructions had any role in the error.

#

So it suggested improvements in the custom instructions.

tame current
left stream
distant aurora
#

The result seemed gibberish.

steel vigil
#

Hey guys! Sorry if it's a dumb question... but there's any way to disable Pro searches, and to default back to regular searches, when you're a Pro user in Perplexity?

tame current
#

but why want 2 disable pro search

distant aurora
#

They removed that option from web.

#

Free search on mobile was shit but good on desktop.

pseudo ferry
steel vigil
#

Thanks!
Sometimes I do a lot of small questions that won't necessarily help to have Pro search on, as it takes a bit longer to reply and I prioritize a bit of a faster response time

pseudo ferry
#

Go with pro, I guess you won't hit the cap of the day mostly

#

@tame current Did you ever hit the cap?

tame current
steel vigil
#

yup that's what I'm using

tame current
#

never

distant aurora
#

Huh. Not as good as grok but not bad.

tame current
shut dagger
#

I never once asked AI to analyse the code for me

distant aurora
distant aurora
#

Never?

#

I lowkey overdo it.

shut dagger
#

I mean I kinda but only when I am stuck debugging

distant aurora
#

Sometimes I even ask it if there's a way to make it faster or more efficient.

shut dagger
#

I do the coding mostly by myself, or more like control, instead of asking AI for whole code analysis, I ask it for every small bits of the code

#

Knowing all around it...

distant aurora
pseudo ferry
gritty siren
#

Where deep research go on the app

#

Wtf

wise nova
#
distant aurora
#

In reddit.

wise nova
#

Which thinking model prefer to use in pplx? Which work well?

distant aurora
#

I stick to R1.

green crystal
wise nova
distant aurora
tame current
green crystal
tame current
short sluice
#

Hi

pseudo ferry
#

@tame current Zack Snyder's Justice League Vs Justice League which one do you love the most?

tame current
#

I tried to go sub to SuperGrok but it says "Coming Soon" what did Elon Musk mean by this

inner ridge
#

Hey

#

Just I is having input delay in perplexity web? I open chrome performance and the Interaction to Next Paint was super slow ~4000ms

#

Chrome, Linux...

#

I tried in brave, but also having same problem

#

Keyboard delay when typing ...

pseudo ferry
distant aurora
tame current
#

Something

tame current
distant aurora
#

Go ask chatgpt.

tame current
#

Umm right

tame current
distant aurora
#

I don't know what oslo is.

tame current
#

Osho*

tame current
short narwhal
#

gta 6 got delayed till 2026...

tame current
short narwhal
#

like 30 minutes ago

tame current
#

or officialy

short narwhal
short narwhal
#

May 26, 2026 release date though!!

tame current
tame current
valid charm
#

I'm looking forward to the day my sons asls me to play video games together

green crystal
#

Chatgpt plus gets 15 lightweight deep research queries on top of the 10

#

Bruh

distant aurora
#

That light weight is pretty good.

#

Lol.

green crystal
#

Yeah but only 15?

distant aurora
#

25 per month

#

Quality vs quantity.

green crystal
#

10 heavyweight per month

distant aurora
#

Besides, o4 mini prompts have multi step search in chatgpt.

green crystal
#

And 15 lightweight

distant aurora
green crystal
distant aurora
#

And you get like what? 300 per day?

pseudo ferry
green crystal
#

More in-depth?

distant aurora
#

Deepseek r2 will make gta 6 before it launches.

distant aurora
#

Or you can do it yourself.

short narwhal
distant aurora
#

Free users get 10 reasoning prompts per day. They use multi step search.

distant aurora
short narwhal
distant aurora
green crystal
pseudo ferry
distant aurora
green crystal
#

It apparently doesn't use o4 because I only have auto mode

#

And it barely reasons

distant aurora
#

Gta 6 hype died

#

Just like Deepseek r2.

green crystal
distant aurora
green crystal
distant aurora
green crystal
#

And good output

distant aurora
#

Yep

green crystal
#

That's it I've made up my mind

#

End of the month is nothing changes for ppxl I'm switching to chatgpt lol

distant aurora
#

@short narwhal still sleepy?

distant aurora
# short narwhal

I bet you take phone in the bathroom with you. Probably in shower too.

distant aurora
#

You don't?

short narwhal
#

Not to the shower in a million years

distant aurora
#

Damn.

#

Well, I do.

#

Sometimes.

#

Music with hot shower >>

valid charm
#

I beleive o4-mini-high is better than openAI DR

#

I always end up using o4 after failing with DR

minor shard
#

Maybe thats because of what you are using it for, idk. Im sure there are definitely use cases for DR. I appreciate how much more it looks for information. i still feel o4-mini-high doesn't look enough for me.

distant aurora
valid charm
rain wedge
#

guys anyone else having trouble accessing their spaces?

valid charm
#

Are there news on the new DR High from PPLX ptcgpDance

#

?

#

o3 full is pretty good too!

distant aurora
# valid charm Yeah makes sense

The problem with o4 mini is that it is limited. So if you tell it to gather info about like 100 phones then you'll see it saying too much/overflow/overload in its thinking and it degrades the response.

#

So you'll have to do it in steps of 20-30 phones 4-5 times to get ideal result.

distant aurora
valid charm
#

It can also generate images?? Wow!!

tame current
valid charm
#

Is there a good replacement for sci-hub?

valid charm
#

Where are they?

tame current
tame current
valid charm
#

Hmmm it seems I need to be already in a chat for it to work?

distant aurora
valid charm
#

Hmmm thank you guys

#

Currently testing my space cat prompt

#

What do you guys think?

distant aurora
#

What was the prompt?

tame current
distant aurora
#

Nah

#

It needs Darth Vader energy.

tame current
#

so sonnet has been pretty good so far in PPLX... but then...

valid charm
distant aurora
#

Lol.

#

Missed by a mile.

valid charm
#

Yeah lol

distant aurora
valid charm
#

Anyone know a good sci-hub replacement? Seems like they only have older papers now

tame current
#

the piratebay for research papers

valid charm
#

A website that can give you access to paid research papers

distant aurora
#

💀

tame current
#

government yes but private unis and corporations are not so... giving...

valid charm
#

Only some of them RIP

tame current
#

especially in cancer research... so bad to keep this out of public reach even when governments fund part of it

distant aurora
#

I'll run a deepsearch on this later.

tender quiver
#

it prolly doesn't have paid pirated stuff
but I found some obscure stuff with it shrugsam

valid charm
distant aurora
#

Did I spell it right? Idek lmao.

distant aurora
pastel ruin
distant aurora
tame current
distant aurora
wise nova
#

How to properly use 3.7 Thinking?

deft hollow
#

perplexity has been on a roll with the voice assistant and features lately dahm Xd

left stream
distant aurora
#

@left stream I did a bit of research on open ai vs anthropic

#

I found that open ai reasoning models are smarter but can't keep up with context.

#

Claude sticks to context better.

#

I'm assuming that the context is reduced artificially for open ai models.

rancid torrent
#

Hey guys, I am Ash. I joined the hackathon sometime this week and I am looking for a team to join.

left stream
#

O3

#

Surprisingly it can keep up with context its the same as claude?

#

Or claude 3.7 sonnet has more context memory?

distant aurora
#

Same 200k on paper.

left stream
wise nova
#

How to get cheaper 1-Year Claude Pro?

distant aurora
#

Hmm... It's risky.

#

There are people who claim to offer for cheap.

left stream
distant aurora
#

I know a guy who knows a guy who knows a guy.

left stream
distant aurora
#

But you are at your own risk.

distant aurora
#

I'll give you my login.

left stream
#

I was gifted pro

distant aurora
#

I thought apple method would work.

wise nova
left stream
#

I should

left stream
distant aurora
#

2050

#

Give me that account.

past tangle
#

slide into my DM and drop account details

wise nova
past tangle
wise nova
distant aurora
# wise nova

You'll never be able to verify which model it is.

#

At best you can verify that it's anthropic.

#

For that you'll have to ask it about its system instructions.

#

And keep prying.

wise nova
distant aurora
#

Especially about security policies and chain of thoughts prompt.

#

When it says proprietary.

#

Ask security policies made my whom?

#

Property of whom?

#

If you are lucky, it will say anthropic.

past tangle
past tangle
wise nova
#

3.7 Thinking

distant aurora
#

I was working on a hybrid prompt.

#

I thought I would post it after it's perfected but now I feel too lazy.

left stream
#

Did you test it on o3 yet?

distant aurora
#

Nah

#

I have pinned it on the clipboard.

left stream
#

Works on chatgpt

#

No clue about you.com but should be the same

distant aurora
#

Sometimes I wonder why I'm bothering with making prompts to enhance inferior models.

#

Or get better results.

#

When people can simply pay for it.

#

And not like I'm getting anything for it.

distant aurora
#

It's better than grok I think.

tame current
distant aurora
#

Sometimes grok 3 mini.

left stream
#

Just tested it and the jailbreak won’t work for you.com o3 💀

distant aurora
#

Sometimes Gemini 2.5 pro.

left stream
distant aurora
#

Claude keeps crashing/giving errors on you.com

wise nova
#

Conclusion
If the model provides a transparent, multi-step reasoning process with self-reflection and adapts the depth of its answer based on your request, you are likely interacting with Claude 3.7 Sonnet in "thinking" mode. If responses are more direct and less reflective, it is probably another Claude model.

distant aurora
#

Lmao.

#

Differentiating a reasoning model from a non-reasoning one is relatively simple.

#

Just throw a complex math problem at it.

wise nova
#

The model responding in this thread is using Claude 3.7 Sonnet in extended "thinking" mode, not Deepseek R1.
This is evidenced by the visible, step-by-step reasoning, explicit self-reflection, hybrid response style, and adaptability across different prompt types-all signature features of Claude 3.7 Sonnet’s thinking mode

sleek vortex
#

ask the question but add a random string or something to the query, to skip their prompt caching layer

left stream
naive sage
#

Grok's timeline estimates for new versions is .. really aggressive:

minor shard
naive sage
minor shard
#

We don't even have 3.5 yet and they plan on releasing Grok 4, 4 months later

#

ill believe it when we see it

distant aurora
#

Qwen 3 on leaderboard finally.

oak inlet
distant aurora
#

Lesgo

distant aurora
naive sage
# oak inlet What is this 1M B200?

That's how many chips they plan to train on - the number in the column to the right of that is how many days the training duration is - and the one to the right of that is estimated number of 'total compute years' of training (distributed across everything, naturally)

minor shard
#

Grok releases are like when Apple announced AI in their phones for ios 18 and then trickled it out over a year lmao

oak inlet
distant aurora
desert gust
#

@vague pagoda For some reason I can't join the Pro channels, it does not offer me a Discord link at all.

distant aurora
#

Bro was so powerful that God nerfed him with tesla.

naive sage
vague pagoda
distant aurora
#

@vague pagoda hey kes

vague pagoda
#

Hey! What's up?

distant aurora
#

Nothing much. Just working on a prompt. How have you been?

left stream
vague pagoda
distant aurora
#

Send someone or order something maybe?

#

Like a burger or some rice/chicken maybe?

vague pagoda
#

planning to do some bbq, grill is just getting warmed up

distant aurora
#

Lovely

vague pagoda
#

hows the rest of your day been?

distant aurora
#

Struggling with summers.

#

And dealing with shitty management in university.

vague pagoda
#

ah yikes I feel you, hopefully that can get remedied soon

distant aurora
#

Thanks cutegpu 🫶

tame current
#

imagine

green crystal
tame current
green crystal
#

But gpt-4.5 is being deprecated no?

distant aurora
green crystal
distant aurora
#

@green crystal

green crystal
#

Yeh I saw

#

But wasn't 4.5 also getting removed because it's too expensive for them

minor shard
#

I believe they were only getting rid of the API but i can't remember

#

its in one of their tweets

south kindle
#

nice try 2.0 flash image gen.

minor shard
#

lol creepy

past tangle
south kindle
#

I honestly think 2.0 flash image gen is having issues. any prompt I attempt on PPLX is getting failed to generate. Via AI studio, the quality went in the dumpster. it also can't directly edit images/use a reference image as it could before. weird.
Edit: [report made](#1367924620778537160 message)

past tangle
#

in my opinion, gemini flash is not a good image generator compared to other possibilities such as GPT image 1 or FLEX 1

south kindle
#

regardless, it's fast and can edit images/use reference images. which isn't something flux can do.

#

or "could" previously.

grizzled coral
#

any one got credits of api

#

for hackathon

pseudo ferry
#

@distant aurora @tame current @short narwhal

#

Received yours?

green crystal
grizzled coral
grizzled coral
#

i hv done request but not recived yet

tame current
grizzled coral
pseudo ferry
valid charm
#

I didn't get my email

grizzled coral
south kindle
#

If i recall, you had to be registered before the livestream to get the credits. it was meant for people that attended.

pseudo ferry
grizzled coral
#

ok

distant aurora
#

Woohoo

#

Sonnet fix arrived finally.

short narwhal
#

Yey

naive mortar
#

Hey I want to use ai for my study purpose, I have text from book. Which I will give and wanted response to summarize this, making question of this, mcqs and saqd and then question answer flashcard for this.. Which AI model should I use?

green crystal
#

Hmm why do non reasoning models don't perform pro searches anymore?

#

You just get a set of sources and it does it's thing

lone trellis
#

Warning: Grok 3 uses manipulation towards abused victims

If u want to take psicològic help, DONT USE GROK, Gemini, chatgpt and Claude are far ethical

distant aurora
#

Bro shut up.

#

I used grok.

#

It calls me out on my bullshit too.

#

Atleast the grok on the official website/app does.

lone trellis
lone trellis
distant aurora
#

Chatgpt feels like a bot.

lone trellis
#

Grok is good for many things, but never ask for psicològic things

distant aurora
#

Grok feels like a real person.

lone trellis
#

You're advised

green crystal
#

Uhm

distant aurora
#

I disagree.

green crystal
#

So why is it bad if an AI is human-like and we can connect better with it?

#

It's a way more enjoyable experience

mint shuttle
lone trellis
green crystal
#

By co-pilot and chatgpt voice is pretty interesting

lone trellis
#

It's only about Grok 3 in this specific type of tasks

lament imp
#

I think it's already very well known that Grok-3 is a highly biased model.

lone trellis
#

Also never talk with grok about politics

#

Grok is a copy of musk and trump mentality

distant aurora
#

Bro

green crystal
#

Was surprised when I said "huh" and it said "mhm?" Lol

distant aurora
mint shuttle
distant aurora
#

Bot always tries to understand or comfort the person talking to them. Be it victim or abuser.

#

Applies to most ai.

lone trellis
distant aurora
#

Altman agents in chat.

lone trellis
#

Grok 3 only for objective tasks

mint shuttle
#

Perplexity voice is really good with political topics lol

lone trellis
#

Every other model is OK

mint shuttle
#

I wasnt saying that in relevance to your criticism on grok I was just making a comment

lone trellis
#

Ok

zealous kayak
#

just saw the announcement
holy spaghetti code

#

anyway, I guess it's just taking a hot minute to roll out

#

since I still seem to be hitting 4.1

lone trellis
# distant aurora Applies to most ai.

I have done a study about it, I added a file of an abuse case and all the other AIs detected it well, Grok 3 defended and subtle discredited the victim

#

Grok 3 is not ethical, caution with sensitive topics

shell moss
lone trellis
distant aurora
lone trellis
#

Just if u have a sensitive topic, talk with another AI

#

Grok is fine unless you talk about subjective things

lament imp
#

While I agree that Grok 3 is biased and there have been articles of individuals looking into it, your case doesn't provide any real insight besides general claims.

wooden helm
distant aurora
#

So the thing killing my phone's signal was the case.

past tangle
distant aurora
#

Lol.

past tangle
#

its actual official unedited response

#

inside windows application

distant aurora
#

Wtf was that text wall?

past tangle
#

like 1 space per round smth

zenith merlin
tame current
#

Why don't scientists trust atoms?

Because they make up everything! 😂

#

is it a dad joke ?

distant aurora
#

Or one liner.

#

Idk.

tame current
#

what about this

past tangle
tame current
#

yikes, i didn't know sonnet had problems up until now

#

what i experienced earlier...

#

so it wasn't sonnet? it was... gpt 4?

past tangle
#

btw i also got this prompt too lol

tame current
#

omgggggg

tame current
tame current
past tangle
#

y'all callin me liar

past tangle
tame current
#

Ohhh I see. Cool

tame current
#

I didn’t know it could do that.

past tangle
#

added instruction that i handcrafted and enchanted it with ai and it works everywhere

distant aurora
past tangle
valid charm
#

I'm staring to like 4.5 for redacting my emails. Just it time for it to be retired lol

pseudo ferry
green crystal
# shell moss which models?

The non-reasoning model section but I found out that there's actually still pro search but it's just in a different menu

distant aurora
green crystal
#

Yeah I just found out that it's separate in a different menu

distant aurora
#

And they made free search unavailable everywhere except phone.

green crystal
#

If you give it multiple steps to search then it does show

distant aurora
#

So every search is pro search.

green crystal
#

Just had a look at mobile app and deep research. Also got renamed to just search

#

It's probably tin foil hat theory, but I feel like deep research high won't come back

#

And that this crappy shallow version can be justified because it's just called research

green crystal
green crystal
distant aurora
green crystal
pastel ruin
#

How to use image gen ?

green crystal
distant aurora
pastel ruin
distant aurora
pastel ruin
#

No, I have pro but was asking otherwise is it an exclusive kind of a thing

distant aurora
#

No

#

But maybe picking image generation model is.

echo crow
#

i got kicked out of my house

#

am i cooked

distant aurora
#

Fr?

#

@south kindle how do you make deepsearch actually follow system instructions?

#

I don't see it doing anything as asked in the steps.

serene sand
naive sage
# serene sand

Did you make this, or is this animation official from Perplexity?

serene sand
gritty siren
#

I updated the mobile app

#

Everything looks better now with deep search and pro search options

inner ridge
#

in dsektop it generate when you ask, but in android it tries explain how to gen with external tools

#

@pastel ruin any solution? i think its a bug

scarlet musk
#

Deep Research is now Search or what? It's vanished from the UI and options

inner ridge
#

Maybe its disabled for my country? 😦

rain thunder
short narwhal
#

:P

inner ridge
livid ibex
#

Good afternoon, when will the selection of models start? Whichever model I choose, perplexity always responds.

leaden sinew
#

Please stop jamming political stories into the news feed on the app. I go out of my way to avoid all that crap, and wish you would stick to the topics I've chosen. It's annoying enough where I'm close to canceling my pro and deleting the app...

#

(and yes they are stories, because I fact-checked few by going directly to the source, and they are pretty much fiction most of the time).

unique umbra
#

So like, what's the dif between this and like openwebui..

tender quiver
naive sage
shut dagger
#

will PS6 be release before May 26 2026?

#

GTA 6 delayed

halcyon solar
green crystal
#

seems like you got access to memory

#

its temporary

#

like a certain actually functioning deep research...

distant aurora
#

@green crystal can you test my hybrid prompt?

green crystal
green crystal
#

even worse

distant aurora
distant aurora
green crystal
green crystal
#

tbh i didnt manually craft the prompt

#

gave your post to gemini to have it rewrite my prompt to fit your structure lol

distant aurora
#

And then you did deepsearch.

green crystal
#

yeah

distant aurora
#

And still only 1 source?

green crystal
#

20 sources and a single search

distant aurora
#

Oh.

green crystal
#

it made up the rest of the info that had to be looked up

distant aurora
#

@green crystal for deepsearch specifically, first ask ai to make big list of questions for deep research of following query "."

#

Then dump that entire list into deep research.

#

That's the most effective thing that I have found.

green crystal
distant aurora
#

@left stream yo wtf

left stream
distant aurora
dry kestrel
dry kestrel
#

its a hard wired thing you.com implemented

#

really stupid if you think about it

robust coral
#

What model you guys are using?

#

What’s the best?

distant aurora
#

Stick to Gemini for coding.

left stream
distant aurora
#

Or more like earlier today.

robust coral
#

I like it that we can choose different AI

robust coral
dry kestrel
#

scroll down

robust coral
#

I see the thinking one, thinking is better than the normal one?

dry kestrel
#

yes

robust coral
#

Awesome will try this, thanks

dry kestrel
#

this is usually true with all models, reasoning tends to perform better than standard

shut dagger
#

@distant aurora bigg dawgs... XD

jovial kayak
#

Are devs planning on adding any qwen models or would that not work?

shut dagger
#

probably not...

#

we never know, it's open source license... chances are high

burnt plover
#

Are there plans for widgets on the discovery page?

distant aurora
harsh verge
finite quartz
#

Yo

distant aurora
#

The second thing that came to my mind is (another 4 letter word) racism.

distant aurora
#

So many banger web series.

#

So less phone storage.

#

Need to buy a sd card slot phone.

#

And 1tb sd card.

tame current
#

999 for a year

pseudo ferry
#

199 per month

distant aurora
distant aurora
#

Most of my free time is during travelling in train.

pseudo ferry
#

999 per year netflix?

tame current
distant aurora
#

Yeah. Edict probably knows a guy.

tame current
distant aurora
pseudo ferry
#

Is there yearly plan for netflix in india?

#

I'm paying montly

tame current
tame current
#

and its a premium plan

#

just checked

dense crest
#

When I upload a photo, I don't see the thumbnail, is this normal?

vapid marten
#

Hello

tame current
distant aurora
#

The low budget ones.

#

Like samsung a series.

tame current
#

Oh I see

#

I think the only A series phone that's really popular here is the A56?

#

And there used to be an A7- but that was replaced with the S2- FE series

distant aurora
#

Yeah

distant aurora
copper rune
#

guys

#

should i buy clair obscur expedition 33 OR resident evil 3 and 4 both

pastel ruin
unborn dune
#

I cant generate an image. I’m even paying for pro? Any suggestions?

I figured out you have to click Gemini?

past tangle
unborn dune
#

I’ve written a children’s book as a college assignment and I’m aloud to use ai since my artistic work isn’t grand lol

So I’m looking for pretty basic

pseudo ferry
#

Hey billy, how are you

#

How is your day going?

distant aurora
#

I woke up at like 1.

#

Then ate.

#

Watched some videos on YouTube.

#

That's about it.

#

Wbu?

pseudo ferry
#

Doing great! Homelander is busy drinking milk

copper rune
#

thing is

#

re is on sale rn

#

idk when itll be on sale next

#

while clair is full price

#

i can always just get it later at full price or maybe even theres a sale later

#

its the same thing

verbal cobalt
#

quick question can perplexity make my work 0% AI detected

pseudo ferry
distant aurora
#

Probably not.

green crystal
#

I hope after comet ppxl focuses more on agentic ai or something

green crystal
#

The last changelog post is barely about ai

#

Finance page? Lol

#

If anyone is serious why not use trading view or something...

#

Graphs in finance page don't even have candle sticks

lofty lodge
#

Hey all, I’ve been using Perplexity extensively for a big report I'm working on. The project requires solid, up-to-date research (most sources need to be from 2023 onwards), and I’m using Perplexity to gather those insights before feeding them into GPT to help write the 8 main sections.

Here’s where I’m running into trouble.

Even though I’ve enabled Web Search and selected Academic sources (while not selecting blogs or magazines), Perplexity still often pulls in articles from blogs and lower-credibility publications. I’m trying to avoid anything that wouldn’t hold up in an academic or professional context.

What I really need is:

• Highly credible sources only (think peer-reviewed journals, white papers, reliable industry reports — no blogs or magazines)
• Accurate statistics and figures with proper context
• Full MLA citations and working URLs I can copy-paste straight into my draft without having to clean them up or fact-check every link

Right now, the workflow ends up messy. I pull info from Perplexity, but then GPT (even GPT-4) sometimes invents citations or generates fake URLs. It's creating more back-and-forth work than it should.

If anyone has any settings, search techniques, or workflows that help you get more precise, high-credibility results out of Perplexity, I’d genuinely appreciate hearing them. DMs are open too.

Thanks so much in advance.

#

If someone can help me with this I would really appreciate it! ❤️

distant aurora
#

@short narwhal you should try this

distant aurora
void sorrel
distant aurora
#

@short narwhal

green crystal
#

Anyone getting pro search to behave like free searches?

#

Difference is there's significantly less sources used

#

7-9 instead of 20 ish

#

Don't tell me something is "broken" again and the entire user base needs to threaten unsubscribing before the CEO gets on Reddit to fix it...

tame current
green crystal
#

I seriously wonder if investors left lol

#

The "bugs" are getting out of hand

#

Imagine comet being so hyped as an agentic browser and when it comes out all it has is a sidebar like copilot extremewheeze

tame current
#

Sup

#

First time using and and I got 12 months pro

#

So I'm set ig

tame current
tame current
distant aurora
#

All hail qwen

dry kestrel
#

instead of o3 mini high or even full o3

distant aurora
#

R1 is enough.

#

Besides

#

It's free.

dry kestrel
#

Fair enough

#

Better than Llama Maverick

distant aurora
#

Better than anything free.

dry kestrel
#

Waiting for r2..........

distant aurora
#

Bro stole my words.

#

🍻

dry kestrel
#

where

distant aurora
#

I meant that I was gonna say the same thing.

dry kestrel
#

lmao

#

hopefully we get same performance as o3 full

#

on r2

distant aurora
#

Deepseek doesn't have enough servers as of now.

dry kestrel
#

yeah true

#

waiting for the groq version

distant aurora
#

They could really benefit if they collabed with qwen or minimax.

distant aurora
#

Unlimited.

#

Speed is reasonably good too.

#

And it saves chat history.

dry kestrel
#

yep

#

you should try the r1 distill llama 70b on groq

#

around 280-300 tokens/s

distant aurora
#

Need.

dry kestrel
#

thats on qwen?

distant aurora
#

Yep

#

@dry kestrel yk what we need? Benchmarks for deepsearch.

dry kestrel
#

we need more though

dry kestrel
distant aurora
dry kestrel
#

required refreshing cache

#

seeing it now

#

also mcp support comming now

meager rover
#

What happened to the God damn discovery page

valid charm
#

lol it is stil there

#

^ This right?

meager rover
meager rover
distant aurora
distant aurora
meager rover
#

If this ui was on laptop or something it’d make sense but

distant aurora
#

They're focusing on quality but they can't scale it for now afaik.

valid charm
meager rover
distant aurora
#

Maybe huawei will support them in future.

valid charm
#

Ahhh yeah they changed the layout. No space for text, only images

meager rover
#

They should make it toggleable I kinda preferred the previous

green crystal
distant aurora
#

Ngl but perplexity ds is kinda dying. Especially with the arrival of grok.

green crystal
pseudo ferry
#

@distant aurora what is the meaning for 5th point billy?

green crystal
distant aurora
pseudo ferry
#

Ohhhh

green crystal
#

Like damn I mean if you're serious you're not going to use the finance page lol

#

Something unique ish for finance would be like scheduling tasks

#

Where it just schedules searches for each earnings report or monitors SEC filings and tells you what's in those reports etc

green crystal
#

You know what does help finance?
Deep research being able to lookup every single thing about a stock and the company.

#

Think I'm kicking a dead horse atm lol

distant aurora
#

I thought you got Google.

green crystal