Mathew Chan
Mathew Chan
> I'm having similar issue - 0d53919556f041ea831728258b4be8e0 > > This is the error i get: > > ``` > failed to connect to postgres: failed to connect to `host=aws-0-us-east-1.pooler.supabase.com user=postgres....
Just to add, i do notice that in the CLI, it doesn't seem to automatically pickup your password even if logged in, and I had to explicitly export my password...
I'm facing this issue as well.
Experiencing same issue as well, same setup as others above. Also get it if i run generateContent: ```ts const generationConfig = { temperature: 1, topP: 0.95, topK: 64, maxOutputTokens: 8192,...
I'm getting same issue here, did a fresh setup today. Developer account has been open for a month, so it's not on Apple's end waiting for approval. Followed the docs...
Same issue here. I don't think the JS client is returning anything, see bug I opened here: https://github.com/mistralai/client-js/issues/50
Was just strugging to implement this a few days ago, would love to see this added as well 👍
Thanks so much @david-plugge for your response. I've tried the 2nd method by initiating a lazySupabase client and then making a streaming promise call within one of my load functions,...
@david-plugge Here's my +layout.server.ts: ```ts import { PUBLIC_SUPABASE_URL, PUBLIC_SUPABASE_ANON_KEY } from '$env/static/public'; import { createClient } from '@supabase/supabase-js'; import { error } from '@sveltejs/kit'; import type { LayoutServerLoad } from...
@david-plugge It's not using Supabase in that API endpoint, and it does execute, however it breaks when it's trying to return the response from the API endpoint back to the...