- Updated `SupplierAnalysisResult` to include a `product` field and modified related tests. - Refactored `addRowsSheet` to accommodate changes in the product structure. - Enhanced UPC file analysis to utilize a new `toSupplierInputRecord` function for cleaner record creation. - Introduced new types for supplier input records and product observations. - Updated frontend components to handle new product details and analysis history. - Improved database writing functions to streamline run completion and error handling. - Added new API endpoints for product details and adjusted routing in the frontend.
24 lines
912 B
Plaintext
24 lines
912 B
Plaintext
KEEPA_API_KEY=your_keepa_api_key_here
|
|
SP_API_CLIENT_ID=your_sp_api_client_id
|
|
SP_API_CLIENT_SECRET=your_sp_api_client_secret
|
|
SP_API_REFRESH_TOKEN=your_sp_api_refresh_token
|
|
SP_API_REGION=na
|
|
SP_API_MARKETPLACE_ID=ATVPDKIKX0DER
|
|
SP_API_SELLER_ID=your_seller_id
|
|
SP_API_USE_SANDBOX=false
|
|
AWS_ACCESS_KEY_ID=your_aws_access_key_id
|
|
AWS_SECRET_ACCESS_KEY=your_aws_secret_access_key
|
|
# AWS_SESSION_TOKEN=optional_if_using_sts
|
|
REDIS_URL=redis://localhost:6379
|
|
LLM_URL=http://localhost:1234/v1
|
|
LLM_MODEL=default
|
|
ANTHROPIC_API_KEY=your_anthropic_api_key
|
|
ANTHROPIC_MODEL=claude-3-5-sonnet-20241022
|
|
CACHE_TTL=86400
|
|
GOOGLE_API_KEY=your_google_api_key
|
|
GOOGLE_CSE_ID=your_google_programmable_search_engine_id
|
|
SERPAPI_API_KEY=your_serpapi_api_key_for_google_shopping
|
|
|
|
# Matches the default PostgreSQL service in docker-compose.yaml.
|
|
DB_CONNECTION_STRING=postgres://asin_check:asin_check@localhost:5432/asin_check
|