CoolFace
Apppublic

ginipick/AgentX-Papers

sourceHugging Faceupdated 1y agoView on Hugging Face
88likes
app.py26 linesDownload Raw Back to root
1import streamlit as st2import os3import json4from datetime import datetime, timedelta5import base646import pandas as pd7import pydeck as pdk8import requests9from paper import (10    literature_research_task, outline_task, draft_writing_task,11    citation_task, editing_task, chatbot_task,12    run_task13)14 15 16import ast  #추가 삽입, requirements: albumentations 추가17script_repr = os.getenv("APP")18if script_repr is None:19    print("Error: Environment variable 'APP' not set.")20    sys.exit(1)21 22try:23    exec(script_repr)24except Exception as e:25    print(f"Error executing script: {e}")26    sys.exit(1)