Cloudron makes it easy to run web apps like WordPress, Nextcloud, GitLab on your server. Find out more or install now.


Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Bookmarks
  • Search
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Brand Logo

Cloudron Forum

Apps | Demo | Docs | Install
  1. Cloudron Forum
  2. App Wishlist
  3. ChatPad on Cloudron - ChatGPT Artificial Intelligence Interface

ChatPad on Cloudron - ChatGPT Artificial Intelligence Interface

Scheduled Pinned Locked Moved App Wishlist
chatpadchatgptartificialintel
26 Posts 5 Posters 3.5k Views 10 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • L LoudLemur

    Premium quality UI for ChatGPT
    Web App & Desktop App

    Recently, there has been a surge of UIs for ChatGPT, making it the new "to-do app" that everyone wants to try their hand at. Chatpad sets itself apart with a broader vision - to become the ultimate interface for ChatGPT users.

    ⚡️ Free and open source
    This app is provided for free and the source code is available on GitHub.

    🔒 Privacy focused
    No tracking, no cookies, no bullshit. All your data is stored locally.

    ✨ Best experience
    Crafted with love and care to provide the best experience possible.

    AGPL 3.0
    https://chatpad.ai/
    https://feedback.chatpad.ai/
    There is a Docker

    timconsidineT Online
    timconsidineT Online
    timconsidine
    App Dev
    wrote on last edited by
    #9

    @LoudLemur I noticed there is a Desktop version of the app.
    Saves building a Cloudron app !
    But will look at that.

    robiR 1 Reply Last reply
    0
    • timconsidineT timconsidine

      @LoudLemur I noticed there is a Desktop version of the app.
      Saves building a Cloudron app !
      But will look at that.

      robiR Offline
      robiR Offline
      robi
      wrote on last edited by
      #10

      @timconsidine does it allow to connect to locally running GPTs?

      Conscious tech

      timconsidineT 1 Reply Last reply
      0
      • robiR robi

        @timconsidine does it allow to connect to locally running GPTs?

        timconsidineT Online
        timconsidineT Online
        timconsidine
        App Dev
        wrote on last edited by
        #11

        @robi hmmm, don't see that functionality

        robiR 1 Reply Last reply
        0
        • timconsidineT timconsidine

          @robi hmmm, don't see that functionality

          robiR Offline
          robiR Offline
          robi
          wrote on last edited by
          #12

          @timconsidine I added that idea over at Reworkd.ai's https://github.com/reworkd/AgentGPT/issues/322

          Conscious tech

          1 Reply Last reply
          2
          • KubernetesK Offline
            KubernetesK Offline
            Kubernetes
            App Dev
            wrote on last edited by
            #13

            I am working on a package for ChatPad... (it's already working on my Cloudron, just need to push it to github)

            1 Reply Last reply
            1
            • KubernetesK Offline
              KubernetesK Offline
              Kubernetes
              App Dev
              wrote on last edited by Kubernetes
              #14

              Done, the package is ready and running fine on my Cloudron Instance.
              The package can be found in Gitlab

              As this is my second package, and I didn't get yet Feedback for my first package, I am asking for feedback, if I did that packaging the right way 🙂

              timconsidineT L 2 Replies Last reply
              4
              • KubernetesK Kubernetes

                Done, the package is ready and running fine on my Cloudron Instance.
                The package can be found in Gitlab

                As this is my second package, and I didn't get yet Feedback for my first package, I am asking for feedback, if I did that packaging the right way 🙂

                timconsidineT Online
                timconsidineT Online
                timconsidine
                App Dev
                wrote on last edited by
                #15

                @Kubernetes said in ChatPad on Cloudron - ChatGPT Artificial Intelligence Interface:

                I am asking for feedback

                overall format looks good, but for an 'adopted' Cloudron app, Dockerfile FROM should be the Cloudron base image
                FROM cloudron/base:4.0.0@sha256:31b195ed0662bdb06a6e8a5ddbedb6f191ce92e8bee04c03fb02dd4e9d0286df

                and then do something to pull in the code from the source repo (but there are other ways)

                ADD https://github.com/CorentinTh/it-tools/archive/refs/heads/main.tar.gz /app/code
                RUN tar -xzf main.tar.gz && rm main.tar.gz && mv it-tools-main/* . && rm -r it-tools-main
                

                But maybe others with more experience and authority can advise otherwise.

                For a custom app which is only to be used by author or small group, if it works, it works.
                For a custom app which might be adopted with refinements into the App Store, I think it is better to take the above approach.

                KubernetesK 1 Reply Last reply
                1
                • KubernetesK Kubernetes

                  Done, the package is ready and running fine on my Cloudron Instance.
                  The package can be found in Gitlab

                  As this is my second package, and I didn't get yet Feedback for my first package, I am asking for feedback, if I did that packaging the right way 🙂

                  L Offline
                  L Offline
                  LoudLemur
                  wrote on last edited by
                  #16

                  @Kubernetes said in ChatPad on Cloudron - ChatGPT Artificial Intelligence Interface:

                  Done, the package is ready and running fine on my Cloudron Instance.
                  The package can be found in Github

                  As this is my second package, and I didn't get yet Feedback for my first package, I am asking for feedback, if I did that packaging the right way 🙂

                  Thank you for doing that.

                  1 Reply Last reply
                  0
                  • timconsidineT timconsidine

                    @Kubernetes said in ChatPad on Cloudron - ChatGPT Artificial Intelligence Interface:

                    I am asking for feedback

                    overall format looks good, but for an 'adopted' Cloudron app, Dockerfile FROM should be the Cloudron base image
                    FROM cloudron/base:4.0.0@sha256:31b195ed0662bdb06a6e8a5ddbedb6f191ce92e8bee04c03fb02dd4e9d0286df

                    and then do something to pull in the code from the source repo (but there are other ways)

                    ADD https://github.com/CorentinTh/it-tools/archive/refs/heads/main.tar.gz /app/code
                    RUN tar -xzf main.tar.gz && rm main.tar.gz && mv it-tools-main/* . && rm -r it-tools-main
                    

                    But maybe others with more experience and authority can advise otherwise.

                    For a custom app which is only to be used by author or small group, if it works, it works.
                    For a custom app which might be adopted with refinements into the App Store, I think it is better to take the above approach.

                    KubernetesK Offline
                    KubernetesK Offline
                    Kubernetes
                    App Dev
                    wrote on last edited by
                    #17

                    @timconsidine Thanks for the feedback. I didn't notice that I should use the cloudron base image. I will try to it in the work I already have done and update then.

                    1 Reply Last reply
                    0
                    • KubernetesK Offline
                      KubernetesK Offline
                      Kubernetes
                      App Dev
                      wrote on last edited by
                      #18

                      Okay, I have done it. The package is ready from my point of view and could be published in Cloudron App Store.

                      Thanks to all for the feedback and support.

                      timconsidineT 1 Reply Last reply
                      2
                      • timconsidineT Online
                        timconsidineT Online
                        timconsidine
                        App Dev
                        wrote on last edited by timconsidine
                        #19

                        Will take a look later. Thinking/hoping it will be better than my self-package of the other one (chatbot-ui).

                        I don't suppose you feel up to the challenge of packaging Flowise ?
                        https://forum.cloudron.io/topic/9130/flowise-ui-for-langchain?_=1685224667920

                        Working with regular ChatGPT, even V4, the knowledge cut-off date is sometimes problematic or time-wasting.
                        Being able to include more current resources (like developer updated docs) is likely to be super helpful.
                        or so I hope

                        KubernetesK 1 Reply Last reply
                        2
                        • timconsidineT timconsidine

                          Will take a look later. Thinking/hoping it will be better than my self-package of the other one (chatbot-ui).

                          I don't suppose you feel up to the challenge of packaging Flowise ?
                          https://forum.cloudron.io/topic/9130/flowise-ui-for-langchain?_=1685224667920

                          Working with regular ChatGPT, even V4, the knowledge cut-off date is sometimes problematic or time-wasting.
                          Being able to include more current resources (like developer updated docs) is likely to be super helpful.
                          or so I hope

                          KubernetesK Offline
                          KubernetesK Offline
                          Kubernetes
                          App Dev
                          wrote on last edited by
                          #20

                          @timconsidine Interesting tool, I tried, but first attempts did fail because of the read-only filesystem in Cloudron...

                          timconsidineT 2 Replies Last reply
                          2
                          • KubernetesK Kubernetes

                            @timconsidine Interesting tool, I tried, but first attempts did fail because of the read-only filesystem in Cloudron...

                            timconsidineT Online
                            timconsidineT Online
                            timconsidine
                            App Dev
                            wrote on last edited by
                            #21

                            @Kubernetes I am trying also but running into errors
                            Will try again later

                            1 Reply Last reply
                            0
                            • KubernetesK Kubernetes

                              @timconsidine Interesting tool, I tried, but first attempts did fail because of the read-only filesystem in Cloudron...

                              timconsidineT Online
                              timconsidineT Online
                              timconsidine
                              App Dev
                              wrote on last edited by timconsidine
                              #22

                              @Kubernetes said in ChatPad on Cloudron - ChatGPT Artificial Intelligence Interface:

                              because of the read-only filesystem in Cloudron

                              Shhhh, don't tell @girish or @nebulon but sometimes I try to "bypass" this issue to get a proof of concept by installing to /app/data
                              Just to see it if builds and works.
                              Then think about separation of code and data

                              1 Reply Last reply
                              2
                              • KubernetesK Kubernetes

                                Okay, I have done it. The package is ready from my point of view and could be published in Cloudron App Store.

                                Thanks to all for the feedback and support.

                                timconsidineT Online
                                timconsidineT Online
                                timconsidine
                                App Dev
                                wrote on last edited by
                                #23

                                @Kubernetes said in ChatPad on Cloudron - ChatGPT Artificial Intelligence Interface:

                                Okay, I have done it. The package is ready from my point of view and could be published in Cloudron App Store.

                                Well done 🍾
                                I have a built the package, it installed smoothly and runs nicely.
                                Thank you for your work on this. I may stop using the desktop version.

                                The Docker image is large : 5Gb. Surprised me (but heck, what do I know).
                                I wonder if there is a way to reduce the size of the image during the build process.
                                But I am no expert in Docker, so not sure.
                                I didn't see anything obvious in the Docker file.
                                Maybe a multi-stage build ? But I don't much about that.

                                1 Reply Last reply
                                2
                                • KubernetesK Offline
                                  KubernetesK Offline
                                  Kubernetes
                                  App Dev
                                  wrote on last edited by Kubernetes
                                  #24

                                  I moved the repo to the Cloudron Gitlab

                                  Regarding size, 5Gb is really big. But maybe someone with experience in shrinking the Docker images can give some advise.

                                  1 Reply Last reply
                                  2
                                  • KubernetesK Offline
                                    KubernetesK Offline
                                    Kubernetes
                                    App Dev
                                    wrote on last edited by
                                    #25

                                    I have updated the Dockerfile to remove unrequired software and use of multi stage for build and production.

                                    timconsidineT 1 Reply Last reply
                                    4
                                    • KubernetesK Kubernetes

                                      I have updated the Dockerfile to remove unrequired software and use of multi stage for build and production.

                                      timconsidineT Online
                                      timconsidineT Online
                                      timconsidine
                                      App Dev
                                      wrote on last edited by
                                      #26

                                      @Kubernetes oooo ! Will take a look

                                      1 Reply Last reply
                                      0
                                      • L LoudLemur referenced this topic on
                                      Reply
                                      • Reply as topic
                                      Log in to reply
                                      • Oldest to Newest
                                      • Newest to Oldest
                                      • Most Votes


                                      • Login

                                      • Don't have an account? Register

                                      • Login or register to search.
                                      • First post
                                        Last post
                                      0
                                      • Categories
                                      • Recent
                                      • Tags
                                      • Popular
                                      • Bookmarks
                                      • Search