• Cr4yfish@lemmy.worldOP
    link
    fedilink
    arrow-up
    0
    ·
    2 days ago

    Is it for self-host ppl too?

    In theory not an issue. I use Supabase, which you can self host as well.

    You can also self host the Mistral Client, but not Gemini. However, I am planning to move away from Gemini towards a more open solution which would also support self hosting, or in-browser AI.

    I am looking for OIDC, S3 and PgSQL

    Since I use Supabase, it runs on PgSQL and Supabase Storage, which is just an Adapter to AWS S3 - or any S3, really. For Auth, I use Supabase Auth which uses OAuth 2.0, that’s the same as OIDC right?

    • grapemix@lemmy.ml
      link
      fedilink
      arrow-up
      0
      ·
      1 day ago

      Very cool. You can check out ollama for hosting local ai model.

      OIDC is an extension of OAuth2 that focuses on user authentication rather than user authorization. Once OIDC authenticates a user, it uses OAuth2 specifications to perform authorization.

      The easiest way to support oidc is thru using lib from your framework/language. All major language should already have oidc lib. Take a look for authelia which has pretty nice doc. We host lots of app and we don’t want to login hundred times for each apps. It’s nice to login once only and all apps play nice to each other ;)