Giter Club home page Giter Club logo

linguai's Introduction

Name

LinguaAI, a language processing and improvement assistant!

Description

This project integrates a Streamlit frontend with a FastAPI+LangChain+SqlAlchemy backend, leveraging AI services of either Ollama or OpenAI, each within their respective Docker containers, alongside a prospective PostgreSQL database.

This documentation is designed to provide a seamless development and deployment workflow for this application.

Prerequisites

Ensure you have Git, Docker, Docker Compose, installed on your machine. Python 3.10 and Poetry are optional for local setups but recommended for managing dependencies and running the application outside of Docker.

Setup

This section provides a step-by-step guide for getting started and setting up the project.

For both development and deployment, Docker Compose is used to orchestrate the application's services, enabling live code reloading for rapid development.

  1. Clone the project repository: git clone https://github.com/thekaveh/LinguAI.git && cd LinguAI

  2. Copy the vanilla .env.example file as .env

  3. If you intend to use OpenAI's LLMs, fill in the optional OPENAI_API_KEY environment variable entry in the .env file with your own OpenAI API key.

  4. If you intend to use Ollama's LLMs Modify the optional OLLAMA_MODELS environment variable entry in the .env to specify the models you expect to use via Ollama.

5.1. First choose the relevant docker-compose.yml file based on the information in the table below.

docker-compose-file-name environment Ollama Source Ollama processing
docker-compose.yml dev dockerized CPU
docker-compose.ollama-localhost.dev dev localhost depends
docker-compose.ollama-none.dev dev none N/A
docker-compose-gpu-nvidia.prod prod dockerized gpu/nvidia

5.2. Then run the following command to build and start the container services. This setup mounts your local code into the containers, enabling live reloading:

docker-compose -f {docker-compose-file-name} up --build

Please note that you can optionally start services in detached mode using docker-compose -f {docker-compose-file-name} up --build -d but you won't be able to see the live logs any longer.

  1. Accessing the Application

    • Streamlit frontend will be accessible at: http://localhost:{FRONTEND_PORT}
    • FastAPI backend (Swagger UI) at: http://localhost:{BACKEND_PORT}/docs
    • pgAdmin DB-dashboard will be accessible at: http://localhost:{DB_DASHBOARD_PORT}
  2. Optionally, Use VSCode's Remote Container extension to connect to and develop directly inside one of the backend or frontend containers. To do this, find the Remote Explorer from VSCode's tools pane on the left, select Dev Containers, locate either the linguai backend or linguai frontend running container, and then Attach in New Window

  3. To bring down the LinguAI services: docker-compose down --remove-orphans

  4. When you have db changes including schema or data changes, simply run the following command in your terminal to take a snapshot of the database and replace the current snapshot:

    • docker exec db sh ./scripts/db-snapshot.sh
  5. In order to make sure recent DB schema and data changes are reflected in your DB container, make sure you bring down the docker compose using the command below (with -v):

    • docker-compose down -v --remove-orphans

Running Unit Tests

(With the containers running) Frontend services: run docker exec -it frontend python -m pytest tests/ to run all frontend service tests For coverage: run docker exec -it frontend python -m pytest --cov=services tests/

Backend services: run docker exec -it backend python -m pytest app/tests/ to run all backend service tests For coverage: run docker exec -it backend python -m pytest --cov=app/services app/tests/

Code Changes

Thanks to Docker volumes that mount the code inside the containers, changes made to the codebase will automatically reflect in the running containers and will, in turn, show up on both the running frontend and backend services. Once happy with your changes, you can simply commit them to Git branch you're working on regardless of whether you applied the changes from inside the running containers or outside.

Production Deployment

For production, the application should be deployed with Docker, ensuring that the code is copied into the images rather than mounted.

For now the only supported and tested deployment scenario is to setup an EC2 instance, select the Ubuntu-Nvidia-PyTorch2 image, SSH into the newly deployed and running instance, and run the same environment setup steps as above before running the slightly modified docker compose command below:

docker-compose -f docker-compose-gpu-nvidia.prod.yml up --build

Dependency Management

This project uses Poetry for Python dependency management in both the frontend and backend. Here's how to manage those dependencies:

  1. Adding a Dependency:
    • Navigate to the respective directory (frontend or backend):
      cd frontend # or backend
    • Run Poetry to add a new dependency:
      poetry add <package-name>
    • This command updates pyproject.toml and poetry.lock. Commit these changes to your repository.

Please, note that you can also optionally attach to the running container and then run the poetry add <package-name> command.

  1. Removing a Dependency:
    • Navigate to the respective directory (frontend or backend):
      cd frontend # or backend
    • Run Poetry to remove a dependency:
      poetry remove <package-name>
    • This command updates pyproject.toml and poetry.lock. Commit these changes to your repository.

Please, note that you can also optionally attach to the running container and then run the poetry remove <package-name> command.

  1. Running Commands with Poetry:
    • Use poetry run to execute commands within the virtual environment created by Poetry, for example:
      poetry run pytest

Please, note that you can also optionally attach to the running container and then run the poetry run command.

Note: While developing within Docker containers, you typically won't need to run Poetry commands directly, as dependencies are installed during the Docker build process. However, these steps are essential for local development, adding/updating dependencies, or when setting up CI/CD pipelines.

Reflecting Dependency Changes in Docker Containers

After updating dependencies, ensure to rebuild your Docker images to apply these changes in your containers:

docker-compose build

System Architecture

LinguAI System Architecture

linguai's People

Contributors

thekaveh avatar rameshkumar-vt avatar shreyarm-aws avatar juliachen7 avatar juliachenn avatar xelasnewo avatar

Watchers

 avatar

linguai's Issues

switch LLM listing to dynamic

The list of supported LLMs is currently hardcoded and its generation needs to be switched back to dynamic. This way, when the list of ollama models to be pulled post vanilla ollama docker container creation, is turned into an environment variable and the models are pulled automatically, all already pulled models will be immediately visible.

Add personas to chat functionality

A preset set of personalities are defined and pulled via their dedicated service. User can then select a persona of their liking during chat and talk to them LLM masquerading as the persona.

Streamline backend and frontend's chatting functionality

The backend's chatting endpoints need to become LLM model agnostic. We need just one streaming POST endpoint that accepts arguments. This currently is not possible with LangServe and needs to change.

The frontend's chatting functionality depends on LangServe's RemoteRunnable which doesn't allow for customizing the arguments sent to the endpoint. It also forces a dependency to a library that is brand new and not mature enough (langserve[client] cannot be installed by itself and langserve[all] forces fastapi also installed...). Using LangServe also forces usage of LangChain related API on the frontend like message template which is not acceptable.

We need to switch to a pure FastAPI backend endpoint implementation that uses LangChain and a pure httpx frontend implementation that consumes that streaming POST endpoint.

LinguAI Logo and Wallpaper

We need a great logo and a landing page wallpaper for the app to (possibly) be generated using DALLE3. There currently is a placeholder wallpaper that is not being correctly positioned on the home page component.

Allow for an openai-only and localhost-ollama docker compose project setup

We have use cases where we would only want to use OpenAi-related models and so won't be needing the Ollama container launched.

We also have use cases where we want to rely on the locally installed instance of Ollama rather than relying on the docker used version.

We need separate docker compose yaml files to support these scenarios and we need to figure out all backend->ollama dependencies.

shell script having CR causing errors while starting up in linux os.

here is the error :

ollama | /start.sh: line 1: $'\r': command not found
ollama | /start.sh: line 2: $'\r': command not found
ollama | /start.sh: line 3: syntax error near unexpected token $'{\r'' 'llama | /start.sh: line 3: check_ollama_running() {
ollama | /start.sh: line 1: $'\r': command not found
ollama | /start.sh: line 2: $'\r': command not found
ollama | /start.sh: line 3: syntax error near unexpected token $'{\r'' 'llama | /start.sh: line 3: check_ollama_running() {
ollama | /start.sh: line 1: $'\r': command not found
ollama | /start.sh: line 2: $'\r': command not found
ollama | /start.sh: line 3: syntax error near unexpected token $'{\r'' 'llama | /start.sh: line 3: check_ollama_running() {
ollama | /start.sh: line 1: $'\r': command not found
ollama | /start.sh: line 2: $'\r': command not found
ollama | /start.sh: line 3: syntax error near unexpected token $'{\r'' 'llama | /start.sh: line 3: check_ollama_running() {
ollama | /start.sh: line 1: $'\r': command not found
ollama | /start.sh: line 2: $'\r': command not found
ollama | /start.sh: line 3: syntax error near unexpected token $'{\r'' 'llama | /start.sh: line 3: check_ollama_running() {
db-dashboard exited with code 0
ollama exited with code 2
db-dashboard | You need to define the PGADMIN_DEFAULT_EMAIL and PGADMIN_DEFAULT_PASSWORD or PGADMIN_DEFAULT_PASSWORD_FILE environment variables.
db-dashboard | You need to define the PGADMIN_DEFAULT_EMAIL and PGADMIN_DEFAULT_PASSWORD or PGADMIN_DEFAULT_PASSWORD_FILE environment variables.
db-dashboard | You need to define the PGADMIN_DEFAULT_EMAIL and PGADMIN_DEFAULT_PASSWORD or PGADMIN_DEFAULT_PASSWORD_FILE environment variables.
db-dashboard | You need to define the PGADMIN_DEFAULT_EMAIL and PGADMIN_DEFAULT_PASSWORD or PGADMIN_DEFAULT_PASSWORD_FILE environment variables.
db-dashboard | You need to define the PGADMIN_DEFAULT_EMAIL and PGADMIN_DEFAULT_PASSWORD or PGADMIN_DEFAULT_PASSWORD_FILE environment variables.
ollama | /start.sh: line 1: $'\r': command not found
ollama | /start.sh: line 2: $'\r': command not found
ollama | /start.sh: line 3: syntax error near unexpected token $'{\r'' 'llama | /start.sh: line 3: check_ollama_running() {
ollama | /start.sh: line 1: $'\r': command not found
ollama | /start.sh: line 2: $'\r': command not found
ollama | /start.sh: line 3: syntax error near unexpected token $'{\r'' 'llama | /start.sh: line 3: check_ollama_running() {
ollama | /start.sh: line 1: $'\r': command not found
ollama | /start.sh: line 2: $'\r': command not found
ollama | /start.sh: line 3: syntax error near unexpected token $'{\r'' 'llama | /start.sh: line 3: check_ollama_running() {
ollama | /start.sh: line 1: $'\r': command not found
ollama | /start.sh: line 2: $'\r': command not found
ollama | /start.sh: line 3: syntax error near unexpected token $'{\r'' 'llama | /start.sh: line 3: check_ollama_running() {
ollama | /start.sh: line 1: $'\r': command not found
ollama | /start.sh: line 2: $'\r': command not found
ollama | /start.sh: line 3: syntax error near unexpected token $'{\r'' 'llama | /start.sh: line 3: check_ollama_running() {
db-dashboard exited with code 1
ollama exited with code 2
ollama | /start.sh: line 1: $'\r': command not found
ollama | /start.sh: line 2: $'\r': command not found
ollama | /start.sh: line 3: syntax error near unexpected token $'{\r'' 'llama | /start.sh: line 3: check_ollama_running() {
ollama | /start.sh: line 1: $'\r': command not found
ollama | /start.sh: line 2: $'\r': command not found
ollama | /start.sh: line 3: syntax error near unexpected token $'{\r'' 'llama | /start.sh: line 3: check_ollama_running() {
ollama | /start.sh: line 1: $'\r': command not found
ollama | /start.sh: line 2: $'\r': command not found
ollama | /start.sh: line 3: syntax error near unexpected token $'{\r'' 'llama | /start.sh: line 3: check_ollama_running() {
ollama | /start.sh: line 1: $'\r': command not found
ollama | /start.sh: line 2: $'\r': command not found
ollama | /start.sh: line 3: syntax error near unexpected token $'{\r'' 'llama | /start.sh: line 3: check_ollama_running() {
ollama | /start.sh: line 1: $'\r': command not found
ollama | /start.sh: line 2: $'\r': command not found
ollama | /start.sh: line 3: syntax error near unexpected token $'{\r'' 'llama | /start.sh: line 3: check_ollama_running() {
db-dashboard | You need to define the PGADMIN_DEFAULT_EMAIL and PGADMIN_DEFAULT_PASSWORD or PGADMIN_DEFAULT_PASSWORD_FILE environment variables.
db-dashboard | You need to define the PGADMIN_DEFAULT_EMAIL and PGADMIN_DEFAULT_PASSWORD or PGADMIN_DEFAULT_PASSWORD_FILE environment variables.
db-dashboard | You need to define the PGADMIN_DEFAULT_EMAIL and PGADMIN_DEFAULT_PASSWORD or PGADMIN_DEFAULT_PASSWORD_FILE environment variables.
db-dashboard | You need to define the PGADMIN_DEFAULT_EMAIL and PGADMIN_DEFAULT_PASSWORD or PGADMIN_DEFAULT_PASSWORD_FILE environment variables.
db-dashboard | You need to define the PGADMIN_DEFAULT_EMAIL and PGADMIN_DEFAULT_PASSWORD or PGADMIN_DEFAULT_PASSWORD_FILE environment variables.
ollama exited with code 2
db-dashboard exited with code 1
ollama | /start.sh: line 1: $'\r': command not found
ollama | /start.sh: line 2: $'\r': command not found
ollama | /start.sh: line 3: syntax error near unexpected token $'{\r'' 'llama | /start.sh: line 3: check_ollama_running() {
ollama | /start.sh: line 1: $'\r': command not found
ollama | /start.sh: line 2: $'\r': command not found
ollama | /start.sh: line 3: syntax error near unexpected token $'{\r'' 'llama | /start.sh: line 3: check_ollama_running() {
ollama | /start.sh: line 1: $'\r': command not found
ollama | /start.sh: line 2: $'\r': command not found
ollama | /start.sh: line 3: syntax error near unexpected token $'{\r'' 'llama | /start.sh: line 3: check_ollama_running() {
ollama | /start.sh: line 1: $'\r': command not found
ollama | /start.sh: line 2: $'\r': command not found
ollama | /start.sh: line 3: syntax error near unexpected token $'{\r'' 'llama | /start.sh: line 3: check_ollama_running() {
ollama | /start.sh: line 1: $'\r': command not found
ollama | /start.sh: line 2: $'\r': command not found
ollama | /start.sh: line 3: syntax error near unexpected token $'{\r'' 'llama | /start.sh: line 3: check_ollama_running() {
ollama exited with code 2
db-dashboard | You need to define the PGADMIN_DEFAULT_EMAIL and PGADMIN_DEFAULT_PASSWORD or PGADMIN_DEFAULT_PASSWORD_FILE environment variables.
db-dashboard | You need to define the PGADMIN_DEFAULT_EMAIL and PGADMIN_DEFAULT_PASSWORD or PGADMIN_DEFAULT_PASSWORD_FILE environment variables.
db-dashboard | You need to define the PGADMIN_DEFAULT_EMAIL and PGADMIN_DEFAULT_PASSWORD or PGADMIN_DEFAULT_PASSWORD_FILE environment variables.
db-dashboard | You need to define the PGADMIN_DEFAULT_EMAIL and PGADMIN_DEFAULT_PASSWORD or PGADMIN_DEFAULT_PASSWORD_FILE environment variables.
db-dashboard | You need to define the PGADMIN_DEFAULT_EMAIL and PGADMIN_DEFAULT_PASSWORD or PGADMIN_DEFAULT_PASSWORD_FILE environment variables.
db-dashboard exited with code 1
ollama | /start.sh: line 1: $'\r': command not found
ollama | /start.sh: line 2: $'\r': command not found
ollama | /start.sh: line 3: syntax error near unexpected token $'{\r'' 'llama | /start.sh: line 3: check_ollama_running() {
ollama | /start.sh: line 1: $'\r': command not found
ollama | /start.sh: line 2: $'\r': command not found
ollama | /start.sh: line 3: syntax error near unexpected token $'{\r'' 'llama | /start.sh: line 3: check_ollama_running() {
ollama | /start.sh: line 1: $'\r': command not found
ollama | /start.sh: line 2: $'\r': command not found
ollama | /start.sh: line 3: syntax error near unexpected token $'{\r'' 'llama | /start.sh: line 3: check_ollama_running() {
ollama | /start.sh: line 1: $'\r': command not found
ollama | /start.sh: line 2: $'\r': command not found
ollama | /start.sh: line 3: syntax error near unexpected token $'{\r'' 'llama | /start.sh: line 3: check_ollama_running() {
ollama | /start.sh: line 1: $'\r': command not found
ollama | /start.sh: line 2: $'\r': command not found
ollama | /start.sh: line 3: syntax error near unexpected token $'{\r'' 'llama | /start.sh: line 3: check_ollama_running() {
ollama | /start.sh: line 1: $'\r': command not found
ollama | /start.sh: line 2: $'\r': command not found
ollama | /start.sh: line 3: syntax error near unexpected token $'{\r'' 'llama | /start.sh: line 3: check_ollama_running() {
ollama exited with code 2
db-dashboard | You need to define the PGADMIN_DEFAULT_EMAIL and PGADMIN_DEFAULT_PASSWORD or PGADMIN_DEFAULT_PASSWORD_FILE environment variables.
db-dashboard | You need to define the PGADMIN_DEFAULT_EMAIL and PGADMIN_DEFAULT_PASSWORD or PGADMIN_DEFAULT_PASSWORD_FILE environment variables.
db-dashboard | You need to define the PGADMIN_DEFAULT_EMAIL and PGADMIN_DEFAULT_PASSWORD or PGADMIN_DEFAULT_PASSWORD_FILE environment variables.
db-dashboard | You need to define the PGADMIN_DEFAULT_EMAIL and PGADMIN_DEFAULT_PASSWORD or PGADMIN_DEFAULT_PASSWORD_FILE environment variables.
db-dashboard | You need to define the PGADMIN_DEFAULT_EMAIL and PGADMIN_DEFAULT_PASSWORD or PGADMIN_DEFAULT_PASSWORD_FILE environment variables.
db-dashboard | You need to define the PGADMIN_DEFAULT_EMAIL and PGADMIN_DEFAULT_PASSWORD or PGADMIN_DEFAULT_PASSWORD_FILE environment variables.
db-dashboard exited with code 1
ollama | /start.sh: line 1: $'\r': command not found
ollama | /start.sh: line 2: $'\r': command not found
ollama | /start.sh: line 3: syntax error near unexpected token $'{\r'' 'llama | /start.sh: line 3: check_ollama_running() {
ollama | /start.sh: line 1: $'\r': command not found
ollama | /start.sh: line 2: $'\r': command not found
ollama | /start.sh: line 3: syntax error near unexpected token $'{\r'' 'llama | /start.sh: line 3: check_ollama_running() {
ollama | /start.sh: line 1: $'\r': command not found
ollama | /start.sh: line 2: $'\r': command not found
ollama | /start.sh: line 3: syntax error near unexpected token $'{\r'' 'llama | /start.sh: line 3: check_ollama_running() {
ollama | /start.sh: line 1: $'\r': command not found
ollama | /start.sh: line 2: $'\r': command not found
ollama | /start.sh: line 3: syntax error near unexpected token $'{\r'' 'llama | /start.sh: line 3: check_ollama_running() {
ollama | /start.sh: line 1: $'\r': command not found
ollama | /start.sh: line 2: $'\r': command not found
ollama | /start.sh: line 3: syntax error near unexpected token $'{\r'' 'llama | /start.sh: line 3: check_ollama_running() {
ollama | /start.sh: line 1: $'\r': command not found
ollama | /start.sh: line 2: $'\r': command not found
ollama | /start.sh: line 3: syntax error near unexpected token $'{\r'' 'llama | /start.sh: line 3: check_ollama_running() {
ollama | /start.sh: line 1: $'\r': command not found
ollama | /start.sh: line 2: $'\r': command not found
ollama | /start.sh: line 3: syntax error near unexpected token $'{\r'' 'llama | /start.sh: line 3: check_ollama_running() {
ollama exited with code 2
db-dashboard | You need to define the PGADMIN_DEFAULT_EMAIL and PGADMIN_DEFAULT_PASSWORD or PGADMIN_DEFAULT_PASSWORD_FILE environment variables.
db-dashboard | You need to define the PGADMIN_DEFAULT_EMAIL and PGADMIN_DEFAULT_PASSWORD or PGADMIN_DEFAULT_PASSWORD_FILE environment variables.
db-dashboard | You need to define the PGADMIN_DEFAULT_EMAIL and PGADMIN_DEFAULT_PASSWORD or PGADMIN_DEFAULT_PASSWORD_FILE environment variables.
db-dashboard | You need to define the PGADMIN_DEFAULT_EMAIL and PGADMIN_DEFAULT_PASSWORD or PGADMIN_DEFAULT_PASSWORD_FILE environment variables.
db-dashboard | You need to define the PGADMIN_DEFAULT_EMAIL and PGADMIN_DEFAULT_PASSWORD or PGADMIN_DEFAULT_PASSWORD_FILE environment variables.
db-dashboard | You need to define the PGADMIN_DEFAULT_EMAIL and PGADMIN_DEFAULT_PASSWORD or PGADMIN_DEFAULT_PASSWORD_FILE environment variables.
db-dashboard | You need to define the PGADMIN_DEFAULT_EMAIL and PGADMIN_DEFAULT_PASSWORD or PGADMIN_DEFAULT_PASSWORD_FILE environment variables.
db-dashboard exited with code 1
ollama | /start.sh: line 1: $'\r': command not found
ollama | /start.sh: line 2: $'\r': command not found
ollama | /start.sh: line 3: syntax error near unexpected token $'{\r'' 'llama | /start.sh: line 3: check_ollama_running() {
ollama | /start.sh: line 1: $'\r': command not found
ollama | /start.sh: line 2: $'\r': command not found
ollama | /start.sh: line 3: syntax error near unexpected token $'{\r'' 'llama | /start.sh: line 3: check_ollama_running() {
ollama | /start.sh: line 1: $'\r': command not found
ollama | /start.sh: line 2: $'\r': command not found
ollama | /start.sh: line 3: syntax error near unexpected token $'{\r'' 'llama | /start.sh: line 3: check_ollama_running() {
ollama | /start.sh: line 1: $'\r': command not found
ollama | /start.sh: line 2: $'\r': command not found
ollama | /start.sh: line 3: syntax error near unexpected token $'{\r'' 'llama | /start.sh: line 3: check_ollama_running() {
ollama | /start.sh: line 1: $'\r': command not found
ollama | /start.sh: line 2: $'\r': command not found
ollama | /start.sh: line 3: syntax error near unexpected token $'{\r'' 'llama | /start.sh: line 3: check_ollama_running() {
ollama | /start.sh: line 1: $'\r': command not found
ollama | /start.sh: line 2: $'\r': command not found
ollama | /start.sh: line 3: syntax error near unexpected token $'{\r'' 'llama | /start.sh: line 3: check_ollama_running() {
ollama | /start.sh: line 1: $'\r': command not found
ollama | /start.sh: line 2: $'\r': command not found
ollama | /start.sh: line 3: syntax error near unexpected token $'{\r'' 'llama | /start.sh: line 3: check_ollama_running() {
ollama | /start.sh: line 1: $'\r': command not found
ollama | /start.sh: line 2: $'\r': command not found
ollama | /start.sh: line 3: syntax error near unexpected token $'{\r'' 'llama | /start.sh: line 3: check_ollama_running() {
ollama exited with code 2
db-dashboard | You need to define the PGADMIN_DEFAULT_EMAIL and PGADMIN_DEFAULT_PASSWORD or PGADMIN_DEFAULT_PASSWORD_FILE environment variables.
db-dashboard | You need to define the PGADMIN_DEFAULT_EMAIL and PGADMIN_DEFAULT_PASSWORD or PGADMIN_DEFAULT_PASSWORD_FILE environment variables.
db-dashboard | You need to define the PGADMIN_DEFAULT_EMAIL and PGADMIN_DEFAULT_PASSWORD or PGADMIN_DEFAULT_PASSWORD_FILE environment variables.
db-dashboard | You need to define the PGADMIN_DEFAULT_EMAIL and PGADMIN_DEFAULT_PASSWORD or PGADMIN_DEFAULT_PASSWORD_FILE environment variables.
db-dashboard | You need to define the PGADMIN_DEFAULT_EMAIL and PGADMIN_DEFAULT_PASSWORD or PGADMIN_DEFAULT_PASSWORD_FILE environment variables.
db-dashboard | You need to define the PGADMIN_DEFAULT_EMAIL and PGADMIN_DEFAULT_PASSWORD or PGADMIN_DEFAULT_PASSWORD_FILE environment variables.
db-dashboard | You need to define the PGADMIN_DEFAULT_EMAIL and PGADMIN_DEFAULT_PASSWORD or PGADMIN_DEFAULT_PASSWORD_FILE environment variables.
db-dashboard | You need to define the PGADMIN_DEFAULT_EMAIL and PGADMIN_DEFAULT_PASSWORD or PGADMIN_DEFAULT_PASSWORD_FILE environment variables.
db-dashboard exited with code 1
ollama | /start.sh: line 1: $'\r': command not found
ollama | /start.sh: line 2: $'\r': command not found
ollama | /start.sh: line 3: syntax error near unexpected token $'{\r'' 'llama | /start.sh: line 3: check_ollama_running() {
ollama | /start.sh: line 1: $'\r': command not found
ollama | /start.sh: line 2: $'\r': command not found
ollama | /start.sh: line 3: syntax error near unexpected token $'{\r'' 'llama | /start.sh: line 3: check_ollama_running() {
ollama | /start.sh: line 1: $'\r': command not found
ollama | /start.sh: line 2: $'\r': command not found
ollama | /start.sh: line 3: syntax error near unexpected token $'{\r'' 'llama | /start.sh: line 3: check_ollama_running() {
ollama | /start.sh: line 1: $'\r': command not found
ollama | /start.sh: line 2: $'\r': command not found
ollama | /start.sh: line 3: syntax error near unexpected token $'{\r'' 'llama | /start.sh: line 3: check_ollama_running() {
ollama | /start.sh: line 1: $'\r': command not found
ollama | /start.sh: line 2: $'\r': command not found
ollama | /start.sh: line 3: syntax error near unexpected token $'{\r'' 'llama | /start.sh: line 3: check_ollama_running() {
ollama | /start.sh: line 1: $'\r': command not found
ollama | /start.sh: line 2: $'\r': command not found
ollama | /start.sh: line 3: syntax error near unexpected token $'{\r'' 'llama | /start.sh: line 3: check_ollama_running() {
ollama | /start.sh: line 1: $'\r': command not found
ollama | /start.sh: line 2: $'\r': command not found
ollama | /start.sh: line 3: syntax error near unexpected token $'{\r'' 'llama | /start.sh: line 3: check_ollama_running() {
ollama | /start.sh: line 1: $'\r': command not found
ollama | /start.sh: line 2: $'\r': command not found
ollama | /start.sh: line 3: syntax error near unexpected token $'{\r'' 'llama | /start.sh: line 3: check_ollama_running() {
ollama | /start.sh: line 1: $'\r': command not found
ollama | /start.sh: line 2: $'\r': command not found
ollama | /start.sh: line 3: syntax error near unexpected token $'{\r'' 'llama | /start.sh: line 3: check_ollama_running() {

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.