Skip to content

Conversation

@haraldschilly
Copy link
Contributor

@haraldschilly haraldschilly commented Dec 18, 2025

  • update all langchain code
  • refactor user defined models to common calls
    • remove package deps we no longer need
  • add gemini 3, grok, update claude, etc.
  • expand tests
  • frontend: improve tokenizer, larger contexts

@haraldschilly haraldschilly added PR-work in progress PR-TODO-cocalc2 merge/migrate this PR into CoCalc2 in the future labels Dec 18, 2025
@haraldschilly haraldschilly force-pushed the llm-upd-20251218 branch 18 times, most recently from e988b93 to 39dde7f Compare December 18, 2025 18:54
@haraldschilly haraldschilly force-pushed the llm-upd-20251218 branch 3 times, most recently from 45edc28 to cacdfe6 Compare December 19, 2025 13:30
@haraldschilly haraldschilly force-pushed the llm-upd-20251218 branch 2 times, most recently from d4a071e to 24034f4 Compare December 19, 2025 16:31
@haraldschilly
Copy link
Contributor Author

@codex review

@haraldschilly
Copy link
Contributor Author

@codex review

Copy link

@chatgpt-codex-connector chatgpt-codex-connector bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💡 Codex Review

const haveOpenAI = useTypedRedux("customize", "openai_enabled");
const haveGoogle = useTypedRedux("customize", "google_vertexai_enabled");
const haveOllama = useTypedRedux("customize", "ollama_enabled");
const haveCustomOpenAI = useTypedRedux("customize", "custom_openai_enabled");
const haveMistral = useTypedRedux("customize", "mistral_enabled");
const haveAnthropic = useTypedRedux("customize", "anthropic_enabled");
const enabledLLMs: LLMServicesAvailable = useMemo(() => {
const projectsStore = redux.getStore("projects");
return projectsStore.whichLLMareEnabled(project_id);
}, [
haveOpenAI,
haveGoogle,
haveOllama,
haveCustomOpenAI,
haveMistral,
haveAnthropic,
]);

P2 Badge xAI enablement never reaches account-level LLM picker

xAI was added as a new provider, but useLanguageModelSetting still only subscribes to the legacy *_enabled flags. Because xai_enabled is not read anywhere in this hook, enabledLLMs is memoized without the xAI flag and will never refresh when administrators turn xAI on. In environments where xAI is enabled (especially if it is the only enabled provider), components that rely on this hook (AI Formula, Jupyter AI helpers, chat, etc.) will continue to treat xAI as unavailable and fall back to some other default model.

ℹ️ About Codex in GitHub

Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you

  • Open a pull request for review
  • Mark a draft as ready
  • Comment "@codex review".

If Codex has suggestions, it will comment; otherwise it will react with 👍.

Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".

@haraldschilly haraldschilly force-pushed the llm-upd-20251218 branch 2 times, most recently from b0ef108 to b59ab38 Compare December 22, 2025 14:59
@sagemathinc sagemathinc deleted a comment from chatgpt-codex-connector bot Dec 22, 2025
@haraldschilly haraldschilly force-pushed the llm-upd-20251218 branch 3 times, most recently from 5f5d25a to 14afd81 Compare December 22, 2025 16:18
@haraldschilly
Copy link
Contributor Author

@codex review

Copy link

@chatgpt-codex-connector chatgpt-codex-connector bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💡 Codex Review

Here are some automated review suggestions for this pull request.

ℹ️ About Codex in GitHub

Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you

  • Open a pull request for review
  • Mark a draft as ready
  • Comment "@codex review".

If Codex has suggestions, it will comment; otherwise it will react with 👍.

Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".

Copy link

@chatgpt-codex-connector chatgpt-codex-connector bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💡 Codex Review

Here are some automated review suggestions for this pull request.

ℹ️ About Codex in GitHub

Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you

  • Open a pull request for review
  • Mark a draft as ready
  • Comment "@codex review".

If Codex has suggestions, it will comment; otherwise it will react with 👍.

Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".

@haraldschilly haraldschilly force-pushed the llm-upd-20251218 branch 5 times, most recently from d1ddc8d to 08b7d47 Compare December 23, 2025 15:16
@haraldschilly
Copy link
Contributor Author

@codex review

Copy link

@chatgpt-codex-connector chatgpt-codex-connector bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💡 Codex Review

Here are some automated review suggestions for this pull request.

ℹ️ About Codex in GitHub

Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you

  • Open a pull request for review
  • Mark a draft as ready
  • Comment "@codex review".

If Codex has suggestions, it will comment; otherwise it will react with 👍.

Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".

@haraldschilly haraldschilly marked this pull request as ready for review December 23, 2025 15:49
@haraldschilly
Copy link
Contributor Author

@codex review

Copy link

@chatgpt-codex-connector chatgpt-codex-connector bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💡 Codex Review

Here are some automated review suggestions for this pull request.

ℹ️ About Codex in GitHub

Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you

  • Open a pull request for review
  • Mark a draft as ready
  • Comment "@codex review".

If Codex has suggestions, it will comment; otherwise it will react with 👍.

Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

PR-TODO-cocalc2 merge/migrate this PR into CoCalc2 in the future PR-work in progress

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants