-
Notifications
You must be signed in to change notification settings - Fork 2
feat: color-palette-generator - agentic image color extraction with K… #34
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
Open
A-VISHAL
wants to merge
21
commits into
dev
Choose a base branch
from
feat/color-palette-generator
base: dev
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
21 commits
Select commit
Hold shift + click to select a range
0e4ace5
feat: improved screenshot accuracy
Arunmadhavan28 754330c
feat: reduced latency|multiple pics|live preview
Arunmadhavan28 7b561b0
feat: conflict fix|accuracy fix
Arunmadhavan28 625a0b6
feat: PR refactoring fix
Arunmadhavan28 8ef216e
feat: context limit 512-> 2048
Arunmadhavan28 e895739
Merge branch 'dev' into screenshot_accuracy
Arunmadhavan28 e6e0d08
feat: docker file overwrite fix
Arunmadhavan28 8f89689
Merge branch 'screenshot_accuracy' of https://github.com/Cyborg-Netwo…
Arunmadhavan28 5bf522e
Remove duplicate mounted declaration
Arunmadhavan28 b7b3d5d
Fix import location in result-viewer
Arunmadhavan28 e1ed002
Refactor: resolve OxBot security, performance, and architecture flags
Arunmadhavan28 3d8960e
style: biome auto-format and import sorting
Arunmadhavan28 209731a
feat: color-palette-generator - agentic image color extraction with K…
A-VISHAL 3b3cdc5
fix: biome lint issues
A-VISHAL 7eebe1b
fix: biome lint errors
A-VISHAL 5a73d11
chore: Biome format and lint fixes; result-viewer XSS fix
A-VISHAL fd83804
major: extension|bi-model|accuracy
Arunmadhavan28 e58a0a4
Merge branch 'screenshot_accuracy' into feat/color-palette-generator
A-VISHAL 4a86db6
Fix usage counter and palette refiner imports
A-VISHAL d699d34
Fix execution timeout and Next config
A-VISHAL 404100d
Revert next-env.d.ts import change; remove extension origin from next…
A-VISHAL File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,48 +1,48 @@ | ||
| { | ||
| "$schema": "https://biomejs.dev/schemas/2.4.6/schema.json", | ||
| "vcs": { | ||
| "enabled": true, | ||
| "clientKind": "git", | ||
| "useIgnoreFile": false | ||
| }, | ||
| "formatter": { | ||
| "enabled": true, | ||
| "indentStyle": "tab", | ||
| "indentWidth": 2, | ||
| "lineWidth": 100 | ||
| }, | ||
| "linter": { | ||
| "enabled": true, | ||
| "rules": { | ||
| "recommended": true, | ||
| "correctness": { | ||
| "useExhaustiveDependencies": "warn", | ||
| "noUnusedImports": "warn", | ||
| "noUnusedVariables": "warn" | ||
| }, | ||
| "style": { | ||
| "noNonNullAssertion": "off" | ||
| }, | ||
| "suspicious": { | ||
| "noExplicitAny": "warn", | ||
| "noArrayIndexKey": "warn" | ||
| }, | ||
| "a11y": { | ||
| "useButtonType": "warn" | ||
| }, | ||
| "performance": { | ||
| "noImgElement": "warn" | ||
| }, | ||
| "security": { | ||
| "noDangerouslySetInnerHtml": "warn" | ||
| } | ||
| } | ||
| }, | ||
| "javascript": { | ||
| "formatter": { | ||
| "quoteStyle": "double", | ||
| "semicolons": "always", | ||
| "trailingCommas": "es5" | ||
| } | ||
| } | ||
| "$schema": "https://biomejs.dev/schemas/2.4.6/schema.json", | ||
| "vcs": { | ||
| "enabled": true, | ||
| "clientKind": "git", | ||
| "useIgnoreFile": false | ||
| }, | ||
| "formatter": { | ||
| "enabled": true, | ||
| "indentStyle": "tab", | ||
| "indentWidth": 2, | ||
| "lineWidth": 100 | ||
| }, | ||
| "linter": { | ||
| "enabled": true, | ||
| "rules": { | ||
| "recommended": true, | ||
| "correctness": { | ||
| "useExhaustiveDependencies": "warn", | ||
| "noUnusedImports": "warn", | ||
| "noUnusedVariables": "warn" | ||
| }, | ||
| "style": { | ||
| "noNonNullAssertion": "off" | ||
| }, | ||
| "suspicious": { | ||
| "noExplicitAny": "warn", | ||
| "noArrayIndexKey": "warn" | ||
| }, | ||
| "a11y": { | ||
| "useButtonType": "warn" | ||
| }, | ||
| "performance": { | ||
| "noImgElement": "warn" | ||
| }, | ||
| "security": { | ||
| "noDangerouslySetInnerHtml": "warn" | ||
| } | ||
| } | ||
| }, | ||
| "javascript": { | ||
| "formatter": { | ||
| "quoteStyle": "double", | ||
| "semicolons": "always", | ||
| "trailingCommas": "es5" | ||
| } | ||
| } | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,18 +1,18 @@ | ||
| import type { NextConfig } from "next"; | ||
|
|
||
| const nextConfig: NextConfig = { | ||
| reactCompiler: true, | ||
| // Proxy tier2 streaming tool requests directly to the Python runner, | ||
| // bypassing the Next.js API route runtime which kills long-lived streams. | ||
| async rewrites() { | ||
| const runnerUrl = process.env.TOOL_RUNNER_URL || "http://localhost:9080"; | ||
| return [ | ||
| { | ||
| source: "/api/tools-stream/:toolId", | ||
| destination: `${runnerUrl}/api/tools/:toolId`, | ||
| }, | ||
| ]; | ||
| }, | ||
| reactCompiler: true, | ||
| // Proxy tier2 streaming tool requests directly to the Python runner, | ||
| // bypassing the Next.js API route runtime which kills long-lived streams. | ||
| async rewrites() { | ||
| const runnerUrl = process.env.TOOL_RUNNER_URL || "http://localhost:9080"; | ||
| return [ | ||
| { | ||
| source: "/api/tools-stream/:toolId", | ||
| destination: `${runnerUrl}/api/tools/:toolId`, | ||
| }, | ||
| ]; | ||
| }, | ||
| }; | ||
|
|
||
| export default nextConfig; |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,36 +1,36 @@ | ||
| { | ||
| "name": "oxtools", | ||
| "version": "1.0.0", | ||
| "private": true, | ||
| "scripts": { | ||
| "dev": "next dev", | ||
| "build": "next build", | ||
| "start": "next start", | ||
| "lint": "biome check", | ||
| "format": "biome format --write" | ||
| }, | ||
| "dependencies": { | ||
| "@ansospace/ui": "^0.0.3", | ||
| "@icons-pack/react-simple-icons": "^13.13.0", | ||
| "idb-keyval": "^6.2.2", | ||
| "lucide-react": "^1.7.0", | ||
| "mermaid": "^11.14.0", | ||
| "next": "16.2.2", | ||
| "openai": "^6.33.0", | ||
| "react": "19.2.4", | ||
| "react-dom": "19.2.4", | ||
| "react-markdown": "^10.1.0", | ||
| "rehype-highlight": "^7.0.2", | ||
| "remark-gfm": "^4.0.1" | ||
| }, | ||
| "devDependencies": { | ||
| "@biomejs/biome": "2.4.6", | ||
| "@tailwindcss/postcss": "^4", | ||
| "@types/node": "^20", | ||
| "@types/react": "^19", | ||
| "@types/react-dom": "^19", | ||
| "babel-plugin-react-compiler": "1.0.0", | ||
| "tailwindcss": "^4", | ||
| "typescript": "^5" | ||
| } | ||
| "name": "oxtools", | ||
| "version": "1.0.0", | ||
| "private": true, | ||
| "scripts": { | ||
| "dev": "next dev", | ||
| "build": "next build", | ||
| "start": "next start", | ||
| "lint": "biome check", | ||
| "format": "biome format --write" | ||
| }, | ||
| "dependencies": { | ||
| "@ansospace/ui": "^0.0.3", | ||
| "@icons-pack/react-simple-icons": "^13.13.0", | ||
| "idb-keyval": "^6.2.2", | ||
| "lucide-react": "^1.7.0", | ||
| "mermaid": "^11.14.0", | ||
| "next": "16.2.2", | ||
| "openai": "^6.33.0", | ||
| "react": "19.2.4", | ||
| "react-dom": "19.2.4", | ||
| "react-markdown": "^10.1.0", | ||
| "rehype-highlight": "^7.0.2", | ||
| "remark-gfm": "^4.0.1" | ||
| }, | ||
| "devDependencies": { | ||
| "@biomejs/biome": "2.4.6", | ||
| "@tailwindcss/postcss": "^4", | ||
| "@types/node": "^20", | ||
| "@types/react": "^19", | ||
| "@types/react-dom": "^19", | ||
| "babel-plugin-react-compiler": "1.0.0", | ||
| "tailwindcss": "^4", | ||
| "typescript": "^5" | ||
| } | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,8 +1,8 @@ | ||
| /** @type {import('postcss-load-config').Config} */ | ||
| const config = { | ||
| plugins: { | ||
| "@tailwindcss/postcss": {}, | ||
| }, | ||
| plugins: { | ||
| "@tailwindcss/postcss": {}, | ||
| }, | ||
| }; | ||
|
|
||
| export default config; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There is still some extension related codes, please remove the extension related codes and files.