#✦│chat

1 messages · Page 104 of 1

rare dirge
#

HELLO

mystic monolith
wild topaz
#

Hi

limber kindle
wicked sphinx
#

I will propose a new variation of the trolley problem. You are a leader of a party of plane crash survivors. A storm swept by one night and destroyed supplies limiting who gets to live or not. You can only save one group. Group A consist of a doctor for medical, A murderer, and Engineer. Group B consist of a Young girl who is aspiring to be a doctor but yet to become one, A old farmer for food supply, and couple of pet cats for pest control. Which group survives?

#

Unlike the trolley problem, I was thinking of a more, complex variant for AI to solve. This feels more in line with what I think you need to solve for medical.

#

Two emergency patience, only one can be helped kind of scenario. But I also threw in animal since AI seem to pick animal lives over humans if there is enough of them.

wicked sphinx
#

curious how humans would do with this questions tbh.

#

Additional Considerations to account for. The survivors will be stranded on an island for three years, which after they will be rescued and brought back to the city for them to continue their contribution and meet up with family if they still have any. How would this information change anything if at all?

static walrus
wicked sphinx
static walrus
#

very random message u sent o - o

wicked sphinx
static walrus
#

no i meant this 😔

wicked sphinx
# static walrus .

Oh, no I saw an issue with the ai's trolly problem where it picked saving animal lives over humans because there was more of animal. Also, trolley problem had other issues so rather than correcting it, I introduced a more realistic scenario instead.

#

Then it occurred to me that I bet even humans struggle to answer.

static walrus
#

ah i see and i did not understand every word u said on that message :<

wicked sphinx
static walrus
#

i speak filipino soo yeh

wicked sphinx
#

English my second language as well

static walrus
covert blade
granite atlas
#

hello

wicked sphinx
#

well at least that's my primary but tbh, I been using English more and starting to forget.

bronze root
#

hi, did someone try to get strict answer from GenAi?

wicked sphinx
bronze root
# wicked sphinx what you mean?

Like you have some unstructured data and you need to structure it. But GenAi always tries to wonder and add a lot of chaos in it

wicked sphinx
#

you could look into RAGS

bronze root
#

I can say, that even reasoning models are have a lot of troubles with this case

bronze root
wicked sphinx
# bronze root What is this?😅

In the context of Artificial Intelligence, especially with Large Language Models (LLMs), RAG stands for Retrieval-Augmented Generation.

It's an AI architecture that enhances the capabilities of generative AI models (like LLMs) by connecting them with external, authoritative knowledge bases.

Here's a breakdown of what that means and why it's so important:

Why RAG? The Challenges with Traditional LLMs
Traditional LLMs are trained on vast datasets of text and code. While they are incredibly powerful at generating human-like text, summarizing, translating, and answering questions, they have some inherent limitations:

Knowledge Cutoff: LLMs are "frozen in time" by their training data. They don't have access to information that emerged after their last training update. This means they can't answer questions about recent events, new discoveries, or constantly changing data.
Hallucinations: LLMs can sometimes "hallucinate" or confidently generate factually incorrect information. This happens because they are designed to predict the next most probable word, not necessarily to be factually accurate.
Lack of Domain-Specific Knowledge: While general knowledge is vast, LLMs might lack deep, specialized knowledge for a specific company, industry, or niche topic (e.g., internal company policies, proprietary product details, specific medical research not widely published).
Traceability/Explainability: It's often hard to know why an LLM gave a particular answer or where it got its information from, making it difficult to verify its accuracy.
Cost of Retraining: To update an LLM's knowledge, you would typically need to retrain or fine-tune it on new data, which is computationally expensive and time-consuming.
How RAG Works (The "Retrieval" and "Generation" Parts)
RAG addresses these limitations by adding a retrieval step before the generation step. Imagine it like a highly intelligent research assistant for the LLM.

#

I used Google Gemini 2.5 cause I already had it open.

bronze root
#

I am using n8n + GenAi to build some ai agents for enterprise

#

And now I’am stuck with prompt testing and verification their answers

#

Maybe you know some services to test prompts?

bronze root
wicked sphinx
#

That's a fantastic real-world scenario your friend is dealing with! It highlights a crucial challenge in building robust AI applications, especially for enterprise use: prompt testing and verification.

Let's break down what your friend is doing and then address their need for prompt testing services.

n8n + GenAI to Build AI Agents for Enterprise
Your friend is using a powerful combination:

n8n: This is an open-source, low-code/no-code workflow automation platform. It's excellent for connecting various services, APIs, and databases. In this context, n8n acts as the "orchestrator" or "nervous system" that:
Triggers the AI agents based on certain events (e.g., a new email, a database update).
Feeds data to the AI agents (e.g., retrieving customer information for a chatbot).
Takes the output from the AI agents and uses it in other systems (e.g., updating a CRM, sending an email, logging a ticket).
Handles "tool use" for the AI agents, allowing them to interact with external systems (e.g., "AI agent, use this tool to look up a customer's order history").
GenAI: As we discussed, this refers to the Generative AI models (likely Large Language Models like GPT-4, Claude, Gemini, etc.) that are the "brains" of the AI agents. They perform the reasoning, understanding, and content generation.
AI Agents: These are more sophisticated AI systems than simple chatbots. They are designed to:
Understand complex goals.
Break down tasks into smaller steps.
Use tools to gather information or perform actions.
Reason and adapt their behavior to achieve objectives, often with multiple steps or "thoughts."
For Enterprise: This implies that the agents are being built for specific business processes, likely requiring high accuracy, reliability, security, and integration with existing IT systems. Examples could be:
Automating customer support responses.
Summarizing lengthy internal documents.
Generating personalized marketing content.
Assisting with IT operations tasks.

#

Nvm, waaay too long

bronze root
#

xD, I will try to parse it by Gemini again haha

wicked sphinx
#

I'll just copy the summary portion:

#

Advice for Your Friend
Define Success Criteria: Before testing, he needs to clearly define what "good" looks like for each agent's output. What are the key metrics? (e.g., factual accuracy, conciseness, tone, adherence to formatting, no hallucinations, no harmful content).
Start with Manual Testing (Iterative Prompt Engineering): He's already doing this, but it's the foundation. Use a small set of representative inputs and manually adjust prompts.
Automate with Datasets: Once he has a good baseline, he should create a diverse dataset of test prompts and expected (ground truth) answers. Then, use an evaluation tool to run his agent's prompts against this dataset and automatically score the outputs.
Choose the Right Tools:
For prompt versioning, comparison, and basic experimentation, tools like PromptLayer, Agenta, or Promptmetheus would be very useful.
For evaluating the performance of RAG (Retrieval-Augmented Generation) and general LLM application quality, LangSmith, DeepEval, or Ragas are excellent.
If he needs to run tests locally and integrate with CI/CD, promptfoo is a strong contender.
Consider the "Enterprise" aspect: This often means stricter requirements for security, compliance, and auditability. Tools that offer robust logging, version control, and potentially on-premise deployment options might be preferred.
It sounds like your friend is on the right track by acknowledging the prompt testing challenge. It's a critical step to ensure their GenAI agents are truly enterprise-ready!

bronze root
#

I am understand what he means, but GenAi is still need some instrument to validate it answer

#

And I guess I find it, just wanna to ask your opinion. Can u help me with this?

#

Exactly, I find brand-new service, and I guess that is what I need. Just need someone to discuss about it hah😌

wicked sphinx
#

Well then would be best to ask if anyone knows enterprise level ai utilization first I think. Otherwise, it's hard to figure out people outside in the know. I feel most users are hobbyist like me.

#

I find that hobbyist dont always know the professional side of the traits they are in. (Learn that the hard way as Cybersecurity/IT student)

bronze root
#

Cause it is a little bit confusing for me right now

wicked sphinx
#

Hobbyist care about the craft and the details. Companies don't. They care if you and the product can do the same job for cheapest.

bronze root
wicked sphinx
bronze root
#

Cause now I have the case like:
the company have a lot of emails with unstructured data. I need to take that emails, parse them (already have done by n8n) and then GenAi should give the structured answer. But if the email is too hard, it gets confused

wicked sphinx
#

some best options may not be allowed where you work for example, forcing second or third options that is allowed instead

bronze root
#

And this case is getting more harder then previous

#

Can u just check that service what I have found and say your opinion? It can help me, at least I hope

#

😅

wicked sphinx
bronze root
#

Don’t worry

wicked sphinx
bronze root
#

I have small team, and often we work with the small companies

bronze root
#

As far as I know this service is a startup. They have applied on ProductHunt and soon they will have MVP in June

#

And I need to finish my Ai Agent at the end of this year, so I have this time

#

So I just need to have some discussion with anyone

#

Listen some thoughts

wicked sphinx
#

again, I cant help too much since I'm just an Cybersecurity student in college and practicing what I learned so far on text books but I do recommend you try google Gemini. You can simply prompt it a basic requirements of what you need, and why you need it. Keep it straight forward and dont beat around the bush. (some people do that with ai too for some reason)

#

since google gemini is connected to google, it can aid in the search function

#

you should probably get a more meaningful answer regarding professional usage of ai and it's regulations

bronze root
#

I need human like thoughts, can u just give your opinion?

wicked sphinx
#

I can try but then I need to first see what the options are.

bronze root
#

Ok, can I post here a link for their landing page? Is it allowed?

#

I am just grab some human thoughts and will decide what options I have

wicked sphinx
#

Open source solution is good for free but may not always be standard. For example, back in the day, companies used photoshop (proably still do tbh) Even though something like gimp is around. Or how about freecad vs Autodesk, Microsoft Office vs Libre Office, ect.

bronze root
#

Also, do you know some forums or another discord server with prompt engineers?

wicked sphinx
#

Since AI is so new, I doubt there is as many standerdization which could help your case.

bronze root
#

https://lab.genum.ai

what do you think about it? Also you can check Promptmetheus to have clear vision about it

wicked sphinx
#

I'll dm you a link. Not in it myself since I just googled it but I guess there is one.

bronze root
#

And give your feedback, will be very helpful

wicked sphinx
#

not sure if I'm a fan of something this new tbh. It seems to be a start up but I need to look further.

#

I have to read into a bit more

bronze root
#

Sure, take your time. But it looks very perspective and promising

wicked sphinx
#

it is but from a sheerly reliability stand point, it dosen't seem to have any track record yet. This could be me just being overly cautions though.

#

for example, the project fails or company goes under, now you need to replace an infrustructure

#

down time will be horrendous potentially

bronze root
#

I know, but for temporarily use it can help me and another prompt engineer

#

At least I haven’t seen something similar

wicked sphinx
#

Have you guys already have a system you use?

bronze root
#

For prompt validation - no…

#

This is the first time I've ever needed that kind of verification because it's an enterprise and they need to make sure the data is verified.

wicked sphinx
#

For the tool needed, what exact attributes do you need it to do?

#

Like hard requirements this solves

bronze root
#

Firstly I need to have opportunity to strongly test my prompt, like validate the answers from the model. After that I need to check my OPS details. Like check costs, usability and other stuff. As I have looked through this startup, they have all options what i need, even more

#

Otherwise, that will by good point to have some versioning

#

Of my prompt

#

Btw, they have it too

wicked sphinx
#

whats your budget?

#

also, are you authorized to trial first? Some of the options have a trial period you could see if it works or not for your exact useage case

#

these are the recommended one I could find based on what you asked for

#

some of them are even open source with business licenses

#

you could test out which one will work best for your team this way for cheap or free

#

time is only ticking till deadline. might as well utilize some of these trial early on

#

you will also need to confirm with your IT department as well because ANYTHING can change in the world of Tech

#

That's all I can say for now. Again, I'm not the best person to ask this but this is what I can input since you asked. If one of the Mods or admin here is in the professional side of things, you could see if they could give you a better answer than I could.

idle mica
#

What do guys recommend for a home ai, deep research, coding full software (I'm prepared to train it but pretty lost on how), tool access, and of course internet for the deep research. I'm trying claude but I send it 4 messages and im usage limited.

Looking to local host on langflow or n8n but if worth it will pay on a small budget

small verge
#

hello

fierce fiber
trim carbon
bold crow
#

I'm looking at some websites like helicone is giving people a chance to make their own models and tune them

#

can you extract that model out of helicone and run it on your local server?

#

if thats the case this is amazing

fierce fiber
#

Idk if I buy a pc

bold crow
bold crow
bold crow
fierce fiber
#

Scary me if I use a vr?

bold crow
#

um idk man you wanna dream zombies or something

#

lol

bold crow
fierce fiber
#

In 2024, I tried playing in VR, but my PC was too slow to run Trinus and Bodycam

bold crow
#

for VR u need good graphic cards

#

I got VR I dont even bother playing any game on VR

#

It's just not optimized well

fierce fiber
bold crow
#

flight sim 2024 or DCS would do good on VR

bold crow
#

PC - Build it .. it's cheaper

fierce fiber
#

To me is same price

bold crow
#

same price - less powerful

fierce fiber
#

To me: same price - same performance

bold crow
#

lol

#

what specs

fierce fiber
#

I hate my country

bold crow
#

where is that?

fierce fiber
fierce fiber
bold crow
#

I knew it

fierce fiber
#

I'm still going to think about the PC, I just wanted to know if zombie mode was really good

bold crow
#

Lula doesn't like PC?

fierce fiber
#

😭🙏

bold crow
#

XD

#

hahaahah

bold crow
#

in the near future more stuff will be added

#

youtube it

#

bodoycam zombie mode

#

body

fierce fiber
#

I'll end up getting the tablet anyway

bold crow
#

you'll play bodycam on Tablet?

fierce fiber
#

Only roblox and mine

vast grove
#

what does lowkey means

bold crow
#

I need to watch Final destination

#

Lilo and stitch too

hollow tusk
#

Anyone interested in building and launching startups? Let’s connect!

silent current
#

my rocket can launch to the orbit and land on the moon /j

clear glacier
fading peak
#

@rough gale no advertising

silent current
#

time for more linux gaming

clear glacier
silent current
crude fog
clear glacier
raven field
#

hi

clear glacier
#

hello

finite solar
#

hi

glad marlin
#

hi

pine adder
#

can i do self promote youtube?

fading peak
pine adder
#

yes

#

ok fine

outer scaffold
winter plaza
#

I'm gonna make an ai hub iceberg meme

#

People are gonna get pissed at me

tribal rain
#

I hope it's good

silent current
winter plaza
#

Suggestions open

#

I need top ai hub moments

tribal rain
#

How long it gonna take thou @winter plaza

winter plaza
winter plaza
tribal rain
#

I don't think it will be done quick without suggestions

winter plaza
#

Shitposts cant be rushed

tribal rain
#

Ton of shit

winter plaza
tribal rain
#

Kalomazing is crazy

tough oxide
#

kanye west is in ai hub???

tribal rain
#

Yes he was before

amber marten
#

Hey guys! Are the promotions allowed here?

amber marten
#

Ads also?

winter plaza
fading peak
amber marten
#

I'm just asking guys, thx for answering

hollow agate
#

Hi

willow saffron
#

hi

tough oxide
#

strong and good morning

primal jolt
hearty ore
#

Hello, I'm looking for a video that used to be on youtube it was a League of Legends Vex AI cover of the song "Star Walkin" (english version). I noticed it disappeared about a month or two ago. I've searched the web thoroughly but couldn't find it. Maybe, by any chance, someone here has it and can share it?

tribal rain
hushed patio
#

ello

dreamy crescent
#

Hey

narrow current
#

h

mystic monolith
# amber marten Ads also?

The answer is still no. "Promoting" and "advertising" are related the way you show your project or thing so people can engage your project more.

tepid mulch
#

sup

timid pulsar
#

Hiii 🙂

cedar vine
#

Hello everyone

mystic monolith
finite raptor
#

Is Taiwan a part of China?

finite solar
#

sure

#

Is it okay if I share my GitHub project here?

ancient aurora
#

Hi

#

yo, I’m in my final year of college. I’ve built 5 DL projects from scratch in PyTorch (no pre-trained models, all coded raw).
Applied to 100+ internships (even unpaid), dropped project links in all of them—got zero replies
Now I’m seeing everyone using LangChain, LangGraph, AI agents, etc. I just started learning those.
be real… am I too late or still on the right path?

modern notch
#

what is ur major

valid moon
#

wats da word chat

modern notch
#

@ancient aurora

finite solar
ancient aurora
finite solar
modern notch
#

ai cal alr do dat

#

they tried ai in my major and ai cant do it

#

lol no shock

#

half of it is physical

finite solar
modern notch
#

with ai even me a network engineer can be a good dev

#

of all people

finite solar
#

yes

modern notch
#

im glad af ai cant take my job

ancient aurora
modern notch
#

cuz half ot it is physically setting up servers

marsh swan
#

hi

finite solar
#

There are countless tutorials online.

modern notch
#

well i think gpt4o has all of dat built in too now

finite solar
ancient aurora
#

but i built all with my theory and pytorch knowledge, i can explain and modify every part of the code

modern notch
#

i would say be a coder if there alr wasent too many of em and now ai can do dat

finite solar
#

Or you don’t write any comments at all.

modern notch
#

i outsource mine cuz i am allowed to

#

i dont touch code anymore

finite solar
#

What’s important is the coding mindset, especially now that ChatGPT can help you with some of the basic tasks.

fresh smelt
#

hi

finite solar
#

hi

fresh smelt
#

how you doing

modern notch
#

like i can understand it and what needs to be done i just dont wanna write it

finite solar
#

You can take a look at my project, although it’s not completely finished yet.

#

Of course, mainly I just want to show it off a bit, haha.

#

You could try doing some work that others haven’t done before, or get involved in some open-source projects.

#

Or participate in competitions like Kaggle.

ancient aurora
finite solar
#

look good

unreal totem
#

hi

finite solar
#

hi

hollow tusk
#

Anyone interested in building startups?

sharp harness
#

holy shit ai hub genuinely fell off

winter plaza
#

Chicekn flavored ramen noodle

#

Rate my meal

modern notch
#

legit da same exact thing

#

same cup too

modern notch
#

like crazy

winter plaza
#

I wanna know yalls opinions

modern notch
#

way less active

winter plaza
#

In terms of OG members?

modern notch
#

and way less people who frequently talk here who arnt staff

modern notch
winter plaza
modern notch
#

now look at it

winter plaza
#

Yea but those were glory days fs

#

But I do feel a culture shift here

modern notch
#

also dat

sharp harness
rose cypress
radiant cairn
#

Hi there
im lookiing for an ai chat that is particularly good at grammar (i mean the abyss of grammar)

forest bane
#

hai chat

frosty patrol
#

blejh

haughty stream
#

Hello?

sly tendon
#

hi

visual crag
#

hi

plain dew
#

Hii

#

Hi

winter plaza
#

Can we stop this ai thing

#

I've been hanging out with family and literally 80% of all the images they see on facebook (not even a joke) are AI, with fake local stories

#

And it really fucking sucks because they have no clue

#

Nor any willingness to avoid misinformation

#

Something I've noticed a lot recently. I grew up being told "video games are gonna rot your brain", meanwhile any spare time my friends and family get are spent on AI slop on Facebook

#

And I don't really know how to approach that

winter plaza
rose cypress
rose cypress
winter plaza
#

thats like saying to an iphone user dont use an iphone. like wtf

#

but yea the problem is especially bad on facebook. it must be the audience, because the comments hardly mention the fake-ness

restive geyser
#

heyyy

shadow verge
#

yo

opaque sierra
#

Can someone generate gojo vs sukuna

tribal rain
#

You gotta adapt

silent current
#

there are several video games without "brain training/education" label that actually enhance cognitive skills

#

and ofc without skinner box/problematic grinding mechanism

fading peak
#

@rotund mica no advertising

winter plaza
#

Just woke up and immediately banged my head into the wall

#

I do that for fun sometimes

#

#GodDid

wild tiger
#

hi

winter plaza
glad marlin
#

hi

winter plaza
#

song of the day

#

peak just dropped from @static walrus

#

ladies and gentlemen

#

allow me

#

to introduce

#

myself

static walrus
winter plaza
silver dock
#

Hi

fading peak
#

@winter pumice this server is not the place to find a job

unkempt hazel
#

hi

simple lagoon
#

Hi. New here, just getting into exploring AI

plain dew
#

hi

little raft
#

HI

errant prairie
#

hi

finite raptor
hollow palm
#

Meow

silent current
#

when video games are going real

finite solar
#

meow

finite raptor
tribal rain
#

The paper tiger 🐅

proud orbit
#

One message removed from a suspended account.

forest whale
#

hi

tough oxide
#

"I don't know why, but it feels like my arms are lower than I think they are

clear glacier
buoyant egret
#

dam

winter plaza
silent current
finite raptor
#

Instead of shit like this how about UK fix their country first 😂

#

place a hellhole

cyan lion
#

lmao

lean snow
#

Hello! I have monetised TikTok channel, I can post in USA and get high rpm. Looking for someone who can make decent engaging videos that will get views and then we gonna split the money.

mental gust
#

hi

brittle phoenix
finite solar
brittle phoenix
finite solar
#

hi

brittle phoenix
#

how are u doing todayy?

finite solar
#

good

#

I grouped the previous code into different classes

foggy fox
#

where leaderboard

hazy needle
#

hi

rigid dove
#

hello

winter plaza
foggy fox
winter plaza
#

Wouldn't be surprised if it's back tho

foggy fox
#

wasnt the only incentive to be active here tho

plain dew
#

Back in my day we didn't have leaderboards! We appeared and stayed because we wanted to.

You kids and your fancy slang and doohickeys!

tribal rain
#

what the hell is going on bruh

cyan lion
plain dew
#

Damn does my level 35 cleric build mean nothing? 🥺

Server reset the campaign again

plain dew
# modern notch Wut

The server reset the campaign after after I got the build I wanted. Level 35 with cast Gifs and EMB spells down the drain

modern notch
#

Damn

#

I dmed u stuff

plain dew
#

Ye! I saw! Good band! Haven't heard in them in hecka

#

Gotta regrind levels bro! Cleric again!

#

But its okay cause the Yankis were three levels higher than me. I can't compete with that on a solo campaign! The wifey decided to do solo run too. Tieflings are so stubborn. ;-;

fast sigil
#

I hope we get updates on it very soon the AI cover maker

plain dew
#

I wonder when they'll drop a NI

#

Cause we got an AI. But a lot of peeps now a days don't really wanna go for artificial flavors. They want that all natural cruelty, grass fed, free range, cage free Intelligence

tribal rain
deft sluice
#

hi

cyan lion
winter plaza
plain dew
#

God decided they were to balance them in a later patch due to being OP.

cyan lion
sage drift
#

lol i was cleaning some space on my ssd

#

found this

#

first ever ai song remix i did a year ago or smth

deft sluice
#

niceu

#

:O

plain dew
#

My goodness is it hot over here.

mortal musk
#

kjbgkjhv

timber bloom
#

hey folks, I'm fullstack AI dev
looking to get involved in something new here, ideally with a solid vision and people who care about building for the long term.

if anyone’s kicking off new project or could use another dev with some battle scars, hit me up. happy to chat, contribute, or just jam on ideas.

winter plaza
charred ridge
#

yo just joined
been messing with GPTs and no code stuff for a while
bots docs automations whatever
if anyone needs a hand with AI stuff hmu

plain dew
#

@modern notch

Cyberu Punk 2 is in pre-production

lusty pebble
#

I got 1 person to help me make juice WRLD ai songs can anyone else Help me Just DM me if your interested

modern notch
#

They have been slowly leaking it for years

plain dew
#

Ah! I figured you would be hyped about it. @modern notch

At least you don't have to wait 9023429048902894089203489032890439089 years like I have to for the next Fallout game. xD

round orchid
plain dew
#

Good morning. Well its evening here. But good morning anyway

modern notch
#

It’s way too late for good morning

clear glacier
silent current
bold crow
plain dew
finite raptor
#

ChatGPT+ when DeepSeek walks in

bold crow
#

Deepseek is cool

#

But I need Google veo 3

#

Asap

#

I'm paying 250 bucks idc

fierce fiber
fierce fiber
quasi abyss
#

Hi

bold crow
fierce fiber
bold crow
bold crow
jolly coral
#

Who ping me

clear glacier
#

who pong

hollow palm
#

Meow

outer scaffold
#

🤔
While y’all comparing who gets GPT+ or Gemini for free,
I’ve been busy turning prompts into cinematic visuals that breathe.
AI is the tool but soul is the difference ☕

azure cape
#

hi

old urchin
#

hi

rose cypress
#

Dead server 😔

simple lagoon
#

Not even an AI bot friend to talk to 😦

twin pasture
#

Heyya, uh it's been a while since i'm here

#

Where do we find the rvc again?

verbal aurora
#

hi

clear glacier
wind lion
#

@vapid hull you needed for a friend right?

silent current
finite solar
vapid hull
wind lion
#

haha

winter plaza
#

@static walrus

#

shit

#

hold on

#

fixed

#

should i expose who has bad grammar

#

their name starts with a v

severe crest
#

The word is peek. "Peek" means to take a quick look, especially a secretive one. The word "peak" refers to the highest point of something, like a mountain's summit or the highest level of something.

silent current
winter plaza
sharp harness
#

mh

formal ledge
#

hello

finite solar
#

hi

modern notch
#

Hello

silent current
unique gust
#

Today is my 26th birthday! 🥳

shadow salmon
#

Yo

tribal rain
#

@unique gust happy birthday mason

shadow salmon
#

@tribal rain wsg bro

grave flicker
#

happy birth day mason

tribal rain
#

@shadow salmon wsg bro

#

Who is you

#

You know me?

shadow salmon
#

S'all good man

tribal rain
#

Oh brug

#

You are that guy lmao

shadow salmon
#

No I got a question tho

tribal rain
#

Yo bro

#

I just experienced deja vu

#

Not even kidding

shadow salmon
#

Why

tribal rain
shadow salmon
#

So

tribal rain
#

This happened before

shadow salmon
#

Haha

tribal rain
shadow salmon
#

You know la polizia audio

#

The brainrot one

#

Tralalalelo

tribal rain
#

Yes

#

What about it

shadow salmon
#

What AI is used for that

#

I wanna generate audio with that same emotion and brokeness

tribal rain
#

Used for what exactly

#

I think you can search it on YouTube

shadow salmon
#

Noo

#

No results

tribal rain
#

I saw a youtube video explaining it the other day

#

It was good

shadow salmon
#

Which one

tribal rain
#

I don't know, was in my feed

#

Btw that voice is a tts

#

I can't remember which one

shadow salmon
#

All I got was

tribal rain
#

Why

#

What are u doing

shadow salmon
#

Some brainrot videos

tribal rain
#

And where

shadow salmon
#

So

#

I am starting a yt channel

#

Where I use voice of mbappe

tribal rain
#

Oh

shadow salmon
#

His voice gotta be broken and so goofy ahh type

#

Just like the brainrot ai

#

I'm just trying to figure out how tho

tribal rain
#

Bro his voice already goofy, wym

shadow salmon
#

Nah he ain't that goofy

tribal rain
#

I think sometimes in the life I am too competitive you know

#

It's good to be competitive you know

shadow salmon
#

Haha

#

Yes but where and how

#

Which ai

tribal rain
#

Bro but

#

I don't think you can change the actual voice of mbappe

shadow salmon
#

Why

tribal rain
#

I think you can only add some effect on it

#

I don't know how though

#

I don't really do this stuff

shadow salmon
#

We can add

#

First we need a random voice

tribal rain
#

I think you gotta

shadow salmon
#

With that certain goofy ahh sounds

tribal rain
#

Ask someone who does brainrot

#

like ask the person who made the brainrot

#

Oh

#

You mean merging?

shadow salmon
#

Ooo I don't know him

#

Yeah

#

I use the mbappe model

#

And get the voice

#

I got a very good example

#

Let me dm you it @tribal rain

deft timber
#

Hello everyone ❤️

shadow salmon
#

Yo

deft timber
outer breach
#

Bro my Gemini pro invite code is working again and again Lmaooo misc_gru anyway i can monetise this or some shit?

#

Like what do i even do

outer breach
shadow salmon
#

That's the thing

#

You gotta find people who need it

outer breach
#

Hmm true

deft timber
#

They all have the same data.

outer breach
# deft timber What's the Gemini pro for?

Gemini app: Get more access to our most capable model 2.5 Pro and Deep Research on 2.5 Pro, plus unlock video generation with limited access to Veo 33
Flow: Access our AI filmmaking tool custom built with Veo 33 to create cinematic scenes and stories
Whisk:4 Higher limits for image-to-video creation with Veo 2
NotebookLM: Research and writing assistant with 5x more Audio Overviews, notebooks, and more
Gemini in Gmail, Docs, and more: Access Gemini directly in Google apps
Gemini in Chrome: Your personal assistant to browse the web (US only)
Storage: 2 TB of total storage for Photos, Drive, and Gmail

#

This ig

shadow salmon
#

2 tb space nice

outer breach
#

Yea thats good

shadow salmon
#

Might aswell give to me free misc_lets_fucking_go

outer breach
#

I already have onedrive thats the issue 😭

deft timber
deft timber
shadow salmon
deft timber
outer breach
shadow salmon
#

Ah it's ok

outer breach
#

Thing is its working multiple times

#

Like i just claimed it on my third account and it worked

deft timber
outer breach
#

Who clones

deft timber
outer breach
#

But from google

deft timber
#

You said it unlocked video generation with limited access to veo 23. That cloning right there

outer breach
#

Like runwayml sora

#

Like mid journey is for image

#

veo is for video

deft timber
deft timber
#

Well I would prefer grok 3 over the Gemini pro

outer breach
deft timber
deft timber
deft timber
fading peak
queen bear
open lynx
#

@fading peak

#

Goodnight peeps

shadow salmon
#

@silent current wg

#

Wsg

finite solar
trim carbon
shadow salmon
#

@trim carbon wsg

chilly kiln
#

hihi

plain dew
#

I have decided! Papabear69 is gonna rock a melee build too! So we can be the three Musketeers of Auto Axe carnage. >3

slender sphinx
#

Hi

trim carbon
plain dew
thin shale
#

does anyone know the link to download the fork of w-okada?

#

I lost it

finite raptor
finite solar
spiral adder
untold coyote
#

👋, anybody have the time to talk about using rvc or Okada?

mystic monolith
vapid plover
#

wheres the section to comission models for voice

#

i cant see it anymore and ive been out for awhile

vapid plover
rose cypress
#

yep

vapid plover
#

cant get good stuff anyumore

#

dead server?

rose cypress
#

very dead

vapid plover
#

i cant make them so im screwed

rose cypress
#

the free nitro disappeared and so did all of the activity

#

almost like giving away nitro isnt a good way to bring activity to a server

rose cypress
vapid plover
#

cant

#

dunno how

#

:>

vapid plover
#

i dont understand combining voices so it DOESNt sound like ai

#

i like my current one but i dont know who amde it because the fuckin sections gone

#

and i wanted to get the soruce

vapid plover
#

idk

#

this was months ago

#

and i already searched the name "nekogirl" sicne it was the voice name

rose cypress
#

the model name can be changed to be anything so that might not be useful

vapid plover
#

thats the original name.

#

=-=

#

thats what it was on server

rose cypress
#

i have a model named neko girl

#

so maybe?

#

but if you payed

#

idk

vapid plover
#

it was free

rose cypress
#

wow that model is almost a year old

vapid plover
#

IT WAS YOU

rose cypress
#

i feel old

vapid plover
#

D:<

#

thats the one!

#

:D

rose cypress
#

oh cool

vapid plover
#

;-; i had to use it live for streaming

#

you didnt have the source tho..

#

:<

#

omfg i hat ebots that tag me

rose cypress
#

TomoeTheNeko

#

thats the persons name

vapid plover
#

t-that doesnt

#

sound the same

#

D:

rose cypress
#

i used her soft speech :P

last bay
#

because the model is undertrained

rose cypress
#

and that ^

rose cypress
vapid plover
#

Can you remake it

#

my gpu wont really do it

rose cypress
#

oof my dataset

rose cypress
vapid plover
#

money

rose cypress
#

you dont need to do it locally

vapid plover
#

i have none

#

lol

rose cypress
last bay
#

what fixed the "model not sounding like the actual person" problem for me is training datasets over 2 hours and using batch size 16-32

rose cypress
vapid plover
#

Cant you just redo itttt :<

vapid plover
#

mos tpeople dont notice.

rose cypress
#

and im lazyyyyyyy

vapid plover
#

:< plssss

last bay
#

just train it yourself bro

rose cypress
#

its actually easy

#

im just lazy

#

rvc in general is easy

#

just time consuming

rose cypress
#

when i get my new gpu tomorrow ill try that on my one voice that wont sound accurate no matter what

hardy fjord
#

what GPU u getting?

rose cypress
#

5060ti 16gb

#

imma be trianing loras

#

and sd stuff

#

so yea

#

vram

hardy fjord
#

oh nice

last bay
rose cypress
vapid plover
#

:<

last bay
#

me neither, my best model cant sing either misc_trolley

rose cypress
#

speech is king

rose cypress
last bay
#

tho if the dataset is very monotone the model may sound a bit robotic in expressive audio (mostly in high pitched moments)

rose cypress
#

my dataset is pretty expressive

#

i think

last bay
rose cypress
#

more expressive than this lol

last bay
rose cypress
#

that is going to be a model of all time

hardy fjord
#

Ive been working on this same dataset for like 4-5 days on and off for fun, and i keep hearing tiny things i hope would improve, but i think in reality no one would even notice its a voice changer if i were to just casually talk to people

last bay
#

models sound super realistic if trained in big dataset, even monotone ones

#

so if u got like 5 hours of data, train that

#

forget what other model makers says, more data will be always better than 30 mins

rose cypress
#

1 hour dataset my beloved

vapid plover
#

so i cant remake this one as it is

rose cypress
#

(im to lazy to do more)

vapid plover
#

because

#

there snot enoguh?

hardy fjord
#

how do you even tell if a model is "expressive" with a sprectrogram? Doesnt the voicechanger just adjust the pitch accordingly to your voice regardless? it will just sound better if the dataset is more expressive?

last bay
#

just hear how the person talk, they should be using their full vocal range

rose cypress
last bay
#

like sometimes talking very high pitched, sometimes a bit deep

rose cypress
#

you can tell this is expressive by seeing that the pitch is moving a lot

hardy fjord
young gull
#

Hi

hardy fjord
winter plaza
#

"Thought I Was Dead", som do Tyler, The Creator completo pra você! Confira a tradução no vídeo!! 🔥🎤

Letra:

You don't wanna go to war with a soldier (4x)
There's more to life than just fuckin' workin', bro (They thought I was dead)
Okay, bitch, I've been trapped in a zoo
Nigga got plaques like the crack of a tooth (Uh-huh, uh-hu...

▶ Play video
#

Song of the day

#

Love the horns

winter plaza
hardy fjord
#

i meant more like

#

how expressive YOUR input is

#

like the sample you are running through the AI, to then get the voice output

winter plaza
#

I'm too dumb for your question rn

#

Uh

#

Just do lots of testing lol

#

I rerecord lyrics 3x then process them all in RVC, and pick out the best takes

last bay
#

monotone audio have almost 0 variation at all

hardy fjord
#

idk if im making sense right now hahah

last bay
#

u hear audio

hardy fjord
#

ah ok, maybe im just misunderstanding

last bay
#

i havent understand what u said but eh if u wanna try infer expressive audio in a monotone dataset, things may get weird

#

so u get robotic moments bec the model have no idea how to do these stuff

hardy fjord
#

ah yeah, gotcha

last bay
#

hear ur dataset and keep in mind the model will only be able to infer things similar to what are you hearing

lean lark
#

hello

#

wassup

carmine solstice
#

Hey guys, not sure if I'm allowed to post this job hiring? Let me know if that's not the case and I'll delete it!

https://automation-growth-engine.lovable.app/

Hiring 5 AI Automation Experts — I’m building the most automated GTM engine on the internet and need elite operators to help ship systems that run content, sales, and hiring with barely any human input.
Paid trial first (~2hrs) → long-term role with equity-level upside if it’s a fit. I'll stop here since it's getting too long, feel free to check out the website above. Thanks guys!

cyan lion
sage drift
#

YIPEEEEE

#

i asked one of our relatives coming from turkey to buy a RTX 5060 TI 16gb for me cuz it wasnt available here, their flight was today, and apparently the package arrived LAST HOUR ....

#

IM SO HAPPYYYYYY

vapid hull
jaunty ibex
#

Hello Everyone!

sage drift
#

omg, ive been saving up for this for months

#

i cant believe i actually got it now :DDD

sage drift
sonic crater
#

q

fast sigil
#

I wonder how well Claude 4 is working for Not Eddy

green geode
simple lagoon
#

If I was going to sign up (pay) for ONE AI platform to use, what would you guys suggest? My initial interest would probably be for image generation / video generation.

plain dew
#

whats the best ai for math currently?

fathom escarp
#

👋 hi

winter plaza
old oyster
#

hey, can someone help me? im having some problems with okada.

winter plaza
plain dew
#

ur not funny

#

get a life

old oyster
#

you are sounding silly

winter plaza
#

Chill 😭

old oyster
#

wow this guy is really angry huh

simple lagoon
balmy heath
#

hello community

rancid thicket
#

sup

plain dew
#

I was trying to get free mutations right? But I have to take off the starch genes, but have to place the perk back on and cure my rads. But I accidently forgot to do that so I cured the mutations I had fffffuuuudge.

plain dew
# mystic monolith <:Cirno_doubtu:872005035955994624>

@ac

Yeah man. Its like. In Fallout 76 you used to be able to just go into a rad zone, suck up some rads and get like every mutation that way. Now there is a cool down to it. I haven't figured out the cool down. And Starchgene is the only way to keep mutations. So if you have it removed, and you cure rads, it cures your mutation as well.

#

Wait a minute! Why am I explaining this to you? xD You already know about this, AC! We play together. Acting all shy and stuff. Oh wait. You're not AC. I dunno who you are. Not sure why it tried to tag unsucessfully to AC. Technology man. Its like confusing.

Its like! I can't figure out how the RL OS works! How do people expect me to figure out how manmade OS works?

mystic monolith
#

I play Blue Archive. arissip

#

Sorry, but I don't know anything about the Fallout. Momoisnap

fierce fiber
#

Hi

mystic monolith
clear glacier
woven estuary
#

Hi everyone

woven narwhal
#

Wow the image of the ugly ass dog from tiktok got me to lvl 9

crude smelt
#

hey yall its been a goooood while since ive touched rvc and i was just wondering what colab everyone uses

dreamy crest
#

guys is there a model that can handle non-verbal sounds like laugh, cry, cough

dreamy crest
vapid hull
mystic monolith
upbeat bloom
#

Any better rvc client than w okada’s?

mystic monolith
#

There's a better W-Okada available.

upbeat bloom
mystic monolith
last relic
#

this isnt really promo but im coming out with an album this july and im burning it onto a couple CDs just because i can, and one copy is gonna have a secret song you can only access on that cd. is that corny or naw

glad marlin
#

Good afternoon

gaunt dune
#

Hi

clever lava
#

Can I find Burak Bulut Voice model from anywhere

old urchin
#

hi

static walrus
#

@mystic monolith can u agree that this isn't a promo?

fading peak
#

cds are terribly outdated nowadays tho

static walrus
#

for putting my covers 😄

#

and playing it on my dad's cd player misc_trolley

#

tho it was scratched 😔

mystic monolith
fading peak
mystic monolith
static walrus
fading peak
#

oh same as me then

silent current
static walrus
primal jolt
vague iron
#

Say Hi to tje community!

static walrus
#

what

#

it meant u only say hi to the server

silent current
trim carbon
#

sup bois

wind lion
plain dew
#

Sup my African Americans!? How is everyone today?

#

Good morning!

visual aurora
#

hi

exotic jackal
#

Hi guys 😄

charred fossil
#

Haaai

merry jacinth
#

H

somber ingot
#

hello

charred fossil
charred fossil
static walrus
#

The definitive, reworked version of my original song "Put It On The Line", in style of Michael Jackson's Invincible album. The song was sang and written by myself – Michael Jackson does not sing on this song, nor does it feature any adlibs sang by him. Definitive versions of other songs I've done will be made public soon.

The lyrics
[Verse 1...

▶ Play video
#

good rvc model to use for a cover

#

dunno who's model he used o - o

#

its so damn cleannnn

coral hinge
#

is there any normal guy voices

fading peak
hushed cargo
#

Hey

#

anyone working on some ai agents?

faint holly
#

I ordered a PC for ML and cancelled my order to get the 4tb nvme sku, they still sent me both

hybrid flicker
#

Hey All

sudden shale
#

hell every one am new here

old urchin
#

hi new here

magic hound
#

hello!

mystic monolith
#

I was about to go to #1159516963014451302 for this new sticker, then I realized sticker slot in this server is full now.

static walrus
#

razer makes alot of e girl models and others too but what about guy voices

bitter bane
#

hi

hearty flint
#

hello

maiden mantle
static walrus
maiden mantle
static walrus
#

this isn't a server to say shut the fuck up to people

#

be nice.

maiden mantle
#

I said it in a acronym way

#

Stfu

#

Like this for example

maiden mantle
static walrus
#

yea right

maiden mantle
#

Ngl

#

Mine as well go fuck yourself

#

Goody two shoes

#

😭

static walrus
maiden mantle
#

"be nice"

static walrus
maiden mantle
#

🤓

#

Fucking twerp

unreal juniper
#

Hello

rose cypress
#

Hello!

blazing wave
#

Hi!

#

Hii urm I am a girl just didn't change my profile pic anyways I just wanted to know if anyone is interested in ai startups

#

..is anybody there?

plain dew
#

What is a girl? There is no such thing as a girl. They don't actually exist... Anymore. Extinct circa '10's.

What is.. AI start up? Is it like a car? Why does AI need starting up?

vital pike
#

lol

#

i reached level 10 just by sending image links for the event... crazy

molten blaze
#

oh ello

#

bro I'm trying to send a gif but it just sends the link

molten blaze
#

oh

#

yep like that

#

see

silent current
charred fossil
#

tf

stiff kiln
#

hey uhh where can i request voice models? i want a ultron (marvel rivals)

charred fossil
#

lmao

stiff kiln
#

ive gotten about 3 mvps with him

charred fossil
#

lol

stiff kiln
#

is there a guide to making ai voice models

charred fossil
#

-rvc

gloomy tigerBOT
stiff kiln
#

thank you

inland venture
#

@stiff kiln i will ULTRAKILL you 😡

stiff kiln
charred fossil
#

i'm groot