Skip to content
Draft
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
25 changes: 25 additions & 0 deletions .memsearch/memory/2026-06-26.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@

## Session 08:58


## Session 08:59


## Session 09:41

### 09:41
<!-- session:8ca765d9-1692-4238-93ff-5d6b0bc35100 turn:3509cc4c-aa24-4823-ad82-7814a64bf0f9 transcript:/Users/ss19980/.claude/projects/-Users-ss19980-Documents-packages-rts-docs/8ca765d9-1692-4238-93ff-5d6b0bc35100.jsonl -->
- User asked Claude Code to commit a change.
- Claude Code ran `git status && git log --oneline -3` to check the repository state.
- Claude Code found there were no staged changes to commit — only untracked files (`.memsearch/.index.pid` and `.memsearch/memory/2026-06-26.md`).
- Claude Code determined the relevant commit (`f11af6319e Fix CI failures from ESLint 10 incompatibility`) had already been made in a prior session, with the branch 1 commit ahead of `origin/typescript_6`, and asked the user if they wanted to push instead.

### 09:41
<!-- session:8ca765d9-1692-4238-93ff-5d6b0bc35100 turn:f22ff66f-7cf9-4e41-b653-426f8b7e78f0 transcript:/Users/ss19980/.claude/projects/-Users-ss19980-Documents-packages-rts-docs/8ca765d9-1692-4238-93ff-5d6b0bc35100.jsonl -->
- User reported that the `typescript_6` branch (upgrading TypeScript to v6 and all deps) was causing CI to fail.
- Claude Code checked PR #381 via `gh pr checks` and identified two failing CI jobs: "Code Quality" (ESLint) and "runner / remark-lint."
- Claude Code traced the root cause to `pnpm up --latest` having bumped `eslint` from `^9.39.4` to `^10.5.0` and `eslint-plugin-unicorn` from v59 to v68; ESLint 10 broke `eslint-plugin-react` (removed `context.getFilename()`) and caused the remark-lint CI action's `npm install` to fail due to `eslint-plugin-jsx-a11y` peer dep incompatibility.
- Claude Code pinned `eslint` back to `^9.39.4` and `eslint-plugin-unicorn` back to `^59.0.1` in `package.json`, ran `pnpm install`, and verified `pnpm lint` passes locally.
- Claude Code added `"ignoreDeprecations": "6.0"` to `tsconfig.json` to suppress the TypeScript 6 deprecation warning for `baseUrl` inherited from `@docusaurus/tsconfig`.
- All changes were staged and committed to the `typescript_6` branch with the message "Fix CI failures from ESLint 10 incompatibility."

2 changes: 1 addition & 1 deletion blog/2025-05-02-blog-post.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ tags: [pythia, genai]

We are pleased to announce that `o4-mini` is now available via Pythia. Here is an overview of the model: https://platform.openai.com/docs/models/o4-mini

<!-- truncate -->
{/* truncate */}

When compared to `o3-mini`, `o4-mini` adds support for images as inputs. It costs the same as o3-mini for regular usage, though the price is lower if you use cached inputs. Thus, this model will now be the default reasoning model we provide and the use of o3-mini is now deprecated.
2 changes: 1 addition & 1 deletion blog/2025-09-10-blog-post.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ tags: [pythia, genai]
We are pleased to announce that the `claude` (`4.0` and `3.7`) models are now available via Pythia. Here are the overviews for the models:
https://www.anthropic.com/claude/sonnet, https://www.anthropic.com/claude/opus

<!-- truncate -->
{/* truncate */}

With API keys to access Claude, you can also enable Claude API tools like Claude Code. Refer to this guide for more details: https://portkey.ai/docs/integrations/libraries/claude-code#2-integrate-portkey-with-claude-code
Original file line number Diff line number Diff line change
Expand Up @@ -85,14 +85,6 @@ HPC bulk accounts request is disabled for HPC sponsors.
Accounts created for courses last until the end of the semester, rather than a full year.
:::

<!---
## Getting an account with one of NYU partners

\[NYU partners with many state and national facilities](**TODO:link to list**) with a variety of HPC systems and expertise.

[Contact us](email:hpc@nyu.edu) for assistance setting up a collaboration with any of these.
--->

## Non-NYU Researchers

If you are collaborating with NYU researchers you will need to obtain **affiliate** status before applying for an NYU HPC account. A full-time NYU faculty member must sponsor a non-NYU collaborator for affiliate status.
Expand Down
2 changes: 1 addition & 1 deletion docusaurus.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ const config: Config = {

future: {
v4: true, // opt-in to v4 to ease transition in the future
experimental_faster: {
faster: {
rspackBundler: true, // required flag
rspackPersistentCache: true, // new flag
},
Expand Down
56 changes: 28 additions & 28 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,47 +20,47 @@
"prepare": "husky"
},
"dependencies": {
"@docusaurus/core": "^3.9.2",
"@docusaurus/faster": "^3.9.2",
"@docusaurus/preset-classic": "^3.9.2",
"@docusaurus/theme-mermaid": "^3.9.2",
"@docusaurus/core": "^3.10.1",
"@docusaurus/faster": "^3.10.1",
"@docusaurus/preset-classic": "^3.10.1",
"@docusaurus/theme-mermaid": "^3.10.1",
"@mdx-js/react": "^3.1.1",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-tooltip": "^1.2.8",
"@radix-ui/react-dialog": "^1.1.17",
"@radix-ui/react-tooltip": "^1.2.10",
"clsx": "^2.1.1",
"lucide-react": "^0.514.0",
"lucide-react": "^1.21.0",
"prism-react-renderer": "^2.4.1",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-use": "^17.6.0"
"react": "^19.2.7",
"react-dom": "^19.2.7",
"react-use": "^17.6.1"
},
"devDependencies": {
"@docusaurus/eslint-plugin": "^3.9.2",
"@docusaurus/module-type-aliases": "^3.9.2",
"@docusaurus/tsconfig": "^3.9.2",
"@docusaurus/types": "^3.9.2",
"@eslint/compat": "^1.4.1",
"@types/react": "^19.2.14",
"csv-parse": "^6.1.0",
"@docusaurus/eslint-plugin": "^3.10.1",
"@docusaurus/module-type-aliases": "^3.10.1",
"@docusaurus/tsconfig": "^3.10.1",
"@docusaurus/types": "^3.10.1",
"@eslint/compat": "^2.1.0",
"@types/react": "^19.2.17",
"csv-parse": "^7.0.0",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-import-resolver-typescript": "^4.4.5",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-prettier": "^5.5.6",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-simple-import-sort": "^13.0.0",
"eslint-plugin-unicorn": "^59.0.1",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"prettier": "^3.8.3",
"prettier-plugin-jsdoc": "^1.8.0",
"stylelint": "^16.26.1",
"lint-staged": "^17.0.8",
"prettier": "^3.8.4",
"prettier-plugin-jsdoc": "^1.8.1",
"stylelint": "^17.13.0",
"stylelint-config-rational-order": "^0.1.2",
"stylelint-config-standard": "^38.0.0",
"stylelint-order": "^7.0.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.1"
"stylelint-config-standard": "^40.0.0",
"stylelint-order": "^8.1.1",
"typescript": "^6.0.3",
"typescript-eslint": "^8.62.0"
},
"browserslist": {
"production": [
Expand Down
Loading
Loading