-
Notifications
You must be signed in to change notification settings - Fork 75
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
fixed realtime #217
fixed realtime #217
Conversation
Readme fixes and global colors
Update landing and welcome email, contrib experience, minor fixes
Improve onboarding, fix eval page placeholder
Explicit mapping in labels + frontend improvements
Labeling queues
parse litellm attributes (#171)
add claude-3-5-haiku to pipeline and prices (#174)
fix evaluations query in labeling queue (#176)
Middleware auth, traces page efficiency
fixed post requests (#185)
improve UI for workspaces + internal fixes
Store label values sent from association properties
Playgrounds v0
* initial work to compare evals * remove unnecessary div * design --------- Co-authored-by: Din <dinmukhamed.mailibay@gmail.com>
disable all clickhouse queries for non-full builds (#213)
update models in pipeline templates to 4o family (#215)
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.
❌ Changes requested. Reviewed everything up to 1dabce6 in 1 minute and 2 seconds
More details
- Looked at
121
lines of code in4
files - Skipped
0
files when reviewing. - Skipped posting
2
drafted comments based on config settings.
1. frontend/app/project/[projectId]/pipelines/[pipelineId]/page.tsx:77
- Draft comment:
TheisSupabaseEnabled
prop is passed to thePipeline
component but is not used. Ensure it is utilized within the component or remove it if unnecessary. - Reason this comment was not posted:
Comment did not seem useful.
2. frontend/components/pipeline/pipeline.tsx:58
- Draft comment:
TheisSupabaseEnabled
prop is passed to thePipeline
component but is not used. Ensure it is utilized within the component or remove it if unnecessary. - Reason this comment was not posted:
Marked as duplicate.
Workflow ID: wflow_I32YQWKjo1lvywsk
Want Ellipsis to fix these issues? Tag @ellipsis-dev
in a comment. You can customize Ellipsis with 👍 / 👎 feedback, review rules, user-specific overrides, quiet
mode, and more.
@@ -132,7 +132,7 @@ export default function Pipeline({ pipeline }: PipelineProps) { | |||
const { supabaseAccessToken, username, imageUrl } = useUserContext(); | |||
|
|||
const supabase = useMemo(() => { |
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.
Add supabaseAccessToken
and isSupabaseEnabled
to the dependency array of the useMemo
hook to ensure it updates correctly when these values change.
Important
Added Supabase feature flag handling and minor UI adjustments in pipeline components.
isSupabaseEnabled
prop toPipeline
component inpage.tsx
andpipeline.tsx
to check if Supabase feature is enabled.isFeatureEnabled(Feature.SUPABASE)
withisSupabaseEnabled
inpipeline.tsx
.model-select.tsx
for setting API keys.PipelineEnv
component inpipeline-header.tsx
.pipeline.tsx
.selectedVersion
variable inpage.tsx
.This description was created by for 1dabce6. It will automatically update as commits are pushed.