Skip to content

Fieldify-AI/fieldify_frontend

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

91 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Front end setup instructions

After cloning the repo, run the following from the repo head:

cd frontend
npm i
npm install vue-router@4
npm run dev

Processing Setup Instructions

1. Environment Setup

Create a Python virtual environment and activate it:

python3.12 -m venv .venv
source .venv/bin/activate

2. Install Dependencies

Install the required Python packages:

pip3 install -r processing/requirements.txt

3. Environment Variables

Create a .env file in the root directory with the following variables:

OPENAI_API_KEY=your_openai_api_key
SUPABASE_URL=your_supabase_url
SUPABASE_KEY=your_supabase_key

4. Create Required Directories

Create the following directory if it doesn't exist:

mkdir -p processing/papers

5. Test Setup

To verify the setup, run:

python3.12 -m processing.agents.extract_info

If everything is set up correctly, you should see output from the test PDF processing.

Notes

  • Place PDF papers to be processed in the processing/papers directory
  • Processed results will be saved in processing/results.md
  • Make sure you have sufficient OpenAI API credits for text processing

About

No description, website, or topics provided.

Resources

Stars

0 stars

Watchers

0 watching

Forks

Releases

No releases published

Packages

 
 
 

Contributors