Skip to content

docker file update and added tool mode in khub filter - #10581

Closed
YashG-28 wants to merge 537 commits into
langflow-ai:mainfrom
autonomize-ai:fix/filter-tool-mode
Closed

docker file update and added tool mode in khub filter#10581
YashG-28 wants to merge 537 commits into
langflow-ai:mainfrom
autonomize-ai:fix/filter-tool-mode

Conversation

@YashG-28

@YashG-28 YashG-28 commented Nov 13, 2025

Copy link
Copy Markdown

Summary by CodeRabbit

  • New Features

    • Added comprehensive Azure Pipelines CI/CD infrastructure for backend and frontend services with automated builds, security scanning, and deployments.
    • Introduced Docker Compose development environment with backend, frontend, database, and Redis services for local development.
  • Infrastructure & Chores

    • Updated Docker configurations for multi-stage builds and enhanced security practices.
    • Migrated from legacy GitHub Actions to new pipeline templates with centralized variables and reusable workflows.
    • Removed outdated CI/CD and issue template configurations.
  • Documentation

    • Added comprehensive guides: Development Setup, Docker, Helm Deployment, Pipelines, and Azure DevOps Architecture.
    • Removed internal developer guidelines to streamline documentation structure.
  • Configuration

    • Updated environment variables and API configuration references.
    • Enhanced Makefile with database setup automation.

jagveer-autonomize and others added 30 commits October 14, 2025 21:17
Removed unnecessary files that are not required
- Change VALUES_FILE paths from charts/genesis-platform/ to genesis-umbrella/
- Update yq commands to target genesis-studio instead of ai-studio
- Remove VALUES_FILE_STANDALONE variable (no longer needed)
- Align with new umbrella chart architecture
…paths

Update Azure pipeline paths for new platform charts structure
update prompts to address detailed faq questions
Fixed circular dependency in Alembic env.py that was preventing
SQLModel from properly registering table metadata during startup.

Changes:
- Changed import from langflow.services.database.service to sqlmodel
- Added explicit models import to ensure metadata population
- Resolves 'could not assemble primary key columns' error

The issue occurred because importing SQLModel from the database service
triggered service initialization before all models were loaded into
SQLModel.metadata, causing table creation to fail.

Fixes backend pod startup failures in Kubernetes deployment.
…-dependency

fix: resolve SQLModel ApiKey table creation circular import issue
…nd filtering

- Implement backend API endpoints for agent marketplace
- Create frontend components for marketplace UI including cards and filters
- Add search, sorting and pagination functionality
- Update constants and routes to support new feature
feat(agent-marketplace): add agent marketplace feature with listing a…
- Add useCaseIds to TemplateContentProps for filtering templates by use case
- Modify template filtering logic to handle use case IDs
- Remove max-width constraints from AgentMarketplacePage and AgentBuilderPage
- Update text and placeholder in AgentBuilderPage
feat(templates): add use case filtering and UI adjustments
This commit resolves the critical SQLModel ApiKey table creation error that prevented backend pods from starting in Kubernetes environments while working fine locally.

- **Problem**: `Annotated[UUID, BeforeValidator(...)]` (UUIDstr) not recognized as valid primary key by SQLModel/SQLAlchemy in Docker environment
- **Solution**: Changed all primary key fields from UUIDstr to plain UUID type in:
  - `src/backend/base/langflow/services/database/models/api_key/model.py`
  - `src/backend/base/langflow/services/database/models/user/model.py`
  - `src/backend/base/langflow/services/database/models/file/model.py`

- **Updated Dockerfile**: Use Python 3.13 with deadsnakes PPA to match working local environment
- **Fixed Dependencies**: Pinned SQLAlchemy==2.0.43, Pydantic==2.10.6, upgraded LiteLLM>=1.61.15
- **Resolved Package Conflicts**: Fixed yanked transformers package to version 4.57.1

- **Removed publishedagent module completely**:
  - Deleted API endpoints: `src/backend/base/langflow/api/v1/published_agent.py`
  - Deleted database models: `src/backend/base/langflow/services/database/models/published_agent/`
  - Deleted Alembic migration: `src/backend/base/langflow/alembic/versions/321864d65639_add_published_agent_table.py`
  - Updated imports and router registrations
  - Cleaned up pyproject.toml dependencies

- **Environment Difference**: Local Python 3.13.5 + SQLAlchemy 2.0.43 vs Docker Python 3.12.3 + SQLAlchemy 2.0.44
- **Type Recognition**: UUIDstr type with BeforeValidator not recognized as valid primary key in Docker environment
- **Database Creation**: "could not assemble any primary key columns" error during table creation

- ✅ Successfully tested in local Docker environment with external PostgreSQL
- ✅ Validated in minikube with clean database startup
- ✅ Confirmed alembic migrations work without permission issues
- ✅ Verified all publishedagent references removed

- Simplified type system reduces validation overhead
- Cleaner codebase with unnecessary module removed
- Faster startup without publishedagent table creation

This fix ensures consistent behavior across local and containerized environments while maintaining data integrity and type safety.
…d-cleanup

Fix SQLModel primary key detection and remove publishedagent module
- Implement agent marketplace detail page with tabs for flow visualization and YAML spec
- Add dynamic breadcrumb navigation that responds to route changes
- Enhance marketplace cards with click-to-detail functionality and YAML conversion
- Adjust breadcrumb styling and page layout spacing
- Update azure pipelines to target .ai-studio.backend.image.tag instead of .genesis-studio.backend.image.tag
- Resolves duplicate tag confusion in values-dev.yaml
- Ensures CI/CD updates correct tag location for deployments
Fix CI/CD pipeline to target correct image tag location
…results

Add predefined static agents list to supplement API results, ensuring no duplicates by name. Also make static agent cards non-interactive to prevent navigation.
feat(agent-marketplace): add static agents list and combine with API …
fix(login): uncomment keycloak redirect logic
The submit button is temporarily disabled while we address an underlying issue with prompt validation
rishikant05-autonomize and others added 27 commits November 4, 2025 17:30
* on reload fetch latest logo

* button changed to Save

---------

Co-authored-by: Rishi <rishi@MacBook-Pro.local>
* minor changes in the published flow

* minor changes

* updated the market place to show the tags title
added chunks metadata in ocr component and modified qdrant db to filt…
* Fix migration chain: correct parent reference for flow_icon migration

- Change down_revision from missing '20251027120000' to '5b431a7ef7c1'
- Fixes broken migration chain causing deployment failures
- Now properly follows: 99999999999 → 5b431a7ef7c1 → 20251027130000

* Fix: Update repository references from platform-charts to ai-studio-charts

Updated Azure DevOps pipeline configurations to use the new repository name
after the repository was renamed from autonomize-ai/platform-charts to
autonomize-ai/ai-studio-charts.

Changes:
- Updated repository names in backend-cicd.yaml and frontend-cicd.yaml
- Updated repository aliases from platform-charts to ai-studio-charts
- Updated checkout references in release-template.yml
- Updated variable names and paths in common.yml
- Updated comments for consistency
* reverted bff changes done for mcp server

* updated basic templates

* updated starter project helper
* agent versioning implemented

* agent version added

* agent version bug fixes

* date field changed to utc

* bug fixes

* bug fixes

* title name issue fixes

* app logo fixes

---------

Co-authored-by: Rishi <rishi@MacBook-Pro.local>
* added filter persist

* live icon change
* updated playground

* added default env

* added language model
* added google api support

* added minor changes
…ization (#143)

add session storage persistence for marketplace detail tabs
hide flow name in header when viewing flow visualization tab
simplify marketplace flow name label

Co-authored-by: joexavier1997 <joe.xavier@autonomize.ai>
* validation added

* feat(spec_flow_builder): add config and provides validators with tests

- Implement ConfigValidator to validate component config keys and types against catalog templates
- Add ProvidesConnectionValidator to validate 'provides' connections in YAML specs
- Extend ComponentResolver with get_cached_components method
- Enhance ComponentSchemaInspector with additional cache and connection validation logic
- Add comprehensive unit tests for both validators

* test(config_validator): update test cases with code value for resolver

Add explicit code values in test cases to help the resolver map class names correctly. Include additional known keys to avoid validation flags.

* node and config implemented

* edge fixes

* toolset issue fixes

* changes added for config

* config fixes

---------

Co-authored-by: Rishi <rishi@MacBook-Pro.local>
Co-authored-by: joexavier1997 <joe.xavier@autonomize.ai>
* validation added

* feat(spec_flow_builder): add config and provides validators with tests

- Implement ConfigValidator to validate component config keys and types against catalog templates
- Add ProvidesConnectionValidator to validate 'provides' connections in YAML specs
- Extend ComponentResolver with get_cached_components method
- Enhance ComponentSchemaInspector with additional cache and connection validation logic
- Add comprehensive unit tests for both validators

* test(config_validator): update test cases with code value for resolver

Add explicit code values in test cases to help the resolver map class names correctly. Include additional known keys to avoid validation flags.

* node and config implemented

* edge fixes

* toolset issue fixes

* changes added for config

* config fixes

* flow to yaml conversion

* flow to yaml conversion

* yaml type fixes

* config issue fixes

* yaml generation and flow generation fixes

---------

Co-authored-by: Rishi <rishi@MacBook-Pro.local>
Co-authored-by: joexavier1997 <joe.xavier@autonomize.ai>
@github-actions github-actions Bot added the community Pull Request from an external contributor label Nov 13, 2025
@YashG-28 YashG-28 closed this Nov 13, 2025
@coderabbitai

coderabbitai Bot commented Nov 13, 2025

Copy link
Copy Markdown
Contributor

Caution

Review failed

The pull request is closed.

Walkthrough

This PR replaces GitHub Actions workflows with Azure Pipelines CI/CD configuration, introduces multi-stage Docker builds with compose files for local development, reorganizes documentation, updates branding to AI Studio, and modifies environment configuration and Makefile targets to support new deployment workflows.

Changes

Cohort / File(s) Change Summary
Azure Pipelines Configuration
.azure-pipelines/backend-cicd.yaml, .azure-pipelines/frontend-cicd.yaml
Introduces new CI/CD pipeline definitions for backend and frontend services with triggers for main, develop, and feature/* branches; defines Build and UpdatePlatformCharts stages.
Azure Pipeline Templates
.azure-pipelines/templates/backend-build-template.yml, .azure-pipelines/templates/frontend-build-template.yml, .azure-pipelines/templates/release-template.yml
Adds reusable pipeline templates for building/pushing Docker images and updating platform charts; includes conditional steps for Docker operations and Git-based chart updates.
Azure Pipeline Variables
.azure-pipelines/variables/common.yml
Introduces centralized configuration for container registry, versioning, runtime dependencies, namespaces, and deployment paths.
Deleted GitHub Actions Workflows
.github/workflows/*.yml (28 files)
Removes comprehensive set of GitHub Actions workflows including CI, release, docker-build, testing, linting, and cross-platform test pipelines in favor of Azure DevOps.
Deleted GitHub Configuration
.github/ISSUE_TEMPLATE/*, .github/actions/install-playwright/action.yml, .github/changes-filter.yaml, .github/dependabot.yml, .github/release.yml, .github/semantic.yml
Removes issue templates, custom actions, changelog configuration, and release/semantic versioning automation.
Deleted Cursor Documentation
.cursor/rules/backend_development.mdc, .cursor/rules/components/basic_component.mdc, .cursor/rules/docs_development.mdc, .cursor/rules/frontend_development.mdc, .cursor/rules/icons.mdc, .cursor/rules/testing.mdc
Removes comprehensive development guidelines for backend, frontend, components, documentation, icons, and testing.
Docker Compose & Multi-Stage Builds
docker-compose.yml, docker-compose.dev.yml, docker/backend/Dockerfile, docker/frontend/Dockerfile, docker/frontend/nginx.conf
Introduces production and development compose configurations with multi-stage builds for backend (Ubuntu-based) and frontend (Node.js + nginx); adds health checks, non-root user execution, and hot-reload support.
Docker Build Environment
docker/build_and_push.Dockerfile, docker/build_and_push_base.Dockerfile, docker/build_and_push_ep.Dockerfile, docker/build_and_push_with_extras.Dockerfile
Adds RUSTFLAGS environment variable to enable unstable reqwest features for apify-client v2.0.0 compatibility.
New Documentation
docs/AZURE_DEVOPS.md, docs/DEVELOPMENT.md, docs/DOCKER.md, docs/HELM.md, docs/PIPELINES.md, UNIVERSAL_AGENT_SPECIFICATION_GUIDE.md
Introduces comprehensive guides for Azure DevOps pipelines, development setup, Docker deployment, Helm charts, and universal agent specifications.
Documentation Updates
docs/docs/Get-Started/get-started-installation.mdx, docs/sidebars.js, docs/docs/Integrations/Cleanlab/eval_and_remediate_cleanlab.json, docs/docs/Integrations/Notion/*.json
Updates installation links from langflow.org to autonomize.ai; changes OpenAI model defaults from "gpt-4o" to "gpt-4.1" in integration templates.
Branding & Metadata
README.md, LICENSE, .env.example, output.yaml
Updates project branding to AI Studio; reorganizes README with new architecture sections; adds LICENSE governance text; adds/updates environment variables (LANGFLOW_MCP_COMPOSER_ENABLED, LANGFLOW_API_URL); adds component output configuration.
Build & Runtime Configuration
Makefile, .gitignore, .cursor/settings.json, config/secret_key
Adds database setup target and PostgreSQL initialization script; updates uvicorn invocation to use python -m instead of uv run; adds AI Assistant working files to .gitignore; removes Biome configuration path; adds default secret key file.

Sequence Diagram(s)

sequenceDiagram
    participant PR as Pull Request
    participant Backend as Backend Pipeline
    participant Frontend as Frontend Pipeline
    participant Build as Build Job
    participant Registry as Container Registry
    participant Charts as Platform Charts Repo
    
    PR->>Backend: Trigger (main/develop/feature/*)
    PR->>Frontend: Trigger (main/develop/feature/*)
    
    Backend->>Build: Run backend-build-template
    Build->>Registry: Docker build & push
    Registry-->>Build: Image pushed
    
    Frontend->>Build: Run frontend-build-template
    Build->>Registry: Docker build & push
    Registry-->>Build: Image pushed
    
    Build->>Charts: UpdatePlatformCharts stage
    Charts->>Charts: Update image tag in values.yaml
    Charts-->>Build: Commit & push to main
    
    Note over Backend,Frontend: Both pipelines run in parallel<br/>UpdatePlatformCharts executes on Build success
Loading

Estimated code review effort

🎯 4 (Complex) | ⏱️ ~75 minutes

Areas requiring special attention:

  • Azure Pipeline Configuration: Review trigger conditions, branch filtering, and stage dependencies across backend-cicd.yaml and frontend-cicd.yaml to ensure correct execution flow and no conflicts.
  • Pipeline Templates: Validate conditional logic in build and release templates, especially Docker push conditions (Build.Reason checks) and yq-based chart updates in release-template.yml.
  • Docker Multi-Stage Builds: Examine layer caching strategy, virtual environment tarball transfer in backend Dockerfile, and nginx configuration variables/substitution in frontend.
  • Makefile Database Integration: Verify new setup_database target and alembic command rewrites with python -m invocation; confirm .env loading logic in commands.
  • GitHub Workflows Removal Impact: Ensure all removed workflows (ci.yml, release.yml, cross-platform-test.yml, etc.) have equivalent coverage in Azure DevOps pipelines; check for any missed dependencies or notification integrations.
  • Documentation Comprehensiveness: Validate that new docs (DEVELOPMENT.md, DOCKER.md, HELM.md, PIPELINES.md, AZURE_DEVOPS.md) adequately replace removed .cursor/rules and GitHub workflow documentation.

Possibly related PRs

  • Replaces entire GitHub Actions CI/CD infrastructure with Azure Pipelines, conflicting with any in-flight changes to .github/workflows files.
  • Reorganizes documentation structure (removing .cursor/rules and adding docs/) which may conflict with documentation-only PRs.
  • Updates environment variables (.env.example) which may affect integration test or environment setup PRs.

Suggested labels

infrastructure, ci-cd, breaking-change, documentation, docker

Suggested reviewers

  • lucaseduoli
  • Cristhianzl
✨ Finishing touches
  • 📝 Generate docstrings
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Post copyable unit tests in a comment

📜 Recent review details

Configuration used: Path: .coderabbit.yaml

Review profile: CHILL

Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 586c79d and 7d38036.

⛔ Files ignored due to path filters (80)
  • agents.tsv is excluded by !**/*.tsv
  • config/profile_pictures/People/People Avatar-01-01.svg is excluded by !**/*.svg
  • config/profile_pictures/People/People Avatar-01-02.svg is excluded by !**/*.svg
  • config/profile_pictures/People/People Avatar-01-03.svg is excluded by !**/*.svg
  • config/profile_pictures/People/People Avatar-01-04.svg is excluded by !**/*.svg
  • config/profile_pictures/People/People Avatar-01-05.svg is excluded by !**/*.svg
  • config/profile_pictures/People/People Avatar-01-06.svg is excluded by !**/*.svg
  • config/profile_pictures/People/People Avatar-01-07.svg is excluded by !**/*.svg
  • config/profile_pictures/People/People Avatar-01-08.svg is excluded by !**/*.svg
  • config/profile_pictures/People/People Avatar-01-09.svg is excluded by !**/*.svg
  • config/profile_pictures/People/People Avatar-01-10.svg is excluded by !**/*.svg
  • config/profile_pictures/People/People Avatar-01-11.svg is excluded by !**/*.svg
  • config/profile_pictures/People/People Avatar-01-12.svg is excluded by !**/*.svg
  • config/profile_pictures/People/People Avatar-01-13.svg is excluded by !**/*.svg
  • config/profile_pictures/People/People Avatar-01-14.svg is excluded by !**/*.svg
  • config/profile_pictures/People/People Avatar-01-15.svg is excluded by !**/*.svg
  • config/profile_pictures/People/People Avatar-01-16.svg is excluded by !**/*.svg
  • config/profile_pictures/People/People Avatar-01-17.svg is excluded by !**/*.svg
  • config/profile_pictures/People/People Avatar-01-18.svg is excluded by !**/*.svg
  • config/profile_pictures/People/People Avatar-01-19.svg is excluded by !**/*.svg
  • config/profile_pictures/People/People Avatar-01-20.svg is excluded by !**/*.svg
  • config/profile_pictures/People/People Avatar-01-21.svg is excluded by !**/*.svg
  • config/profile_pictures/People/People Avatar-01-22.svg is excluded by !**/*.svg
  • config/profile_pictures/People/People Avatar-01-23.svg is excluded by !**/*.svg
  • config/profile_pictures/People/People Avatar-01-24.svg is excluded by !**/*.svg
  • config/profile_pictures/People/People Avatar-01-25.svg is excluded by !**/*.svg
  • config/profile_pictures/People/People Avatar-01-26.svg is excluded by !**/*.svg
  • config/profile_pictures/People/People Avatar-01-27.svg is excluded by !**/*.svg
  • config/profile_pictures/People/People Avatar-02-01.svg is excluded by !**/*.svg
  • config/profile_pictures/People/People Avatar-02-02.svg is excluded by !**/*.svg
  • config/profile_pictures/People/People Avatar-02-03.svg is excluded by !**/*.svg
  • config/profile_pictures/People/People Avatar-02-04.svg is excluded by !**/*.svg
  • config/profile_pictures/People/People Avatar-02-05.svg is excluded by !**/*.svg
  • config/profile_pictures/People/People Avatar-02-06.svg is excluded by !**/*.svg
  • config/profile_pictures/People/People Avatar-02-07.svg is excluded by !**/*.svg
  • config/profile_pictures/People/People Avatar-02-08.svg is excluded by !**/*.svg
  • config/profile_pictures/People/People Avatar-02-09.svg is excluded by !**/*.svg
  • config/profile_pictures/People/People Avatar-02-10.svg is excluded by !**/*.svg
  • config/profile_pictures/People/People Avatar-02-11.svg is excluded by !**/*.svg
  • config/profile_pictures/People/People Avatar-02-12.svg is excluded by !**/*.svg
  • config/profile_pictures/People/People Avatar-02-13.svg is excluded by !**/*.svg
  • config/profile_pictures/People/People Avatar-02-14.svg is excluded by !**/*.svg
  • config/profile_pictures/People/People Avatar-02-15.svg is excluded by !**/*.svg
  • config/profile_pictures/People/People Avatar-02-16.svg is excluded by !**/*.svg
  • config/profile_pictures/People/People Avatar-02-17.svg is excluded by !**/*.svg
  • config/profile_pictures/People/People Avatar-02-18.svg is excluded by !**/*.svg
  • config/profile_pictures/People/People Avatar-02-19.svg is excluded by !**/*.svg
  • config/profile_pictures/People/People Avatar-02-20.svg is excluded by !**/*.svg
  • config/profile_pictures/People/People Avatar-02-21.svg is excluded by !**/*.svg
  • config/profile_pictures/People/People Avatar-02-22.svg is excluded by !**/*.svg
  • config/profile_pictures/People/People Avatar-02-23.svg is excluded by !**/*.svg
  • config/profile_pictures/People/People Avatar-02-24.svg is excluded by !**/*.svg
  • config/profile_pictures/People/People Avatar-02-25.svg is excluded by !**/*.svg
  • config/profile_pictures/People/People Avatar-02-26.svg is excluded by !**/*.svg
  • config/profile_pictures/People/People Avatar-02-27.svg is excluded by !**/*.svg
  • config/profile_pictures/Space/026-alien.svg is excluded by !**/*.svg
  • config/profile_pictures/Space/027-satellite.svg is excluded by !**/*.svg
  • config/profile_pictures/Space/028-alien.svg is excluded by !**/*.svg
  • config/profile_pictures/Space/029-telescope.svg is excluded by !**/*.svg
  • config/profile_pictures/Space/030-books.svg is excluded by !**/*.svg
  • config/profile_pictures/Space/031-planet.svg is excluded by !**/*.svg
  • config/profile_pictures/Space/032-constellation.svg is excluded by !**/*.svg
  • config/profile_pictures/Space/033-planet.svg is excluded by !**/*.svg
  • config/profile_pictures/Space/034-alien.svg is excluded by !**/*.svg
  • config/profile_pictures/Space/035-globe.svg is excluded by !**/*.svg
  • config/profile_pictures/Space/036-eclipse.svg is excluded by !**/*.svg
  • config/profile_pictures/Space/037-meteor.svg is excluded by !**/*.svg
  • config/profile_pictures/Space/038-eclipse.svg is excluded by !**/*.svg
  • config/profile_pictures/Space/039-Asteroid.svg is excluded by !**/*.svg
  • config/profile_pictures/Space/040-mission.svg is excluded by !**/*.svg
  • config/profile_pictures/Space/041-spaceship.svg is excluded by !**/*.svg
  • config/profile_pictures/Space/042-space shuttle.svg is excluded by !**/*.svg
  • config/profile_pictures/Space/043-space shuttle.svg is excluded by !**/*.svg
  • config/profile_pictures/Space/044-rocket.svg is excluded by !**/*.svg
  • config/profile_pictures/Space/045-astronaut.svg is excluded by !**/*.svg
  • config/profile_pictures/Space/046-rocket.svg is excluded by !**/*.svg
  • config/profile_pictures/Space/047-computer.svg is excluded by !**/*.svg
  • config/profile_pictures/Space/048-satellite.svg is excluded by !**/*.svg
  • config/profile_pictures/Space/049-astronaut.svg is excluded by !**/*.svg
  • config/profile_pictures/Space/050-space robot.svg is excluded by !**/*.svg
📒 Files selected for processing (80)
  • .azure-pipelines/backend-cicd.yaml (1 hunks)
  • .azure-pipelines/frontend-cicd.yaml (1 hunks)
  • .azure-pipelines/templates/backend-build-template.yml (1 hunks)
  • .azure-pipelines/templates/frontend-build-template.yml (1 hunks)
  • .azure-pipelines/templates/release-template.yml (1 hunks)
  • .azure-pipelines/variables/common.yml (1 hunks)
  • .cursor/rules/backend_development.mdc (0 hunks)
  • .cursor/rules/components/basic_component.mdc (0 hunks)
  • .cursor/rules/docs_development.mdc (0 hunks)
  • .cursor/rules/frontend_development.mdc (0 hunks)
  • .cursor/rules/icons.mdc (0 hunks)
  • .cursor/rules/testing.mdc (0 hunks)
  • .cursor/settings.json (0 hunks)
  • .env.example (2 hunks)
  • .github/ISSUE_TEMPLATE/bug-report.yaml (0 hunks)
  • .github/ISSUE_TEMPLATE/feature-request.yaml (0 hunks)
  • .github/ISSUE_TEMPLATE/work-in-progress.yaml (0 hunks)
  • .github/actions/install-playwright/action.yml (0 hunks)
  • .github/changes-filter.yaml (0 hunks)
  • .github/dependabot.yml (0 hunks)
  • .github/release.yml (0 hunks)
  • .github/semantic.yml (0 hunks)
  • .github/workflows/add-labels.yml (0 hunks)
  • .github/workflows/auto-update.yml (0 hunks)
  • .github/workflows/ci.yml (0 hunks)
  • .github/workflows/codeflash.yml (0 hunks)
  • .github/workflows/codeql.yml (0 hunks)
  • .github/workflows/conventional-labels.yml (0 hunks)
  • .github/workflows/create-release.yml (0 hunks)
  • .github/workflows/cross-platform-test.md (0 hunks)
  • .github/workflows/cross-platform-test.yml (0 hunks)
  • .github/workflows/deploy-docs-draft.yml (0 hunks)
  • .github/workflows/deploy_gh-pages.yml (0 hunks)
  • .github/workflows/docker-build.yml (0 hunks)
  • .github/workflows/docker_test.yml (0 hunks)
  • .github/workflows/docs-update-openapi.yml (0 hunks)
  • .github/workflows/docs_test.yml (0 hunks)
  • .github/workflows/fetch_docs_notion.yml (0 hunks)
  • .github/workflows/integration_tests.yml (0 hunks)
  • .github/workflows/jest_test.yml (0 hunks)
  • .github/workflows/js_autofix.yml (0 hunks)
  • .github/workflows/lint-js.yml (0 hunks)
  • .github/workflows/lint-py.yml (0 hunks)
  • .github/workflows/matchers/ruff.json (0 hunks)
  • .github/workflows/nightly_build.yml (0 hunks)
  • .github/workflows/py_autofix.yml (0 hunks)
  • .github/workflows/python_test.yml (0 hunks)
  • .github/workflows/release.yml (0 hunks)
  • .github/workflows/release_nightly.yml (0 hunks)
  • .github/workflows/smoke-tests.yml (0 hunks)
  • .github/workflows/store_pytest_durations.yml (0 hunks)
  • .github/workflows/style-check-py.yml (0 hunks)
  • .github/workflows/template-tests.yml (0 hunks)
  • .github/workflows/typescript_test.yml (0 hunks)
  • .gitignore (2 hunks)
  • LICENSE (2 hunks)
  • Makefile (4 hunks)
  • README.md (1 hunks)
  • UNIVERSAL_AGENT_SPECIFICATION_GUIDE.md (1 hunks)
  • config/secret_key (1 hunks)
  • docker-compose.dev.yml (1 hunks)
  • docker-compose.yml (1 hunks)
  • docker/backend/Dockerfile (1 hunks)
  • docker/build_and_push.Dockerfile (2 hunks)
  • docker/build_and_push_base.Dockerfile (1 hunks)
  • docker/build_and_push_ep.Dockerfile (1 hunks)
  • docker/build_and_push_with_extras.Dockerfile (1 hunks)
  • docker/frontend/Dockerfile (1 hunks)
  • docker/frontend/nginx.conf (1 hunks)
  • docs/AZURE_DEVOPS.md (1 hunks)
  • docs/DEVELOPMENT.md (1 hunks)
  • docs/DOCKER.md (1 hunks)
  • docs/HELM.md (1 hunks)
  • docs/PIPELINES.md (1 hunks)
  • docs/docs/Get-Started/get-started-installation.mdx (1 hunks)
  • docs/docs/Integrations/Cleanlab/eval_and_remediate_cleanlab.json (2 hunks)
  • docs/docs/Integrations/Notion/Conversational_Notion_Agent.json (1 hunks)
  • docs/docs/Integrations/Notion/Meeting_Notes_Agent.json (2 hunks)
  • docs/sidebars.js (1 hunks)
  • output.yaml (1 hunks)

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands and usage tips.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

community Pull Request from an external contributor

Projects

None yet

Development

Successfully merging this pull request may close these issues.

6 participants