From 23f8c9a6a9cd0c1c75ee8c5059990d7fdd6dc060 Mon Sep 17 00:00:00 2001 From: Yutang Li Date: Sun, 2 Mar 2025 16:00:42 +0800 Subject: [PATCH] update --- .gitignore | 4 +++- README.md | 4 ++-- backend/rtsp2webrtc/config.json | 41 --------------------------------- manage.py | 22 ------------------ package-lock.json | 6 ----- 5 files changed, 5 insertions(+), 72 deletions(-) delete mode 100644 backend/rtsp2webrtc/config.json delete mode 100755 manage.py delete mode 100644 package-lock.json diff --git a/.gitignore b/.gitignore index 726f7c2..6e42dd2 100755 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,8 @@ # ---> Python +.gitignore +backend/evaluate/eval_rag_result/* backend/psk-graphrag -backend/evaluate/eval_rag_dataset/* +backend/evaluate/eval_rag_dataset backend/history/* # Byte-compiled / optimized / DLL files __pycache__/ diff --git a/README.md b/README.md index f62bcc9..44be762 100755 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Multi-Agent Material Science Research Platform +# Multi-Agent & Robotic System (MARS) for Material Science Research This project is a comprehensive platform for material science research, consisting of a backend API server, a frontend web application, and a middleware desktop application. The platform integrates various AI agents for planning, scientific analysis, engineering tasks, and data analysis to assist in material science research. @@ -6,7 +6,7 @@ This project is a comprehensive platform for material science research, consisti The project is divided into three main components: -1. Backend (Python/FastAPI) +1. Backend (Python/FastAPI/Autogen) 2. Frontend (Vue.js) 3. Middleware (C#/WPF) diff --git a/backend/rtsp2webrtc/config.json b/backend/rtsp2webrtc/config.json deleted file mode 100644 index 1784bf1..0000000 --- a/backend/rtsp2webrtc/config.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "server": { - "debug": true, - "log_level": "info", - "http_demo": true, - "http_debug": false, - "http_login": "demo", - "http_password": "demo", - "http_port": ":8083", - "ice_servers": [ - "stun:stun.xten.com:3478" - ], - "rtsp_port": ":5541" - }, - "streams": { - "demo1": { - "name": "test video stream 1", - "channels": { - "0": { - "name": "ch1", - "url": "rtsp://admin:@192.168.1.13:554/live", - "on_demand": true, - "debug": true, - "audio": true, - "status": 0 - }, - "1": { - "name": "ch2", - "url": "rtsp://admin:@192.168.1.10:554/live", - "on_demand": true, - "debug": true, - "audio": true, - "status": 0 - } - } - } - }, - "channel_defaults": { - "on_demand": true - } -} \ No newline at end of file diff --git a/manage.py b/manage.py deleted file mode 100755 index eb6431e..0000000 --- a/manage.py +++ /dev/null @@ -1,22 +0,0 @@ -#!/usr/bin/env python -"""Django's command-line utility for administrative tasks.""" -import os -import sys - - -def main(): - """Run administrative tasks.""" - os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'backend.settings') - try: - from django.core.management import execute_from_command_line - except ImportError as exc: - raise ImportError( - "Couldn't import Django. Are you sure it's installed and " - "available on your PYTHONPATH environment variable? Did you " - "forget to activate a virtual environment?" - ) from exc - execute_from_command_line(sys.argv) - - -if __name__ == '__main__': - main() diff --git a/package-lock.json b/package-lock.json deleted file mode 100644 index d3633a7..0000000 --- a/package-lock.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "name": "matagent", - "lockfileVersion": 3, - "requires": true, - "packages": {} -}