Skip to content

Commit

Permalink
Update default config for tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Strift committed Jan 28, 2025
1 parent f545000 commit ae2ed98
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,10 @@ import { LanguageProvider } from 'context/LanguageContext.ts'
import useLocalStorage from 'hooks/useLocalStorage'
import { createMeilisearchClient } from '../lib/createMeilisearchClient'

const MEILISEARCH_HOST = process.env.NEXT_PUBLIC_MEILISEARCH_HOST
const MEILISEARCH_API_KEY = process.env.NEXT_PUBLIC_MEILISEARCH_API_KEY
const MEILISEARCH_HOST =
process.env.NEXT_PUBLIC_MEILISEARCH_HOST || 'http://0.0.0.0:7700'
const MEILISEARCH_API_KEY =
process.env.NEXT_PUBLIC_MEILISEARCH_API_KEY || 'masterKey'

const DEFAULT_SEMANTIC_RATIO = 0.5
const DEFAULT_EMBEDDER =
Expand Down

0 comments on commit ae2ed98

Please sign in to comment.