From 17371fcc8732cdcd4d8ef63567829a819a385763 Mon Sep 17 00:00:00 2001 From: MervinPraison Date: Fri, 13 Dec 2024 12:02:38 +0000 Subject: [PATCH] css fix --- Dockerfile | 2 +- docs/api/praisonai/deploy.html | 2 +- praisonai.rb | 2 +- praisonai/deploy.py | 2 +- praisonai/ui/config/.chainlit/config.toml | 2 +- pyproject.toml | 4 ++-- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Dockerfile b/Dockerfile index 5584e2f6..928f035a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ FROM python:3.11-slim WORKDIR /app COPY . . -RUN pip install flask praisonai==1.0.9 gunicorn markdown +RUN pip install flask praisonai==1.0.10 gunicorn markdown EXPOSE 8080 CMD ["gunicorn", "-b", "0.0.0.0:8080", "api:app"] diff --git a/docs/api/praisonai/deploy.html b/docs/api/praisonai/deploy.html index f8554793..6899b134 100644 --- a/docs/api/praisonai/deploy.html +++ b/docs/api/praisonai/deploy.html @@ -110,7 +110,7 @@

Raises

file.write("FROM python:3.11-slim\n") file.write("WORKDIR /app\n") file.write("COPY . .\n") - file.write("RUN pip install flask praisonai==1.0.9 gunicorn markdown\n") + file.write("RUN pip install flask praisonai==1.0.10 gunicorn markdown\n") file.write("EXPOSE 8080\n") file.write('CMD ["gunicorn", "-b", "0.0.0.0:8080", "api:app"]\n') diff --git a/praisonai.rb b/praisonai.rb index 5bc9d070..1f676384 100644 --- a/praisonai.rb +++ b/praisonai.rb @@ -3,7 +3,7 @@ class Praisonai < Formula desc "AI tools for various AI applications" homepage "https://github.com/MervinPraison/PraisonAI" - url "https://github.com/MervinPraison/PraisonAI/archive/refs/tags/1.0.9.tar.gz" + url "https://github.com/MervinPraison/PraisonAI/archive/refs/tags/1.0.10.tar.gz" sha256 "1828fb9227d10f991522c3f24f061943a254b667196b40b1a3e4a54a8d30ce32" # Replace with actual SHA256 checksum license "MIT" diff --git a/praisonai/deploy.py b/praisonai/deploy.py index 5390b17c..c5be46ff 100644 --- a/praisonai/deploy.py +++ b/praisonai/deploy.py @@ -56,7 +56,7 @@ def create_dockerfile(self): file.write("FROM python:3.11-slim\n") file.write("WORKDIR /app\n") file.write("COPY . .\n") - file.write("RUN pip install flask praisonai==1.0.9 gunicorn markdown\n") + file.write("RUN pip install flask praisonai==1.0.10 gunicorn markdown\n") file.write("EXPOSE 8080\n") file.write('CMD ["gunicorn", "-b", "0.0.0.0:8080", "api:app"]\n') diff --git a/praisonai/ui/config/.chainlit/config.toml b/praisonai/ui/config/.chainlit/config.toml index 6437dfa9..2937b343 100644 --- a/praisonai/ui/config/.chainlit/config.toml +++ b/praisonai/ui/config/.chainlit/config.toml @@ -69,7 +69,7 @@ cot = "full" # Specify a CSS file that can be used to customize the user interface. # The CSS file can be served from the public directory or via an external link. -custom_css = "https://cdn.jsdelivr.net/gh/MervinPraison/PraisonAI@1.0.8/praisonai/ui/public/praison.css" +custom_css = "https://cdn.jsdelivr.net/gh/MervinPraison/PraisonAI@1.0.10/praisonai/ui/public/praison.css" # Specify a Javascript file that can be used to customize the user interface. # The Javascript file can be served from the public directory. diff --git a/pyproject.toml b/pyproject.toml index 8a918d14..5f86064f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "PraisonAI" -version = "1.0.9" +version = "1.0.10" description = "PraisonAI application combines AutoGen and CrewAI or similar frameworks into a low-code solution for building and managing multi-agent LLM systems, focusing on simplicity, customization, and efficient human-agent collaboration." readme = "README.md" license = "" @@ -10,7 +10,7 @@ authors = [ [tool.poetry] name = "PraisonAI" -version = "1.0.9" +version = "1.0.10" description = "PraisonAI application combines AutoGen and CrewAI or similar frameworks into a low-code solution for building and managing multi-agent LLM systems, focusing on simplicity, customization, and efficient human-agent collaboration." authors = ["Mervin Praison"] license = ""