plugins/import/manual-import/README.md
A mobile-optimized web application that uses GPT-4o to intelligently extract facts from unstructured text and submit them to the OMI API.
pip install -r requirements.txt
# On Linux/macOS
export OPENAI_API_KEY=your_openai_api_key_here
# On Windows
set OPENAI_API_KEY=your_openai_api_key_here
Alternatively, you can edit the app.py file and replace the placeholder with your API key:
OPENAI_API_KEY = os.environ.get("OPENAI_API_KEY", "your_openai_api_key_here")
Go to settings, copy your App ID and create private key
in app.py file, provide the app ID and private key you've generated
Run the Flask application:
python app.py
http://localhost:5001If you encounter port conflicts:
app.py by modifying the line: app.run(host='0.0.0.0', port=5001, debug=True)If the AI extraction is not working: