#general・🧺
1 messages · Page 23 of 1
Thank you!
looks great
Cool to see the Google spotlight search Windows app!!
hi
Yo, new memeber here. Struggling to get scenebuilder to work right now? Anyone else having issues? I "add to scene" and then go to the sccenebuilder but nothing is loaded tia
'
been vibe-coding this game for the past couple of days, stubbornly kept it all as a onepager.html code - managed to create a early 90s style german sim, good old "wirtschaftssimulation" - those overly and unnecessarily complex and detailed economic sim games made by highly decorated people like Albert Lasser
by now that thing has about 200.000 rows of code
it has dev tools, its "own" 3d engine , 4 player hotseat
100% natively rendered in your browser
im sort of a early 2000s webdesign guy myself, so im quite able to fiddle with this code, but with recent extensions it has gotten so complex that both AI and myself have trouble to keep working on it
by now i basicaly exhaust daily limits within the initial analyzation of the code when i try to advance the development of my game
What is going on fellas
idk i have talked mostly to ai for a few days and thought it was time for some plan good old humanzee interactions
wow. i also walking a walking man.
just like you did.
mine one.
neat, three.js eh?
i realy like yours man
less detailed in fidelity but much smoother overall, more abstract but generally feels like the better one
everybody has their own knowledge about how to make a walking man. so cool.
i made in opengl python.
you should take a look at three.js if you doing 3d stuff in the browser
that stuff is nuts, check the examples , i.e. gamefps
i see. three.js i will check that out.
so i guess yours is drawn by koordinates as well?
like predefined shapes specified by koordinates and positions?
i have procedural generation of robot parts implemented but im struggling to get them shown in the robo designer currently
in opengl the basic shape is triangle. but i using those triangles was able to make cylinders, cuboids and spheres. and also .. for the body the torso.
haha amazing yeah we went the same way
its that moment where you realize wait, if i can draw one shape i can draw every shape by building other shapes out of tha that one shape
just using triangles. we can realize that we can draw any shapes for our video game world. yes.
if i increase the amount of quads the robo head becomes completely round
and will melt your gpu right away!
Batch it
same would happen to me... if i increase the number of triangles required to make the spheres or cylinders for example.
You need to write a system to batch them and then rebuild them via CPU while rendering or generating
current solution is to use sane values for the quality slider 😄
Hahaha, next time don't design your slider with such a high scale, maybe
and not hav it build a simple sphere from a gazillion quads 🤣 you think batching would allow to run it at such high quality settings?
yeah yuare right, this is just in my dev tools. the game uses a much lower quality setting, should be equal to quality level 2 in the editor
Yes batching would allow you to run super high quality generations and if you build a map for it to compile via CPU you can generate and fifo it to the CPU
that sounds quite tempting
I can help
which game are you making. are you making a game too.
the game is about leading a company that invents and produces robots and robot parts
traditional german economic simulation
man that is such a nice offer, i def wont say no to this
Interesting, do you get to the point where the robots produce other robots and parts and assemble them? xD
but i value other peoples time
It's ok I don't offer what I don't have.
i should add this to the tech tree
currently you hire workers and pay them salary
but i could make it so that after 30 years or so worker robots become available
Should be an engineer position that has a random IQ range and one day if his IQ is high enough (You hired the correct candidate). He produces self rewriting robots that can eventually produce and assemble themselves.
What are you writing this game in btw?
that is part of the problem 🤣 this started as a pure curiosity project. how far can i drive a onepager html that does neither require other files nor a webserver
so its 100% html, css and js
My current situation right now is server / infrastructure recovery kinda lol
Oh awesome, I'm very good at all of those things so let me know if you need any tips or pointers
other than the walking man i had created a 3d model of an oak tree and a castle gate.
i would love to see them!
a render of the scene. it is bit unclear but you can see that.. oak tree infront of that half-closed castle gate.
you can walk or fly around the scene.
wild, i feel the c64 vibe and you have my respect
doing all this increased the appreciation and respect to those devs of old days from my side
N64? Lol, I got the same vibes, except gamecube, maybe some windwaker almost. Maybe it's the greens.
So what are you doing generating SVGs or another vector image and rendering them as 3D objects or
its just 3d triangles placed in certain 3d coordinates.
you can make cylinders, spheres and cuboids using those triangles.
and then the scene using it.
btw the oak tree is a bit more complex.
the leaves are spheres and the trunk is cylinder with varying radius.
the branches are just cylinders.
I was referring to @ornate yew, I didn't read up on anyones post. Kinda just jumped in. What are you creating and what's your development environment?
Each one of those trees sounds like a huge delta drop lol
oh, i actualy am using voxel
example of 10% of the code needed to create the robo head shown in the video posted earlier: buildEllipsoid(
pos, col,
{ x:0, y:0, z:0 },
{ rx:0.28, ry:0.32, rz:0.26 },
VOXEL_SIZE,
()=> base
);
i completely see. you have converted the game scene into 3d grids. and you are drawing by filling those 3d grids.
isn't that what voxel mean. the 3d version of pixels ?
where buildellipsoid is a function that defines an elipsoid and build blocks to form a shell
You're writing the bitmap out @ornate yew ?
A voxel, like a pixel, depicts screen or virtual space
@shadow granite nothing is prerendered or precoompiled, the models get drawn on the fly by those functions and builds the shapes from blocks
It's the smallest there is in a 3D virtual environment
They store information like color, denisty, opacity, sort of like how pixels store color information
ok.
It's a form of raster data, like pixel data, but with a 3rd dimension of volume
I hope they're atleast cached
using blocks won't work for more complicated games though. you should try to make a 3d surface out of your block models. it will reduce the number of triangles required.
its overly taxing but given the games structure not a real issue
we wont render massive wars with robots or anything, just different varieties in this robodesigner
i left making this game and started working on other projects because there is no sophisticated tool or method to make 3d models.
if i continue this project. i would look forward to two ideas further.
lego blocks [a kids toy]
openscad [used for 3d printing]
and then everything in the game all 3d models would be designed inspired by the idea.
i don't want to waste time in randomly creating 3d models. there should be a realible way.
haha for that purpose i have procedural generators
you can use predefined "microshapes" to proceduraly generate countless varieties of your tree
what is this procedular generator.
Interesting, 24GB! Holy moly lol.
in other words random generator
How many voxels are you rendering at once? Lol
lol thats not the game 😄
Oh phew lmfao.
thats my quadrillion tabs with millions row of code etc
Lmfao, browser tabs?
yes
Which browser haha, Vivaldi?
ai. i work on making math ai. that's my project.
if you figured out how to make a 3d video game properly.. please teach me.
Haha, I can teach you guys a bunch of stuff. I started out in game development
procedural generation is a method of generating things with a predefined formular. lets say you have your tree. if you seperate it into leafs, branches and the main stem you can start randomizing lets say amount of branches, scale of stem, color of leafs
lol. this is a big and mysterious story. i can explain what's this math ai. but i am interested in making games also.
What is math ai? I engineer and architect systems, models, tools, anything AI. From scratch.
its a 4000+ lines of code python program. which can solve mathematics problems.
its like pip install sympy or wolfram alpha.
Oh I gotcha, it's a weighted mathematics engine
Anything particular it's trained off of?
its not machine learning. its just algorithms.
it can simplify algebraic equations for example.
So you've constructed a rule system
EQUATION 0 : -1+(2*x)+(x**3)
>>> ``` like this.
yep.
but my point is.... you all are creating games. create a nice game and a technique to create 3d game models. teach me that. and i teach you... this math rule based system stuff.
I can help you guys honestly create anything from scratch you'd ever want.
Google, is already on the right path and utilizes the Linux kernel
Ever heard of gLinux?
im also happy to help @shadow granite
ok. i really wanted to make games. but instead i am busy interested in this strange story of math ai. but as you are specifically interested in games and you got time for that. you can help me out with it. my game is incomplete.
NOT THATS LIKE IT SHOULD BE LIKE MAC LIKE SMOOTHNESS AND WORKABLE LIKE LINUX AND OPTIMIZE LIKE ATLAS CAN ANYONE MAKE THIS
THATS A BIG SCALE LEVEL PROJECT .
this is cool. keep working.
but the stairs are mostly made of cuboids in that game. that's it.
oh yeah, in this case its simple shapes
Mac, smooth? Atlas optimal?
hmm. simple shapes can get us far in video games. but to get farther we need to develop our own techniques.
Mac is far from smooth, Atlas is a niche.
No ones going to visit a subdomain, subdomain.
it depends on what you want, do you want high-res unreal-engine like 3d models ?
WHY??
You need to fork up the 10-20$ and get yourself a domain and host it somewhere
just want to make humans, animals etc... not aiming for high-res.
BRO WHERE DID THE MONEY COME FROM ?? IAM A STUDENT IN MY COUNTRY THERE IS NO PART TIME JOB FOR STUDENT AND THE 1 DOLLER IS EQUAL 130 TAKA
because then drawing them on the fly from geometry isnt the right approach imo, you need .glb or gltf 3d models wich can also be seen in action here: https://threejs.org/examples
ah okay, so you want to keep the retro look
because state of the art is we can show almost anything like in real 3d game editors
we arent limited to those simple graphics is what im trying to say, we only do it on purpose
Came across this video on Instagram. Would anyone know what AI-video generator was used to create this video? Is it Veo 3?
hi
.glb .gltf 3d models are mostly made by artists. i wanted to make 3d models just by typing.
i don't want to use blender.
or 3d model tools like that. which artists use.
okay, i have experience with blender too and there is no need to be afraid of iot but i understand yur wish
so, in this case i would suggest procedural generation
because otherwise you are in for countless hours of hand modelling 3d assets by pure math
There yah go @quartz leaf. Even cheaper.
why not github pages? @proven musk
hmm.
@stray bluff Download it and check it's metadata.
btw. i was telling about that strange programming story of math ai. let me tell it also.
Github pages would work, still would need a domain though.
Also, depends on what kind of site they're hosting
I DONT HAVE THIS TYPE OF BUGET IF YOU DONT KNOW IN OUR COUNTRY IF WE WANT TO EARN LIKE 1400 TK WE NEED WORK LIKE 24 HOUR INSTANT SORRY BUT CAN YOU RATE MY WEBSITE I MAKE IT IN 1 PROMT
proving the x plus 1 whole squared formula using math ai
or a trigonometric proof.
this is my work.
this is python program's output.
the python program is 4000+ lines of code.
everyone should have a body of work in programming. then we can collaborate to build things whose complexity touches the sky. i am alone devoted to programming like this. but i am giving my best whatever i can do.
All, good, that's what we are here for. Ask away, I'm always down for a collaboration or a little session.
yea. everyone should be having their knowledge with them. life is not limited to just other things. programming is also a important part of life. and programming people should have knowledge in programming - enough knowledge to share it. so that collaboration could be done.
Also, I see that's the output of your program lmao, looks like the python interpreter, but the syntax is of a wolfram language
math equations are trees.
f_add
f_mul
d_3
d_2
d_1
(3*2)+1 once i input this string to python's input() i parse the string into this kind of tree.
there is a lot of process underneath the wolfram language-like syntax
I understand it very well actually 😅
anyway. keep creating your own programming stuff. programming itself can be a way of life. if you try hard.
i made chess Ai also.
and did experiments with rule based nlp.
happy to share an earlier less run down version of robocity
the past 24 hours had me drowning in code spaghetti and the size doubled
it does not have the 4 player hotseat included or at least not implented in such a way that its working. but its completely playable from game start until you win/loose
Share away, I'm just doing doing some cluster management.
ah damn, not allowed to post a html file in here
94kb
and that is the small one 😄
the big one is 200kb but it has quite a bit of redundancy, probably 20% of the code is obsolete
lmfao, that's quite big for an html file rofl
You have code blocks in there I'm assuming
yeah thats what happens if you stubbornly keep your conceptof everything has to fit in this html so it remains 100% standalone
lololol
like REALY standalone
You could of at least used other html files
sure, ore put some stuff in .js
Lol architecture, one giant pole or a pyramid
i guess the pole 🤣
How yah get up, how yah get down?
hm, i guess my onecloud link was considered unsafe as well 😅
the structure isnt that chaotic in the version i sent you
there is a section with generators that is a bit chaotic, i pasted improved generators there
other than that its relatively structured und commented
Where'd yah send it at?
oh i posted here, it appeared but was removed after a minute or so
oh darn lol
i will send you a dm with the onecloud link if that is okay for you
Yeah totally
@shadow granite if you want to have a look i can send it to you to, so you can have a look at how my game makes stuff appear in 3d
ok send it
moved to #off-topic・🐢 !
Sorry @rancid patio
@rancid patio Able to do me a favor and just delete it? I was wanting it in here to spark some conversations or aide in anyway.
that's fine! no stress! just moved it as it was not about anything labs related!
i am sam and am new in here
How Many of You Guys Have Gemini Pro?
I have
Hi, what's the right channel to talk about Gemini Flash 2.5 aka Nano Banana?
I have a question about the prompting, I am just unable to get what I want
@earnest pilot I've seen it mentioned in the WHISK channel.
I'm sure it would be fine here though too, if not I'm sure it could be moved to the correct channel/category
Hello. Gemini has its own dedicated community. You can join it here. https://discord.gg/gemini
Oh? Sorry about that, I thought since i am using Google AI Studio, this would make more sense! But thank you!!
How do I download without water marks?
You just may get more help there. There are no dedicated channels for it here. You can of course discuss it here though. The #server-directory・☎️ may be helpful. ☺️
Gemini Pro is good.
anyone knows if ai generated content on veo3 holds coypright? my videos keep getting stolen and although I report it and show screenshots of me literallly generating the clips through my prompts I always get told that its not enough proof of copyright ....like idk
Ownership: Google has stated that users can utilize videos created with Veo 3 for commercial purposes, provided they have a valid subscription.
Copyright on generated content: The legal status of AI-generated content is complex. In the U.S., copyright law requires human authorship, which could mean purely AI-generated videos are not copyrightable. If a human significantly modifies an AI output, only the human's contribution may be eligible for copyright protection. 🤔
Add Significant Human Edits: This is the most crucial step. Don't just upload the raw output from Veo3. Take the clips and edit them in a video editing program. Add transitions, a soundtrack, sound effects, or a voiceover. The more you transform the raw output into a cohesive and unique video, the stronger your case for copyright will be.
Would it be okay if I made some merch with the Google Labs logo on it?
I’d like to ask for permission first.
OK, so listen I literally tried it out for the first time and I lost my mind. It’s epic love it.
<@&1173646484311384114>
i have paid google ultra subcription. flow is a subproduct. yet, the ai credits are consumed by flow. i have started my scrptiion on august 26. being december 18 yesterday, my tokens, which i didnt consume half of them were reset to 0. sorry, but i guess a month is until september 26. since i dont see any subchanel for subscriptions and money issues, and since this reset happens for all labs products which consume ai credits i'd like to know how im gonna be reissued my tokens that i did not consumed and should have experired on settmebr 26 , exactly one moenth. thanks
🫢
cooking...
Cool Check
please post any flow questions in #flow-general・🌊 or #1319424187730755636
I'd like to learn a lot about Gemini and Google. I'd like to expand my knowledge to understand how AI works and thinks, and of course, I also want to use it to improve my financial life.
I have zero coding experience and I’ve just started learning Python for ML, is there any advice?
@manic cedar All kinds, what are you ambitions and goals? Are you trying to learn how to program?
Yes, eventually work with AI. 🤖

I joined a course, just needs some advices 😂
That's what I mean, not an actual course haha
All that stuff on the internet is garbage
Gotcha, I thought you are selling me courses 😣
So now with the recent changes they've nerfed character creation? So unless I can get it to remain consistent my character wont be as scary?
😂 lots of work to do
what things do you have to do?
I have way to much credits that I have not been using
So I am losing about 1500 credits every month
Got to do some videos
Ok
hi
Amazing idea with the animal levels. Great for keeping engagement more consistent. Definitely addictive
thank you, Labs Little Snail
do not call me that , my little snail is my little snail and I'm Russ and her name is Slim Pickins 🤦♂️
Hi, I just started. I don't see a help chat and have what I feel like is a dumb problem with flow not doing what I want... is there a chat that I'm missing?
Anyone having issues with google stuido text to speech?
hey, welcome to the community! we have an entire Flow section that could help. the entire channel list is available in #server-directory・☎️ but I'll link them below as well:
#flow-announcements・📣
#flow-general・🌊
#flow-videos・📹
#flow-tips-n-tricks・✏️
#1319424187730755636
what kinda issue did you face?
is there an api
For?
to use flow programatically? just curious
Do you mean an API for Google Flow?
To access a Google API, go to the Google API Console, enable the specific API you need, and generate credentials (API key, OAuth, or service account) to authenticate your requests.
The Google API Console, now known as the Google Cloud Console, is located at https://console.cloud.google.com/
Google Cloud Platform lets you build, deploy, and scale applications, websites, and services on the same infrastructure as Google.
What's the protocol for other Labs apps, like the new Windows app (feedback, q&a, etc)?
Experimental like all labs products. You can find its card under the labs page
Signed into my personal account, but you can enable it via the labs card.
Oddly when viewing the site with Comet, the feedback UI doesn't appear. Edge works fine. feedback reported. Thanks boss!
Yes sir!
yes, flow provides a api through its cli and sdks. you can use libraries like flow-js-sdk or flow-go-sdk depending on your environment
hey y'all - as a reminder, this is a space dedicated to discussing Google Labs tools, the broader world AI, and other on-topic themes. as per server rule #1: be compassionate and treat others with kindness and respect. while there will be times of tension and disagreement, please help keep the server a space welcoming for all.
you can find the rest of these rules & guidelines by clicking here ➡️ #rules-and-guidelines・📋.
anyone else blow through their credits today not knowing they started taking them away? not happy!
i was never notified that credits were being taken again for veo. i blew threw what i had not knowing this. is there anything i can do about it?
Hey guys, do you know why all of the image 2 videos with veo 3 look slow motion
I tried spamming "fast action, dynamic, fast-paced," but its slow
If i use the prompt but in text2vid it does look fast
I don't remember a time Flow generations didnt cost credits. Unless ur talking about something else
Saw once a visual bug where it said 0 credits
I refreshed the page and fixed that
What is up my mammals
"Just vibe code." They said. "You just type in a sentence." They said.
A few days later: using mind maps to preplan a full IFTTT sequence for the next project to save the amount of prompts and bug fixes to have to do in the future.
Still not actually coding but the amount of "vibe" I'm doing is getting exponentially smaller 😆
can you explain in detail?
Not detail at the moment, but essentially planning out the backend before setting Jules loose on the front
sucks, but at least flow in the scene builder is keeping him consistent, it seems neo banana or image generation wont just cause he's scary or may simulate violent nature. I couldn't even get and image of my jedi holding a lightsaber in an offensive stance at the Sith, this is what it said " However, I can create an image of Frey holding his lightsaber in a defensive or ready stance, with the green glow illuminating both his face and partially Darth Cronus's, maintaining the intensity of their confrontation without depicting direct physical aggression." I'm just hoping I can get to the end of my story to where I'm happy with it, without losing too much of what I've already invested to complete the story.
Can someone explain why notebook LM is now generating things a lot shorter than like 40 minutes plus?
Hello everyone,
I'd like to report a bug with the image generation feature on Gemini. It seems that the system is currently only producing square images (1:1), even when I specifically request a 16:9 aspect ratio in my prompts.
This happens with various prompts and keywords like "16:9 aspect ratio" and "ar 16:9". I hope this issue can be resolved soon.
Thank you for your hard work!
sorry to hear this! if you’d like to join the Gemini community to report this, you can do so at discord.gg/gemini
Thank you bro, today I 've just known this 
Can someone explain why notebook LM is now generating things a lot shorter than like 40 minutes plus?
This makes me so happy, I can't even tell you... 🙂 🙂
Nano Banana model only create 1:1 size image by default. Just uncheck the banana 🍌 icon, let Gemini switch back to Imagen ⁴ model, your aspect ratio request will work again.
For the past week I have been using the method you mentioned and it's still ok, but today it still gives a square photo.
Make sure you don't use nano banana to get other aspect ratio
uncheck or check then the same result
yesterday it's ok with uncheck nano banana, but it's not okay now
Wonder why Gemini AI answer in Vet 😅?
Why not???
yo
https://aurawebsitebuilder.netlify.app/ MY WEBSITE I MADE IT
well this is impressive
Love the parallax
good afternoon guys
wat
The Ultra Pro announced they weren't charging credits and they didn't. Then they never announced them going back to charging them. Maybe 2 to 3 week ago, somewhere in there.
Any text to speech tool in google labs?
Can someone explain why notebook LM is now generating things a lot shorter than like 40 minutes plus? and someone please respond to this.
What do you mean?
Text-to-Speech AI: Lifelike Speech Synthesis | Google Cloud https://share.google/KBSYf37aHM5MD47nB
Hey everyone, does anyone know how can i find flow videos?
You added me?
Guys, what's the best source, example, website or document, etc., for me to add to my chatgpt?
where do you get the best content? to educate your chatgpt ??
@bronze marsh Can someone explain why notebook LM is now generating things a lot shorter than like 40 minutes plus?
Hi there. This server is for Google Labs and that is not a moderator question. You may want to hop over to the NotebookLM server. You may have better luck there. https://discord.gg/notebooklm
hey guys im having trouble with nano banana im uploading images that i have from Ai and drawings of my own from years ago and i wanted to make gemini redraw them in the right anatomy, proportions and all while keeping same pose, gemini agree to my prompt but never changes the image or redraw on his own in a correct way, any ideas, tips or prompts for that?
send me
🦆
Hola
Hello
hiya, orchid here, good to be here!
Welcome Orchid!
Anyone else unable to access AI Studio, Flow or media gen. features in Gemini Chat at the moment?
I have Pro and it says Failed to load models and immediately throws me to th "Available regions for Google AI" page
for no obvious reason.
lo
Let's see, bring up dev tools.
Hit the network tab and see if anything fails to fetch and then check the console for error
On Flow its quiet
On AI Studio how am I supposed to see the logs in 0.5 seconds
ℹ️ confirmed logging out and log on didn't fix anything
The logs remain persistent between reloads
myaccount.google.com/age-verification
It could never be because I'm logged on with the wrong account... because there's 1.
Double check your pro account is logged in
Yes I even tried in incognito a second ago
Incognito usually wont allow you
lo ok
Is your payment info verified and your age?
Also no VPN or proxy
Could also check families.google.com and make sure you're not restricted.
Are you on windows on linux?
Or Mac lol
You're not telling that flushdns two days ago was the cause for this 😅
alright
Also, toggle off all extensions, something is blocking the generation from running
Flushdns didn't affect anything
Then refresh the page
hold on
This thing is so quikc it won't give me the chance to refresh
Finished. No luck
Same error log as before
You can refresh from the network tab, clear it, top left, circle with line through it, like stop.
Then it'll have refresh in the middle, or you can Ctrl + F5 inside of dev tools
https://ai.google.dev/gemini-api/docs/available-regions
Does it show you ERR_BLOCKED_BY_CLIENT on your side with DevTools or is that just me?
Wow
It looks so plain on image, as if I don't have a Pro account
Yeah that's weird, I have nonprofit access to things, so I'm unfamiliar with the subscription service
No uBlock or anything like that on lmfao, sorry I know I already asked
No, turned off every single extension when you asked me to 😊
Did you change any flags recently?
Not at all
I almost never touch flags.
The most recent I can think of: disabling Edge window borders
You know what, I appreciate your help @proven musk but I'm gonna call it a night
Nah, it's almost like a CORS policy
Let me try and replicate it, you could try to curl the URL and check the headers that way.
I notice a few other peeps #flow-general・🌊 encounter related issues
What was curl again 🫠
Um, it's a networking tool used for data transfer and such
But you can throw some flags on it and get a nice print out
Ah I see
curl -v
Speaking of print out, there's this redirect
https://aistudio.google.com/welcome
Followed by any server address
Bruh even this directly throws me to the help page, which we don't want
I tried with curl -v https://aistudio.google.com/
curl -v -H "Origin: http://another-domain.com" https://aistudio.google.com/prompts/new_chat
Pick any other domain you'd like
What should I look for at dem headers?
Send em to me haha
I wasn't sure how to use this
Tbh I used an online curl tool because I'm not on Linux
I sent you a dm
Are you in unsupported region 🤔?
No
He's used it before, the header is a pure account authorization error though
hey guys, im in france and i cannot use veo 3, im really upset & frustated bout it
i feel like i've been banned for no reason
Hm and I'm not even using Gemini for 5 months already
ffs google...
Meaning to say it shouldn't be a payment related issue
banning anyone for no reason
The only thing I can think of Tobie, is to switch accounts, try for the auth error again. It's highly unlikely to be the same.
run an @gmail.com email
Let me se if that worx
google is making me hating ai cuz of their shtty bugs
Are you apart of an organization / workspace?
@remote bridge you have an active Pro sub?
yup, trial
Are you kidding me
Are you sure your IPv4 routes back to France?
yup
Did it work? ROFL
im in france since im kid, idk why they woud ban me or smth
but i feel like vpn messed up
Oh well check, see where it's sticking you geographically.
Lol listen, I switched to my Youtube account (where I manage Youtube) and it allows me to access Flow with 100 credits.
Then I switched back to the Pro one and it goes back to 🤖 It looks like you don't have access to Flow 🤖
france
just checked rn
Ok, hmm. I'd try your cache.
already done
Google AI is so stupid it reminds me of that yellow robot cooking meme
didnt try to clear cookies tho
Lol, they have a ton going on. If you're apart of a workspace you'll need to make sure the permissions are still set.
Cookies will handle your session token. Worth a shot.
Not you @remote bridge
ok mb
dw
btw apparently my problem is common
i checked up a video on youtube
hope it fix
I'll keep that in mind to try tomorrow, thanks
Yeah you can also check your dev tools, the network tab and then the console for any errors or failed fetches.
@weary galleon You off for now bud?
Yes it's night
Alright, well I'm going to go pick up some pizza. I'll check here when I get back for you @remote bridge
There should be a cookies and data list (to clear) on Edge as well. I'm used to Chrome
ok ok
No problem, gn man!
imagine when the world becomes like detroit becomes human game, i want my android
Whatever it is just drop it
@proven musk i switched account & feel like its an account issue
Who tf do you assume looks at this channel the YouTube CEO? 😆
what is ai age estimation?
You redeemed the 25$ gift card to purchase some product or acquire a service
btw google ai is saying all my accounts aren't eligible
why google isnt fixing all issues? they must have time to do so
That depends normally its between 12 and 14
i feel like im having age issue with google ai
i hate their strict rules
im major so why do they care so much about it
Strict? Compared with?
like i tried to access veo 3 with many account nothing worked
Us, Europe?
im in europe
Access it trough flow
i dont like using flow, they censor anything, very annoying
i know vpn is a reason but like why just banning falsely
Because European union...
but didn't they said to give access?
We are not supposed to be using it at all 🙂
I don't see how VPN will help, the block is on the account
on every account i make? its weird
When we create an account it gets locked to a region
And each region as a different plan
anyway i dont have energy anymore to use ai, me who needed money to live with help of ai i cant
its lose of hope
Well you are in Europe most countries will pay better for a minimum wage than anything you will do as online freelancer
im trying to make a cool and menancing wallpaper to use on my cellphone with devil jin, lol the ai block, its because of the attack prompt?
also i feel like they fixed the vpn method
i dont wanna wait itll took 3 freaking years dear god
i hate europe so much
Not sure I got the regular Gemini ai subscription, a bunch of ai credits but never use it
https://myaccount.google.com/age-verification?pli=1&utm_source=p0
You’ve already verified your age. Thank you for confirming that you’re old enough to use certain Google services.
Wasn't for you haha
Kling ai, runway, sora and a bunch of others
Perhaps you should request a refund 😅..
Is there another way I can use Veo 2 generations for free since I cant use Google AI Studio
YouTube app offers unlimited Veo³ right now
That has image to video?
How do I record without capturing my phone mic
Happens to me too this
My google account is 8 years old I’m 23 and live in a region where flow is available yet I can’t use it
Why use camera 🤔?
I mean how do I do it
Don't allow the mic, just the camera.
App settings
Also Michael I can try and help you through the authentication / errors preventing you from using the service
explain
Its not the authentication errors. The issue is Google AI Studios 0/10 Generations hasnt reset
Oh sorry, misunderstood.
I didnt even mentions minors/kids whatsoever 
Hell
I asked for a text based reply too not even a damn image 
Im def on a list now. Thanks Gems. 
This must be a newer or more sensitive thing. I tried to make a silly picture for my aunt (she's babysitting my cousin and wanted to send the parents something silly) and it refused.
RIP
DUCK DUCK
Make sure update to latest version
What's everyone doing?
hi, is anyone using veo3 through vertex ai? It seems like an option for duration 4, 6 seconds were added but does not seem to work 🙁 it keeps giving me the video length of 8 when I set the duration to 4 or 6
😆
Are you a Whisk subscriber?
@vast barn
Are you a Whisk subscriber?
What IS the problem with NanoBanana? It's completely useless.
These are images I made on Google AI Studio itself months ago, when it was still bad at generating pictures.
I put them in Gemini and asked to make an hd anime screenshot of this cyberpunk mad hatter.
It refused because it violates its policy.
Despite this being my own original character that was made with Google itself.
And that's just one example. It tends to refuse a good 80% of my prompts, making it pretty..... useless.
I then asked a fanart of league of legends, and it said it cannot do copyrighted characters. GPT can.
I'll be honest...... it's unusuable
yes free month subscription
Ok, No, i want a subscribtion person
what do you mean?
Sorry, Manual error🙂
GOOD MORNING FOOLS
Are you a Whisk subscriber?
I have everything, what's up
Where
Nice😁 , This is what I was looking for, I will send 🙂 you some of my created images for you to turn into a video🖼️🔄 ⏯️
i'm struggling to see how those would violate the content policy. The one on the right, maybe it thinks he has some kind of violent head injury bc the top of his head is oddly shaped? The one on the left...has his tongue out? Seems really odd. Nano Banana is a great tool but the restrictions are rather much imo. Forget "It blocks PG-13 content that would be permissible on mainstream television", I'll often have perfectly G rated material get blocked seemingly just because the app interpeted the camera angle, facial expression, or body language the wrong way (especially if there's a female character involved)
It didn't even tell me what was wrong with it. It's ridiculous!
I find that frustrating as well, often I'm not even sure what the issue is I need to fix (once in a while it turns out there was no issue at all, the app was just blocking a particular output I guess because it was too glitchy or something). Honestly NB is a perfect example of where AI is at these days, where the technology itself is getting very high level & the main limiting factor is companies putting massive artificial restrictions on it
I agree with you, I've noticed this too, the struggle with errors, is caused by bans for rights violations.
Could be it associates the term "cyberpunk" with the video game
I was unable to go, even though I wanted to.
What?
Is there something weird I said?
@edgy urchin "Ok, No, i want a subscribtion person" what does that mean?
Someone with an active subscription to the platform.
maybe you should ask nicely? this is more like a command 😀
I don't believe he's American, it's his translation.
yeah probably. I'm a bit itchy from guys like this sorry
No need to apologize, I'm sure people demanding things isn't a pleasurable experience.
I am totally willing to share but ppl need to be polite 🤗
If you get upset, tell me not to talk to you, so I don't make mistakes with you
that's not what is about. missing the point @edgy urchin
At least the man is understanding, and also understands the way of speaking, he is a conscious human being.
yes. Let's keep it at that 😁
Bummer @final granite 22 year old X account suspended. Nice YT though and artsieworks
Tnx! yeah X is not so much my thing anymore 🤗
Everything that reeks of Musk I abhor
I have been out of the AI loop for about a year. Genning images on a friend's private server but no animation. Need to get back in the saddle with all new Toys ⭐
@proven musk Looks like you're a pro
Hahaha, not with art.
I run a nonprofit, so I deal in several modalities, leading in most.
public and private sectors
You just had to prompt better 😅
and what are those?
Oh you're curious to know what we do at ORDL?
Not sure if I am allowed to like, do that, but for instance I have several departments, from agriculture, healthcare, government, to artificial intelligence, data science, pragmatic engineering, etc.
We literally, do everything.
Right at this moment, I am actually upgrading the server infrastructure that hosts my site, encrypted communications, satellite, etc.
No RAID today.
interesting, and why are you here on this chat?
I'm actually onboarding Google partnership/collaboration.
Plus I love to help
Teach
Learn, all things.
@digital kelp
difficulty to talk now
I hit all 5 of you at once, RIP. @mellow citrus
uggggh
?
I thought that but just to be sure. I'm Dutch
Nice, a dutchess.
please @ mods next time!
yeah me too sensory overload ‼️
You said it, @final granite .
yeah no. now it says it generated the image while it didn't generate anything. No, you're not supposed to wrestle with Gemini and hope it understands a simple concept.
STILL haven't gotten it to do the image.
"for my own safety and wellbeing"
@lofty stone Here.
where do you work
Open Research and Development Laboratories, partnered with Red Hat Inc. IBM, Intel a few others.
That's exactly the point to prompt better, not to trigger safety keyword filters and let the AI do what they supposed to do .
I don't need to tiptoe around prompts when I use gpt.
So, how did you get it to work?
Gpt just is worst than Gemini on safety and copyright topics. I'm a gpt subscriber.
I ran cloth swap prompt
you have to be kidding me, lol
gpt can make league of legends, dc comics, etc. without problems
I haven't managed to make ONE fanart with gemini
Try Kermit the Frog
I don't want kermit, I want, say, darius from league of legends
Show me if you can generate 1 Kermit the Frog from chatgpt
let's see
does anyone know how to fix this?
@left trail
I'm sorry but Gemini is just way too useless compared to GPT
it'll censor anything and everything
Ok, I guess you are better with gpt 😅.
no, Gemini is just bad
and even if we ignore already existing characters, it'll refuse to do anything
Just found out they removed Imagen ⁴ in Gemini app image generation.
Now every image generation with or without nano 🍌 selected are all handled by Nano 🍌.
Do you guys mean by gemini a whisk?
Because nanotechnology still wins above everything.
Gpt has it's own pros and cons, but overall Gemini still shines slightly better. Heck most of you haven't scraped the canvas feature fully fo make 1 shot apps or games in under 1 minute
Its ok. Everyone had their flavors fruit, whether it's 🍌 or 🍎😅.
I'm glad I still had access to those Imagen ³,⁴, Ultra
Yeah images are cool..but we all know the future is worlds
Hey guys just wanted to know about Whisk in Google Ai pro plan, how many image to video animations are allowed in the proplan
Not sure I haven't used whisk in awhile
You get 1k AI credit per month, shared between on flow, whisk .
hello, i am just playing around with https://aistudio.google.com . i told it to write a simple python app and it wrote react app. i said this isn't python and it told me "You are absolutely right. My apologies for the misunderstanding. I have replaced the web application with the Python script you originally requested," but it didnt . is this even able to generate python code or am i doing it wrong ?
And one image to video takes how many credits?
Lol, did you pick an image of Darius, and tell it to make another image of it?
because that's cheating
I did both...it's not cheating if it still available
ahahah, gotcha
gpt doesn't need reference images, it just makes the characters.
Has anyone gotten rate-limited using gemini-2.5-flash-image-preview, immediately after hitting use via API.
I haven't use it all and immediately get the "Rate Limit hit" error...
about studio ai temperature how much it influence the image edits?
@latent dagger Want to know a good tip for finding the ranges that are tune for yourself and/or the project?
speak
Alright, for me I use names, like titles for a project for example. Let's say you have an idea in your head for a name, meaning, background, definition, origins, language, etc. You non verbatim describe what you're looking for and that it's a project title. Starting at base ranges for each tunable value, and incrementing or decrementing each iteration. With AI Studio, you can delete the response, leave the Research and Development (the "thoughts"), and run it back and check the differences it makes. You can also remove the entire session to keep it completely fresh and reseeded each time to get a good tune then fine tune it further by keeping the thoughts.
i understood nothing, what it has to do with the temperature in ai studio?
Near 0 value 100% adhesive to prompt, 1+ value lead to super creative outcomes....
May I ask where could I apply to use Genie3 for testing purposes? I am a 3DGS art creator. Thanks a lot!
can gemini even draw anything?
I asked for a photo of this medieval woman talking to this medieval peasant boy. it refused because it was.... against the policy?
it really takes skill to be this useless, lol
is there a way to use this image feature WITHOUT gemini's idiocy? maybe it'll work?
There's definitely certain keywords that seem to trigger the filter (anything sexually suggestive, anything suggesting violence, most terms suggesting youth, copyright stuff), but there also appears to be an image filter that will block images with a totally innocuous prompt if something looks "off" (classic example water or sweat in the wrong lighting that makes the AI interpret it as blood)
I'm looking for an AI video to video tool where I can type in a prompt say "Ice Age" and then it converts the video with the characters and background into an ice age type environment and maybe the characters look like cavemen while keeping the same movements and audio as the original clip. Does anyone know one?
what prompt did you use
reminder, general is not the place to ask questions about products as we have #flow-general・🌊 #whisk-general・💭 and #jules-general・🦑 where your product specific questions can be asked. Thank you!
i liked making images demon possessed, the ai started to block my prompts these days
Should I buy pixel 9 or 10 or wait for pixel 10A ?
I just got a Pixel 10 but I had a Pixel 2 before that, I tend to hold onto my phones for a while so the upgrade feels like a bigger deal
Nice but will there be a pixel 10 A next summer ?
Do I wait
hmm good question. The main deciding factor for me was that the charger port on the old one had broke one time too many. if not for that i could have held out longer
I used Nano Banana for the first time yesterday, and I was quite shocked that it doesn't generate images when I prompted with non-english. I've also heard there are many cases that Gemini responds with only text, but no image.
Is it known limitation? If so, I want to see the official guideline from Google (e.g., Try xml-like prompt with only English). Any help?
i'm not sure about the language limitations, but i have encountered the only text results before even when i used a clear english language prompt. I think it's just a glitch
Oh, thx for sharing your experience.
In my short experiment, I see some patterns rather than a glitch... 🤔
- Tried with long Korean text 5 times, all failed (with Gemini / Google AI Studio)
- Tried with short English text 2 times, all succeeded (non-xml)
- But this also might fail as you said
- Tried with short Korean text 2 times, all failed
My pal said he always prompts in xml format in English, which gives him 95% success rate.
is there any news abou the Google App for Windows Desktop app from Labs? I received news about it, but I can't find anything about it in here, or in the official site... is it still to be launched? is it restricted to users in English language?
You can download it
having a structured format definitely improves success - whether it's XML, JSON, or your own invented structure - as long as you are explicit and organized with your instructions, the prompt should work!
There are times when random glitches happen though, and in those cases just open a new chat and start over.
As for the language - it's possible that it's failing in part due to the model having less data in Korean vs English. So smaller data pool results in more errors
FYI, my tests were all in new sessions. Haha
Considering data pool, I've been using Korean (for daily usage) since Gemini 2.5 Pro, because I saw it automatically, internally thinks in English. I was too sticked to it.
I just realized that Nano Banana is not a thinking model, thus I should go back to the old habit (using English prompt).
I was looking for official guide or something, but it was just typical prompt engineering. lol
Thx for your help!
Plug in a translator module in prompt, so you can generate with any language input 🤔
Haha what I wanted to know was the underlying reason of the behavior, not the solution. But thx for the comment anyway!
The underlying reason is they built nano 🍌 as a English prompt reasoning LLM. Instead multi language reasoning LLM.
All of us sooner or later.
i combined these two photos and the result was the first image
good morning
Morning!
Morning!
hi guys
Hello
Good morning everyone
looking for free ai tool
Let me find the link, one second. Good morning! 🌼
Can you explain what is an api? How to use that? I see that often...
😭😭😭😭
An API - Application Programming Interface
It's like a set of rules and protocols that allows different software to communicate
Like a messenger taking one request from one to another and returning a response.
oof.
ok and can you use it for a bot?
I saw an interesting video model that offer free api
Most definitely
ok I'll ask more later. Going to swim in wonderful warm water now ⭐
🏵️
Hello 🙁
what did i just get??
Hey everyone 
why cant i get in flow it says flow television?\
Google AI Studio / Gemini API availability in Réunion Island (France, EU)
Hello Google team and community,
I'm writing to raise an issue about the availability of Google AI Studio and the Gemini API. As a developer based in Réunion Island, a French department and a region of the European Union, I am currently blocked from accessing these services. The error message I receive says, "This service is not available in your country."
This is a significant barrier for our local tech community. We are unable to access the same tools as our counterparts in mainland France.
I have already posted about this on the [Google Developers Forum] https://discuss.ai.google.dev/t/subject-google-ai-studio-gemini-api-unavailable-in-reunion-island-france-eu/106159) and on LinkedIn. I believe it's important to also bring this to your attention here on Discord, as this community is very active.
Is there a specific reason why Réunion Island is not included in the list of eligible regions? Could this be a simple oversight that could be corrected?
Thank you for your time and consideration.

I found this new experiment in labs.google.com website.
did anyone try it? How is it different from notebooklm?
The immersive view kinda looks cool and new 😃
im gonna design logo, anyone can recommend best logo design tool?
yo guys
you can make use of https://www.canva.com/
I think gpt will handle this better
yes sure
Yo
gpt handles almost everything better, unfortunately
Yes, 👍🏻.
Anyone know how to make new viral white cat ai stories
Can someone help me pick out my new pfp
Use story 💎
I have a problem with script.
Tell Gemini to solve it
How I can generate scripts like that and prompts. I tried with chatgpt and Gemini but It didn't worked
They generate a story completey different from the niche
Maybe your script too complex for AI to follow
What kind of video you made?
peeks inside
lmao.
I would assume the intro?
Imperial March yeah
I would say the same
I don't know why is Georgia profile picture is now an otter...
does anyone have a funny or cool story about computers or phones or old technology or new technology
it can be 1 sentence
yah bro
My little cousin thought the floppy disk icon was just a ‘save emoji’ he didn’t know it was a real thing 😭💾
haha, i guess that’s an easy mistake if u have never seen a floppy disk
WHISK DOWN????
well this channel aint rlly the issue report spot
Why is English now the only supported language for video generation? Previously, the flow generated voices in other languages just fine...
Thanks, where is the appropriate channel ?
I would go to gemini api channel in google developer community for ur query
.gg/google-dev-community for the discord
yoo has anyone got a prompt to stop the black boxs. i always want it full screen
Guys when did the flashcards and quiz get added to NotebookLM? They're so cool!
Is there a good prompt enhancer ai for flow?
Can I rejoin Google Workspace labs? Accidentally I opted out from labs.
reminder, general is not the place to ask questions about products as we have #flow-general・🌊 #whisk-general・💭 and #jules-general・🦑 where your product specific questions can be asked. Thank you
Can I weight prompts In Whisk and Flow
It would Maybe a good idea to have a prompting topic here on this server?
yes, flowgpt and promptperfect are popular ai tools, i think
Yo guys
What's a better tool to create animation of an illustration ensuring the character of the illustration is retained. I tried flow and whisk, they both give me whole another character and illustration style.
You wanna illustrate or you want to generate a character?
Is there anyone at google labs whom we can reach out to for feature input/requests?
I want to animate my illustration.
Try out cling AI
kling now collaborates with Higgsfield (Kazakhstan alga xD), so from commercial solutions it is SOTA
The output I've seen on that is mostly 3Dish. Let me explore
Yeah and keep me posted
Interesting
Umm..... today's September 23rd, wheres my credits?
Also <@&1366831844502274180> can we kick @worthy wedge please, he keeps tagging
Question you can create any AI app like create an agent like a sales generator or a lead generator rather or no
wdym
i'd ask the team directly in #mixboard・🧑🎨 🙂
hi. mixboard is too busy. i got 403 "https://labs.google.com/mixboard/projects"
hey, thanks for sharing! I'll fwd this to #mixboard・🧑🎨 where we're discussing with the team 🙂 see ya there!
mixboard seems pretty cool
I think they put a typo it should say AUS-only 😛😘
anyone got any tips for making the clips flow more naturally together with FLOW/VEO? I also have access to other video editing software like premier but i am a novice with that too
mixboard looks cool ❤️
have you tried using the last frame of your videos and then using frame to video from there?
so.... how would i capture the last frame? can i do it inside flow or would i have to take it somewhere else and the grab that picture and then bring it back to flow?
oh, i think i see? there is a little slider inside of each clip in the scene builder with a +
@outer wagon Its 7:36PM EST and I still didnt get my credits
Yo 👋 curious what you all think , for YouTube growth, do you edit your videos (Veo3 / Fern style, product ads, captions, cuts) or just post them raw? I’ve seen polished edits boost watch time a lot, but many creators still go raw.
If anyone here wants to try out those styles for their channel, feel free to DM me , always down to collab. 🚀
Is there a way to get more options for veo 3? like top k and temp?
good morning
Waring image
#mixboard・🧑🎨 is in beta, U.S. only for now.
Hello
Yessir
Hello
How can it be the tools are in limited countries
The Mixboard is so cool, i really like it
mixboard looks cool, its exactly the type of tool i would like to use for visual brainstorming which ive been using others apps for to collate my nano banana images into, hopefully it's rolled out to UK soon!
Anyone getting a 403 error trying to access Mixboard?
Oh, I just read above it's US only for now :/
Mixboard really looks cool, wish I could try and test the things out
Where can I access the official google flow model veo 3?
Uhmmm hmmm, trying to post intro, prolly just blew through some tokens reiterating thrice or more, or, maybe not? Do I do it here?

Tried mixboard just now, I like the juggling, though I wish it were using the surface of like a micro$oft table or something lol
SOME HELP ??
Anyone here good with SEO
Is there a schedule for the mixboard worldwide launch? I reeeally want to try it out
There is a connection problem. What should I do?
Guys is it known when Google Opal will be available in Europe Germany?
thanks for flagging!!
No Worries 
hellooo i just discovered Flow! cant wait to explore more
hi everyone! seeing a lot of Mixboard chatter here 🙂 Mixboard is currently available in US-only public beta - stay tuned as Mixboard expands. you can keep up-to-date by hanging out in the #mixboard・🧑🎨 channel or by snagging the newest Mixboard role on the Channels & Roles tab.
welcome! you can check out and share gens in #flow-videos・📹 for inspo 🙂
hella good ideas there wow
Hi georgie, did you get a response on that?
Hey, does anyone know why all my projects and previous creations have all dissapeared from flow/veo 3?
Is Google considering doing the same thing Perplexity did with Comet? Let Gemini control the entire browser?
I have all the essential skills of a blockchain developer, along with years of hands-on project experience.
I’d be happy to discuss this with anyone interested in development.
yep
That's great, I've tried Comet and it's crazy.
guys - why are we phasing out Veo 2 if Veo 3 can't do end frames, it can't do ingredients, and it can't do extend?
these are the most important features
is the google dc bot official

They showcased it in the Chrome AI updates video a few days ago AFAIK but I think it's not available yet
Bug: on editing already sent messages on AI Mode, the edited message gets sent automatically instead of editing the initial one and keeping it intact.
hi
holaa
hey
hi
Apparently, I can't fine tune a model with my own data in google ai studio and the different prompt modes have also disappeared.
Are the google team planning to bring those features back or is there any alternative to google ai studio(other than vertex ai).
hey guys sup
Was looking for this information, thanks
cool
good morning
Not sure this is the right place but google so
is there any resx or standard for dev setup? Like everytime I set up new project, Im missing basic things like setting up logging, metrics, Local DB, security compliance, Documentation. I want something like list of topics I should or optionally setup to be in par with industry standard.
I tried google and GPTs and its mostly miss something and GPT delve deep into specific topic or into the keyword provided instead of listing out things
Hey
What is it used for?
dont download im hacked
Hi all
no
Here are some steps you can take to ensure acount integrity moving forward https://support.discord.com/hc/en-us/articles/24160905919511-My-Discord-Account-was-Hacked-or-Compromised
(it seems to me you've regained account ownership already, but just remember to check-in!)
i think my discord suth token is comprimised, so i never lost access to the account
Hey, anyone know why veo 3 is not working in flow?
but thanks @potent ibex
np, stay safe out there - change your password to reset the token! :)
if possible, let me help you, what kinda issue did you face?
hi i used veo3 once , but the interface is so changed and theres a bunch of new things that i dont understand i was trying to generate a video for my social service and i got images (i liked them but i need a video) is there a way i can get Gemini, Google,Veo or Flow cause atp idk what is what 😭 to make a video with those imageS? and which model should i use
this is what it generated
which one can generate me a video from images i attach
i think you should use Veo (google deepmind's video model) for generating videos, while Gemini is text/image focused and imagen/flow handle images
so veo is the right choice to turn your images into a video
do you have a link directly to Veo cause im lost frfr
https://deepmind.google/models/veo/ is it this one?
Ight thank you so much Moti
you are welcome
Hey👽🪬
You can talk with gemini support and can mail them.
how?
can you give me the gemini support mail?
Huh?!? It's working fine for me.
I am getting message please use Veo 2 fast
You'll get that message if Veo3 doesn't support a particular feature yet.
How can test google mixboard
Ohh thanks for explaining 😃
#mixboard・🧑🎨 is currently in beta, available in the U.S. only (at this time)
hi I am new on Whisk, can any one tell me why Whisk give a message "We do not allow the input of Minor...." and does not create Image
You can't have minor image or prompt with minor in it. It's under Google strict safety guidelines instant rejection on prompts or image like that.
hii
hi all!
Got a quick question. Is it cheaper to Upgrade to AI pro with a 16% saving? Or just going for the Google AI pro with one free month? I already have a google drive account. And also is there any difference in the two? They list the same things...
Free 1 month, 11 months remaining cost $219
$199 annual plan =$16.66
Vs $19.99 monthly cost
The free trial for a month is huge, THANKS for letting us experiment with flow before committing to a subscription. Super rare in this space. 🔥🔥
Yeah I did the math also, I just ask in case there was anything not included in these two packages.. Thanks..
I can't seem to get access to the mixboard, any idea's why?
Only available for USA region atm.
lol what did i just watch
Below is a comparative table based on my experience as a paid user of Google's AI services (Gemini) and OpenAI's (GPT).
https://gemini-vs-gpt.netlify.app/
What sort of daily limit does mixboard have anyways I really like how it seems like such a simple thing but not having to make 15 gens yourself being able to just visually immerse yourself in ideas is pretty big.
Very easy to miss the point of this until you see that difference for sure
My favorite labs is learning about
It's really great at making a engaging thing on practically any topic and the nodes that make you think critically are really nice
Hey, when is mixboard coming to Canada? Getting a nice 404 error.
#mixboard・🧑🎨 You will get your answers in the correct channel by Google staff.
I dont know why but gemini is censoring the word "indian"
Hello to everyone,
hey does anyone how to create an ai generated video in 4k?
I have been able to create good quality videos but I need 4k to upscale it and play in a big screeen
what was the context of the chat
wasnt able to reproduce the issue
can i get some free credits here?
Good people embrace innovations & skills in life, better people prepares the coming future, but best people are transformed within and live unselfish lives while connecting, and being compassion with others struggle. Let us be one of this!!!
What can u do with AI pro for 3 months that I got for free, I made like 3 videos but then ran out of credits. Kind of a bad gift
I asked it create an indian women seated on the chair image i provided it flag error , and when i asked about it , says it might be confused i am refering to native americans