Skip to content

Commit

Permalink
Merge branch 'main' into fix/rename-remaining-query-to-query-text-kwargs
Browse files Browse the repository at this point in the history
  • Loading branch information
borisarzentar authored Nov 18, 2024
2 parents 7a2fc61 + 34e140a commit 64bc425
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test_cognee_llama_index_notebook.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:

- name: Install dependencies
run: |
poetry install --no-interaction --all-extras --no-root
poetry install --no-interaction --all-extras
poetry add jupyter --no-interaction
- name: Execute Jupyter Notebook
Expand Down
4 changes: 2 additions & 2 deletions cognee-frontend/src/ui/Partials/SettingsModal/Settings.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ const defaultProvider = {
};

const defaultModel = {
label: 'gpt-4o',
value: 'gpt-4o',
label: 'gpt-4o-mini',
value: 'gpt-4o-mini',
};

export default function Settings({ onDone = () => {}, submitButtonText = 'Save' }) {
Expand Down
2 changes: 1 addition & 1 deletion cognee/infrastructure/llm/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

class LLMConfig(BaseSettings):
llm_provider: str = "openai"
llm_model: str = "gpt-4o"
llm_model: str = "gpt-4o-mini"
llm_endpoint: str = ""
llm_api_key: Optional[str] = None
llm_temperature: float = 0.0
Expand Down
3 changes: 3 additions & 0 deletions cognee/modules/settings/get_settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,9 @@ def get_settings() -> SettingsDict:
"providers": llm_providers,
"models": {
"openai": [{
"value": "gpt-4o-mini",
"label": "gpt-4o-mini",
}, {
"value": "gpt-4o",
"label": "gpt-4o",
}, {
Expand Down

0 comments on commit 64bc425

Please sign in to comment.