Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,23 @@ SENTRY_PROJECT=promisetracker
NEXT_PUBLIC_DEFAULT_LOCALE=en
NEXT_PUBLIC_LOCALES="en, fr"

# AI Providers (optional fallbacks when not set in admin Settings)
GOOGLE_GENERATIVE_AI_API_KEY=
XAI_API_KEY=
OPENAI_API_KEY=
ANTHROPIC_API_KEY=
MISTRAL_API_KEY=
DEEPSEEK_API_KEY=
CEREBRAS_API_KEY=
GROQ_API_KEY=
TOGETHER_API_KEY=
COHERE_API_KEY=
FIREWORKS_API_KEY=
DEEPINFRA_API_KEY=
PERPLEXITY_API_KEY=
OLLAMA_API_KEY=
OLLAMA_BASE_URL=http://127.0.0.1:11434

# S3
S3_BUCKET=
S3_ACCESS_KEY_ID=
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

1. CheckDesk API Key and Team ID
2. Airtable API Key and Base ID
3. Google Gemini API Key.
3. At least one AI provider credential (Google, OpenAI, Anthropic, Grok, Mistral, DeepSeek, Cerebras, Groq, Together AI, Cohere, Fireworks, DeepInfra, Perplexity, or Ollama).
4. Docker

## Running the App.
Expand Down
19 changes: 16 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,20 @@
"generate:airtable": "airtable-ts-codegen --apiKey $AIRTABLE_API_KEY --baseId $AIRTABLE_BASE_ID --output ./src/airtable.ts"
},
"dependencies": {
"@ai-sdk/google": "^2.0.11",
"@ai-sdk/anthropic": "^3.0.46",
"@ai-sdk/cerebras": "^2.0.34",
"@ai-sdk/cohere": "^3.0.21",
"@ai-sdk/deepinfra": "^2.0.34",
"@ai-sdk/deepseek": "^2.0.20",
"@ai-sdk/fireworks": "^2.0.34",
"@ai-sdk/google": "^3.0.30",
"@ai-sdk/groq": "^3.0.24",
"@ai-sdk/mistral": "^3.0.20",
"@ai-sdk/openai": "^3.0.30",
"@ai-sdk/openai-compatible": "^2.0.30",
"@ai-sdk/perplexity": "^3.0.19",
"@ai-sdk/togetherai": "^2.0.33",
"@ai-sdk/xai": "^3.0.57",
"@ax-llm/ax": "^14.0.16",
"@emotion/cache": "^11.14.0",
"@emotion/react": "^11.14.0",
Expand All @@ -46,7 +59,7 @@
"@payloadcms/ui": "3.77.0",
"@sentry/nextjs": "^10.6.0",
"@svgr/webpack": "^8.1.0",
"ai": "^5.0.52",
"ai": "^6.0.97",
"airtable": "^0.12.2",
"airtable-ts": "^1.6.0",
"airtable-ts-formula": "^1.0.0",
Expand All @@ -64,7 +77,7 @@
"require-in-the-middle": "^7.5.2",
"sharp": "0.34.3",
"tiktoken": "^1.0.22",
"zod": "^4.1.3"
"zod": "^4.3.6"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
Expand Down
Loading