Skip to main content

Web interface for Solace Agent Mesh

Project description

Solace AI Connector Web

A web application with a React frontend and Python backend.

PyPI - Version PyPI - Python Version

Prerequisites

  • Node.js and npm
  • Python 3.10 and above
  • Required Python dependencies

Frontend Development

Installation

Navigate to the frontend directory:

cd src/solace_ai_connector_web/frontend
npm install

Run the frontend development server:

npm run dev

To build the frontend for production:

npm run build
# or
npx remix vite:build

Backend Development

Building

Run this in the root of the project to build the wheel package:

python -m build -w

This will create a /dist folder containing the wheel file which needs to be installed as a dependency in the ai-eda-solace-chat project.

One suggested workflow for installing the wheel:

pip uninstall solace_ai_connector_web -y && pip install ../../web-solace/solace-ai-connector-web/dist/solace_ai_connector_web-0.1.0-py3-none-any.whl

Local Development

Since static assets are served by default, development with hot reload requires some configuration:

Update vite.config.ts

Add the server configuration:

// vite.config.ts
import { vitePlugin as remix } from "@remix-run/dev";
import { defineConfig } from "vite";
export default defineConfig({
  plugins: [
    remix({
      ssr: false,
      buildDirectory: "./static",
    }),
  ],
  server: {
    proxy: {
      "/api": {
        target: "http://localhost:5001", // Go backend URL
        changeOrigin: true,
        secure: false, // Disable SSL verification if not using HTTPS
        rewrite: (path) => path.replace(/^\/api/, "/api"),
      },
    },
  },
});

Environment Variables

For local development pointing to local REST API with auth disabled:

WEBUI_RESPONSE_API_URL=http://127.0.0.1:5050/api/v1/request
WEBUI_FRONTEND_SERVER_URL=http://localhost:5001
WEBUI_FRONTEND_USE_AUTHORIZATION=False
WEBUI_FRONTEND_URL=http://localhost:5173

This configuration allows you to use npm run dev while still connecting to the server run by EDA chat.

Notes

  • The Python server is configured to serve static files automatically
  • Frontend builds are placed in the static directory in frontend/static for the server to access

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

solace_ai_connector_web-0.1.0.tar.gz (4.6 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

solace_ai_connector_web-0.1.0-py3-none-any.whl (2.4 MB view details)

Uploaded Python 3

File details

Details for the file solace_ai_connector_web-0.1.0.tar.gz.

File metadata

  • Download URL: solace_ai_connector_web-0.1.0.tar.gz
  • Upload date:
  • Size: 4.6 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for solace_ai_connector_web-0.1.0.tar.gz
Algorithm Hash digest
SHA256 ff4c4d72ce9bf003b5d5fe05022a45ad1c353782e55a7027cefa8891cfbc73d5
MD5 3cd8c91132a39d60e7a456210e23f7c6
BLAKE2b-256 dff5d6e7f5d951c655be9c1adef7b83d30d728eba0107673ed07b83412487a92

See more details on using hashes here.

File details

Details for the file solace_ai_connector_web-0.1.0-py3-none-any.whl.

File metadata

File hashes

Hashes for solace_ai_connector_web-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 d7fe6d192cf9ad21827194813ed26bcb764fd9a8856ccb80df2624fd0cf09a93
MD5 454f2cff0a69a7c74dae8ff76ba47ba1
BLAKE2b-256 9190e34110779fa5410ae361f01fc046ea48872383a59e854fa264cd540c36fa

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page