Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add claude-3.5-sonnet to ai assistant in code editor #1855

Merged
merged 25 commits into from
Sep 12, 2024
Merged
Show file tree
Hide file tree
Changes from 7 commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
737a511
use refactor from 1850
AyushAgrawal-A2 Sep 7, 2024
fc3a6ea
add claude to ai assistant in code editor
AyushAgrawal-A2 Sep 7, 2024
485cb4e
improve cell context in prompt
AyushAgrawal-A2 Sep 7, 2024
73790fa
fix bottom avatar margin
AyushAgrawal-A2 Sep 7, 2024
ad09412
reassert instructions
AyushAgrawal-A2 Sep 7, 2024
4c50e1a
try strong worded instructions
AyushAgrawal-A2 Sep 7, 2024
5c52e9c
typo
AyushAgrawal-A2 Sep 7, 2024
dd2f56c
shadcn dropdown
AyushAgrawal-A2 Sep 8, 2024
5883d16
fix kebab case bug in svg
AyushAgrawal-A2 Sep 8, 2024
2764070
update ui
AyushAgrawal-A2 Sep 10, 2024
4c13f8e
fix: bug
AyushAgrawal-A2 Sep 10, 2024
5599155
new line shortcut
AyushAgrawal-A2 Sep 10, 2024
e28df05
jim feedback
AyushAgrawal-A2 Sep 10, 2024
8bc2ddb
textarea border radius and height change
AyushAgrawal-A2 Sep 10, 2024
88d1cd4
update text area
AyushAgrawal-A2 Sep 10, 2024
289f906
shift AI Assistant tab
AyushAgrawal-A2 Sep 11, 2024
5ae2c8c
hide shortcuts using container query
AyushAgrawal-A2 Sep 11, 2024
f4c477c
move to shadcn components
jimniels Sep 11, 2024
59d0138
Merge branch 'ayush/claude' of github.com:quadratichq/quadratic into …
jimniels Sep 11, 2024
470fd14
align margins/padding
jimniels Sep 11, 2024
ebfdbf4
remove bottom padding to bring it closer
jimniels Sep 11, 2024
9c01157
fix textarea resize
AyushAgrawal-A2 Sep 11, 2024
aabf131
Merge branch 'qa' of github.com:quadratichq/quadratic into ayush/claude
AyushAgrawal-A2 Sep 11, 2024
514b000
fix lock file
AyushAgrawal-A2 Sep 11, 2024
a9faf6e
Merge branch 'qa' of github.com:quadratichq/quadratic into ayush/claude
AyushAgrawal-A2 Sep 12, 2024
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
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -78,5 +78,8 @@
},
"[typescriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[jsonc]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
}
}
247 changes: 223 additions & 24 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
"dependencies": {
"tsc": "^2.0.4",
"vitest": "^1.5.0",
"zod": "^3.22.4"
"zod": "^3.23.8"
},
"devDependencies": {
"@types/jest": "^29.5.3",
Expand Down
1 change: 1 addition & 0 deletions quadratic-api/.env.example
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ AWS_S3_ACCESS_KEY_ID=test
AWS_S3_SECRET_ACCESS_KEY=test
AWS_S3_BUCKET_NAME=quadratic-api-docker

ANTHROPIC_API_KEY=
OPENAI_API_KEY=

SENTRY_DSN=
Expand Down
Loading
Loading